/**
* Template Name: iLanding
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: Nov 12 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Defines the core typography and color palette for the entire site.
--------------------------------------------------------------*/
/* 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: "Nunito", sans-serif;
  --nav-font: "Inter", 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: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d83fd;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: #212529;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0d83fd;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0d83fd;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
# Global resets, base HTML elements, and utility classes used across all pages.
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

/* Global Scrollbar Styling - Applied to all pages */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox scrollbar styling */
html {
  scrollbar-width: auto;
  scrollbar-color: #888 #f1f1f1;
}

body {
  scrollbar-width: auto;
  scrollbar-color: #888 #f1f1f1;
}

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);
}

/* Prevent text cursor (caret) from appearing on click */
button,
.btn,
a,
input[type="button"],
input[type="submit"],
input[type="reset"],
[role="button"],
.clickable {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  caret-color: transparent;
  cursor: pointer;
}

/* Prevent caret from appearing on click but allow text selection */
* {
  caret-color: transparent;
}

/* Allow text selection and caret in input fields and textareas */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
[contenteditable="true"] {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  caret-color: auto;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
# Styles for the top navigation bar, logo, and floating header container.
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.hero-buttons {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-buttons .btn-getstarted {
  color: var(--contrast-color);
  background: #036ffd;
  font-size: 14px;
  padding: 8px 20px;
  /* margin: 0 0 0 30px; */
  border-radius: 50px;
  transition: 0.3s;
}

.hero-buttons .btn-getstarted:hover {
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }



  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
# Desktop and Mobile navigation menu styles including dropdowns and toggles.
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  /* .navmenu .btn-2{
    display: none;
  } */

  .mobile-nav-toggle {
    display: none;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-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: -105%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    order: 2;
  }

  /* .btn-1{
    display: none;
  } */
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
# Footer layout with background image, contact info, social links, and copyright area.
--------------------------------------------------------------*/
.footer {
  position: relative;
  padding-top: 50px;
  padding-bottom: 30px;
  background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: transparent !important;
  --background-color: transparent !important;
}

/* Override light-background class and section class for footer - remove all background colors but keep background image */
.footer.light-background,
.footer.section.light-background,
.footer.section,
#footer.light-background,
#footer.section.light-background,
#footer.section,
footer.light-background,
footer.section.light-background,
footer.section,
footer#footer.light-background,
footer#footer.section.light-background,
footer#footer.section {
  background-color: transparent !important;
  --background-color: transparent !important;
  /* Keep background-image - do not override it */
  background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
}

/* Remove background from footer pseudo-elements - but keep footer background-image */
.footer::before,
.footer::after,
.footer.light-background::before,
.footer.light-background::after,
.footer.section::before,
.footer.section::after,
.footer.section.light-background::before,
.footer.section.light-background::after,
#footer::before,
#footer::after,
#footer.light-background::before,
#footer.light-background::after,
#footer.section::before,
#footer.section::after,
#footer.section.light-background::before,
#footer.section.light-background::after {
  background-color: transparent !important;
  content: none !important;
  display: none !important;
}

.footer .footer-top {
  padding-top: 50px;
  /* border: 2px solid rgb(31, 18, 204); */
  padding: 0;

}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 50px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

.footer .footer-about p strong {
  color: var(--default-color);
  font-weight: 600;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: var(--default-color);
}

.footer .footer-links {
  margin-bottom: 0px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  font-size: 14px;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-contact p strong {
  color: var(--default-color);
  font-weight: 600;
}

.footer .footer-dropdown-content .footer-contact p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

.footer .footer-dropdown-content .footer-contact p strong {
  color: var(--default-color);
  font-weight: 600;
}

.footer .copyright {
  padding: 5px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer .copyright p {
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  display: block;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Footer Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .footer {
    padding-top: 40px;
    background-attachment: fixed !important;
    background-color: transparent !important;
    background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
  }

  .footer .footer-top {
    padding-top: 40px;
  }

  .footer .footer-about {
    margin-bottom: 30px;
  }

  .footer .footer-links {
    margin-bottom: 30px;
  }

  .footer .footer-links h4 {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .footer .footer-links:first-child h4 {
    margin-top: 0;
  }
}

/* Medium screens (md) - 768px to 991.98px - ensure background is fixed */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer {
    background-attachment: fixed !important;
    background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
  }
}

/* Small screens (sm) - 576px to 767.98px - ensure background is fixed */
@media (min-width: 576px) and (max-width: 767.98px) {
  .footer {
    background-attachment: fixed !important;
    background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 15px;
    text-align: center;
    background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-color: transparent !important;
  }

  .footer .footer-top {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .footer .footer-about {
    margin-bottom: 40px;
    text-align: center;
  }

  .footer .footer-about .logo {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer .footer-about .logo img {
    max-height: 45px;
  }

  .footer .footer-about p {
    font-size: 13px;
    line-height: 1.6;
  }

  .footer .footer-contact {
    margin-top: 20px;
  }

  .footer .footer-contact p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer .social-links {
    justify-content: center;
    margin-top: 25px;
  }

  .footer .social-links a {
    width: 38px;
    height: 38px;
    font-size: 15px;
    margin: 0 5px;
  }

  .footer .footer-links {
    margin-bottom: 35px;
    text-align: center;
  }

  .footer .footer-links h4 {
    font-size: 15px;
    margin-bottom: 15px;
    margin-top: 25px;
  }

  .footer .footer-links:first-child h4 {
    margin-top: 0;
  }

  .footer .footer-links ul {
    text-align: center;
  }

  .footer .footer-links ul li {
    justify-content: center;
    padding: 8px 0;
  }

  .footer .footer-links ul a {
    font-size: 13px;
  }

  .footer .copyright {
    padding: 20px 0;
    text-align: center;
  }

  .footer .copyright p {
    font-size: 12px;
    line-height: 1.6;
    padding: 0 15px;
    text-align: center;
    width: 100%;
    display: block;
  }

  .footer .credits {
    font-size: 11px;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding-top: 15px;
    padding-bottom: 10px;
    background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-color: transparent !important;
  }

  .footer .footer-top {
    padding-top: 25px;
    padding-bottom: 15px;
  }

  .footer .footer-about .logo img {
    max-height: 40px;
  }

  .footer .footer-about p {
    font-size: 12px;
    padding: 0 10px;
  }

  .footer .footer-contact p {
    font-size: 12px;
    padding: 0 10px;
  }

  .footer .social-links a {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin: 0 4px;
  }

  .footer .footer-links h4 {
    font-size: 14px;
  }

  .footer .copyright p {
    font-size: 11px;
    padding: 0 10px;
    text-align: center;
    width: 100%;
    display: block;
  }
}

/* Social Links Responsive Display */
/* Hide footer-about social-links on mobile, show copyright social-links */
@media (max-width: 767px) {
  .footer .footer-about .social-links {
    display: none !important;
  }

  .copyright .social-links-mobile {
    display: flex !important;
  }

  .copyright .social-links-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0 8px;
    transition: 0.3s;
    text-decoration: none;
  }

  .copyright .social-links-mobile a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }
}

/* Show footer-about social-links on desktop/tablet, hide copyright social-links */
@media (min-width: 768px) {
  .footer .footer-about .social-links {
    display: flex !important;
  }

  .copyright .social-links-mobile {
    display: none !important;
  }

  /* Decrease bottom padding for desktop/tablet */
  .footer {
    padding-bottom: 20px !important;
    background-color: transparent !important;
    background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
  }
}

/* Copyright Section Centering for All Screen Sizes */
/* Medium screens (md) - 768px and above */
@media (min-width: 768px) {
  .footer .copyright.container {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }

  .footer .copyright p {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer .copyright .social-links-mobile {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Large screens (lg) - 992px and above */
@media (min-width: 992px) {
  .footer {
    background-color: transparent !important;
    background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
  }

  .footer .copyright.container {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }

  .footer .copyright p {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Extra Large screens (xl) - 1200px and above */
@media (min-width: 1200px) {
  .footer {
    background-color: transparent !important;
    background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
  }

  .footer .copyright.container {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }

  .footer .copyright p {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Extra Extra Large screens (xxl) - 1400px and above */
@media (min-width: 1400px) {
  .footer {
    background-color: transparent !important;
    background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
  }

  .footer .copyright.container {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }

  .footer .copyright p {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: -20px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 50px;
  height: 50px;
  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: 20px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.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 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 65px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

/* Override section background for footer - must come after section rule - keep background image */
footer.section,
footer.section.light-background,
.footer.section,
.footer.section.light-background,
#footer.section,
#footer.section.light-background {
  background-color: transparent !important;
  --background-color: transparent !important;
  /* Keep background-image - do not override it */
  background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 1200px) {

  section,
  .section {
    padding: 70px 0;
  }

  /* Ensure footer has no background color but keep background image */
  footer.section,
  footer.section.light-background,
  .footer.section,
  .footer.section.light-background,
  #footer.section,
  #footer.section.light-background {
    background-color: transparent !important;
    --background-color: transparent !important;
    background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
  }
}

@media (max-width: 992px) {

  section,
  .section {
    padding: 60px 0;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Ensure footer has no background color but keep background image */
  footer.section,
  footer.section.light-background,
  .footer.section,
  .footer.section.light-background,
  #footer.section,
  #footer.section.light-background {
    background-color: transparent !important;
    --background-color: transparent !important;
    background-image: url('https://image.dataspantechnologies.com/dataspan/resized_image_1880x694.png') !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
  }
}

@media (max-width: 768px) {

  section,
  .section {
    padding: 50px 0;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 576px) {

  section,
  .section {
    padding: 40px 0;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
# Reusable styles for section headings, descriptions, and underlying accent lines.
--------------------------------------------------------------*/

.section-title {
  text-align: center;
  /* padding-bottom: 60px; */
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 20px;
  position: relative;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .section-title h2 {
    font-size: 32px;
  }

  .section-title p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 1rem;
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 0.95rem;
    padding: 0 10px;
  }
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--default-font);
}

/* Global lead/subtext styling to match hero section subtext */
.lead,
p.lead,
.subtext,
p.subtext {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: color-mix(in srgb, var(--default-color), transparent 20%) !important;
  margin-bottom: 2rem;
  font-weight: 400;
}

#services .section-title p {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/*--------------------------------------------------------------
# Hero Section
# Main landing area styles including background gradients, typing animation, and responsive layout.
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 100px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero .hero-content h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
  font-family: var(--heading-font);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero .hero-title {
  color: #05386e;
  font-family: var(--heading-font);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Why Us Title - Match Hero Title Styles */
.about-section-1-text .hero-title {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #05386e;
  font-family: var(--heading-font);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.about-section-1-text .hero-title:after {
  display: none;
}

@media (max-width: 992px) {
  .about-section-1-text .hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    padding-bottom: 5px;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-section-1-text .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    padding-bottom: 5px;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .about-section-1-text .hero-title {
    font-size: 1.625rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding-bottom: 5px;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: 100%;
  }

  .about-section-1-text .hero-title:after {
    display: none;
  }
}

.hero .hero-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

.hero .hero-content .accent-text {
  color: var(--accent-color);
}

/* Base typing cursor styling for larger screens */
#typing {
  height: 60px;
  font-size: 2.2rem;
  line-height: 1.3;
  vertical-align: middle;
  position: relative;
}

/* Cursor that moves with typing text */
#typing::after {
  content: "|";
  color: #969595;
  animation: blinkCursor 0.6s steps(1) infinite;
  display: inline-block;
  margin-left: 2px;
  font-weight: 300;
}

@keyframes blinkCursor {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: 120px;
  }

  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .hero .hero-content p {
    font-size: 1.05rem;
  }

  /* Responsive lead/subtext styling to match hero section */
  .lead,
  p.lead,
  .subtext,
  p.subtext {
    font-size: 1.05rem !important;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }

  .hero .hero-image img {
    max-width: 90%;
  }

  #typing {
    height: 55px;
    font-size: 2rem;
    line-height: 1.3;
    vertical-align: middle;
  }

  #typing::after {
    margin-left: 2px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .hero .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero .hero-content h1 br {
    display: none;
  }

  .hero .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  /* Responsive lead/subtext styling to match hero section */
  .lead,
  p.lead,
  .subtext,
  p.subtext {
    font-size: 1rem !important;
    margin-bottom: 1.5rem;
  }

  .hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    padding: 0.75rem 2rem;
  }

  .hero .hero-image {
    margin-top: 2rem;
  }

  .hero .hero-image img {
    max-width: 85%;
  }

  #typing {
    height: 48px;
    font-size: 1.75rem;
    display: block;
    margin-top: 0.5rem;
    line-height: 1.3;
  }

  #typing::after {
    margin-left: 2px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 0;
  }

  .hero .container {
    padding: 0 15px;
  }

  .hero .hero-content {
    padding: 0 5px;
  }

  .hero .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
  }

  .hero .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
  }

  .hero .hero-buttons {
    gap: 0.75rem;
  }

  .hero .hero-buttons .btn {
    max-width: 280px;
    padding: 0.65rem 1.75rem;
    font-size: 0.95rem;
  }

  .hero .hero-image {
    padding: 0 10px;
  }

  .hero .hero-image img {
    max-width: 80%;
  }

  #typing {
    height: 42px;
    font-size: 1.5rem;
    display: block;
    margin-top: 0.5rem;
    word-wrap: break-word;
    line-height: 1.3;
  }

  #typing::after {
    margin-left: 1px;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  transition: transform 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
}

.hero .hero-image:hover img {
  transform: translateY(-5px);
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Smooth Hero Section Animations */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroScaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Smooth About Section Animations */
@keyframes aboutFadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutFadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutImageFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Apply animations to Hero Section */
.hero .hero-content {
  animation: heroFadeInUp 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero .hero-title {
  animation: heroFadeInUp 1s ease-out 0.2s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero .hero-content p {
  animation: heroFadeInUp 1s ease-out 0.4s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero .hero-buttons {
  animation: heroFadeInUp 1s ease-out 0.6s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero .hero-image {
  animation: heroFadeInRight 1.2s ease-out 0.3s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero .hero-image img {
  animation: heroScaleIn 1.2s ease-out 0.5s both;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero .hero-image:hover img {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

/* Apply animations to About Section */
.about-section .content-column {
  animation: aboutFadeInLeft 1.2s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.about-section .sec-title {
  animation: aboutFadeInUp 1s ease-out 0.2s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.about-section .text {
  animation: aboutFadeInUp 1s ease-out 0.4s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.about-section .list-style-one {
  animation: aboutFadeInUp 1s ease-out 0.6s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.about-section .list-style-one li {
  animation: aboutFadeInLeft 0.8s ease-out both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.about-section .list-style-one li:nth-child(1) {
  animation-delay: 0.8s;
}

.about-section .list-style-one li:nth-child(2) {
  animation-delay: 1s;
}

.about-section .list-style-one li:nth-child(3) {
  animation-delay: 1.2s;
}

.about-section .btn-box {
  animation: aboutFadeInUp 1s ease-out 1.4s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.about-section .image-column {
  animation: aboutFadeInRight 1.2s ease-out 0.3s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.about-section .image-column .image-1 {
  animation: aboutFadeInRight 1.2s ease-out 0.5s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.about-section .image-column .image-2 {
  animation: aboutFadeInRight 1.2s ease-out 0.7s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Smooth transitions for all elements */
.hero *,
.about-section * {
  will-change: transform, opacity;
}

/* Ensure animations work with reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  .hero .hero-content,
  .hero .hero-title,
  .hero .hero-content p,
  .hero .hero-buttons,
  .hero .hero-image,
  .hero .hero-image img,
  .about-section .content-column,
  .about-section .sec-title,
  .about-section .text,
  .about-section .list-style-one,
  .about-section .list-style-one li,
  .about-section .btn-box,
  .about-section .image-column,
  .about-section .image-column .image-1,
  .about-section .image-column .image-2 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/*--------------------------------------------------------------
# About Section
# Styling for the about section including image columns, feature lists, and experience badges.
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
# Tabbed content layout with navigation links and sliding transitions.
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0 !important;
  border-bottom: none !important;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-tabs .nav-link,
.features .nav-tabs .nav-item .nav-link {
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 10px 20px !important;
  /* padding: 0px 20px; */

}

.features .nav-item {
  margin: 0;
  /* padding: 0 5px 0 0; */
  padding: 5px 10px;
  /* border: 5px solid red; */
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  margin: 0;
  margin-bottom: 0 !important;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}

.features .nav-link:hover,
.features .nav-tabs .nav-link:hover {
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active,
.features .nav-tabs .nav-link.active {
  background-color: var(--accent-color);
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.features .nav-link.active.show,
.features .nav-tabs .nav-link.active.show {
  background-color: var(--accent-color);
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .nav-link.active.show h4 {
  color: var(--contrast-color);
}

.features .nav-link:focus,
.features .nav-link:focus-visible,
.features .nav-link:active,
.features .nav-tabs .nav-link:focus,
.features .nav-tabs .nav-link:focus-visible,
.features .nav-tabs .nav-link:active,
.features .nav-item.show .nav-link,
.features .nav-tabs .nav-item.show .nav-link {
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.features .tab-content {
  margin-top: 50px;
  padding-top: 30px;
}

.features .tab-pane img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .tab-pane:hover img {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.features .tab-pane ul li {
  padding: 12px 0;
  transition: transform 0.2s ease;
}

.features .tab-pane ul li:hover {
  transform: translateX(5px);
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  padding-bottom: 20px;
  position: relative;
  letter-spacing: -0.01em;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Workflow Section
# Strategic process steps layout using a grid system, numbered circles, and responsive vertical flow.
--------------------------------------------------------------*/
.workflow-section {
  position: relative;
  padding-top: 40px !important;
  padding-bottom: 60px !important;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 98%));
}

.workflow-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.workflow-section .container {
  position: relative;
  z-index: 1;
}

h2 .highlight {
  color: #227faa !important;
  /* font-weight: 700; */
}

p.subheading {
  font-size: 0.9rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.4;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  /* max-width: 900px; */
  margin: 0 auto;
  padding: 0 1rem;
  border-top: 1px solid rgba(221, 221, 221, 0.5);
  position: relative;
}

.step {
  max-width: 100%;
  position: relative;
  padding-top: 0.6rem;
  justify-self: stretch;
  box-shadow: none !important;
}

.circle {
  width: 2rem;
  height: 2rem;
  background: #b1ddf173;
  color: #227faa;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.step-title {
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  color: #333;
}

.step-description {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.3;
  max-width: 100%;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1400px) {
  .workflow-section {
    padding: 60px 0;
  }

  .steps-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }

  .step {
    max-width: 100%;
  }

  .step-title {
    font-size: 1rem;
  }

  .step-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 1200px) {
  .workflow-section {
    padding: 60px 0;
  }

  .steps-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
  }

  .step {
    max-width: 100%;
  }

  .step-title {
    font-size: 0.95rem;
  }

  .step-description {
    font-size: 0.75rem;
  }
}

@media (max-width: 992px) {
  .workflow-section {
    padding: 50px 0;
  }

  .steps-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }

  .step-title {
    font-size: 0.9rem;
  }

  .step-description {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .circle {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .workflow-section {
    padding: 50px 0;
  }

  .workflow-section .section-title {
    margin-bottom: 2.5rem;
  }

  .workflow-section .section-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .workflow-section .section-title p {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var(--default-font);
    padding: 0 20px;
  }

  .steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    border-top: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .step {
    max-width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: none !important;
    transition: all 0.3s ease;
    text-align: center;
  }

  .step:hover {
    transform: translateY(-5px);
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.7);
  }

  .circle {
    margin: 0 auto 1rem auto;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #b1ddf1, #227faa);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 127, 170, 0.3);
  }

  .step-title {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--heading-color);
  }

  .step-description {
    font-size: 0.95rem;
    max-width: 100%;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
  }
}

@media (max-width: 576px) {
  .workflow-section {
    padding: 40px 0;
  }

  .workflow-section .section-title {
    margin-bottom: 2rem;
  }

  .workflow-section .section-title h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .workflow-section .section-title p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var(--default-font);
    padding: 0 15px;
  }

  .steps-container {
    gap: 1.5rem;
    padding: 0 10px;
  }

  .step {
    padding: 1.25rem;
    margin-bottom: 0;
  }

  .circle {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .step-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .step-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}



/*--------------------------------------------------------------
# Features Cards Section
# Grid layout for high-level feature boxes with colorful icons and subtle hover shadows.
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}


.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
  /* background-color: #e8f9f2;  */
}

.features-cards .feature-box:hover {
  box-shadow: 3px 3px 15px gray;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
  /* background-color: #e8f9f2;  */
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #ffede2;
  /* background-image: url("assets/img/shopify.png"); */
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.purple {
  background-color: #e2d6f0;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Application Development Section (Features 2)
# Styles for the application development section featuring a phone mockup and feature items.
--------------------------------------------------------------*/
#features-2,
.features-2.section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.features-2 .feature-item {
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 98%)) !important;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.features-2 .feature-item .feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  box-shadow: 0 4px 12px rgba(13, 131, 253, 0.1);
  transition: all 0.3s ease;
}

.features-2 .feature-item:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(13, 131, 253, 0.2);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.features-2 .feature-item:hover .feature-content h3 {
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 20px;
}

.features-2 .phone-mockup:hover img {
  transform: translateY(-10px) scale(1.02);
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.2));
}

@media (max-width: 992px) {
  .features-2 {
    padding: 60px 0;
  }

  .features-2 .section-title {
    margin-bottom: 3rem;
  }

  .features-2 .section-title h2 {
    font-size: 2rem;
  }

  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
    gap: 1rem;
  }

  .features-2 .feature-item.text-end .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
    order: 2;
  }

  .features-2 .feature-item .feature-icon {
    margin-bottom: 1rem;
  }

  .features-2 .feature-item .feature-content h3 {
    font-size: 20px;
    margin-bottom: 0.75rem;
  }

  .features-2 .feature-item .feature-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .features-2 {
    padding: 50px 0;
  }

  .features-2 .container {
    padding: 0 15px;
  }

  .features-2 .section-title {
    margin-bottom: 2.5rem;
    padding: 0 10px;
  }

  .features-2 .section-title h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  .features-2 .section-title p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var(--default-font);
    padding: 0;
  }

  .features-2 .row {
    margin: 0;
  }

  .features-2 .feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center !important;
  }

  .features-2 .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
  }

  .features-2 .feature-item.text-end {
    text-align: center !important;
  }

  .features-2 .feature-item.text-end .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .features-2 .feature-item .feature-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .features-2 .feature-item .feature-icon i {
    font-size: 22px;
  }

  .features-2 .feature-item .feature-content {
    width: 100%;
    text-align: center;
  }

  .features-2 .feature-item .feature-content h3 {
    font-size: 20px;
    margin-bottom: 0.75rem;
  }

  .features-2 .feature-item .feature-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .features-2 .phone-mockup {
    margin: 2rem 0;
    padding: 20px 0;
    order: 2;
  }

  .features-2 .phone-mockup img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
  }
}

@media (max-width: 576px) {
  .features-2 {
    padding: 40px 0;
  }

  .features-2 .container {
    padding: 0 10px;
  }

  .features-2 .section-title {
    margin-bottom: 2rem;
    padding: 0 5px;
  }

  .features-2 .section-title h2 {
    font-size: 1.625rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .features-2 .section-title p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var(--default-font);
    padding: 0;
  }

  .features-2 .row {
    margin: 0;
  }

  .features-2 .feature-item {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center !important;
  }

  .features-2 .feature-item.text-end {
    text-align: center !important;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .features-2 .feature-item .feature-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 0.75rem;
    margin-left: auto;
    margin-right: auto;
  }

  .features-2 .feature-item .feature-icon i {
    font-size: 18px;
  }

  .features-2 .feature-item .feature-content {
    width: 100%;
    text-align: center;
  }

  .features-2 .feature-item .feature-content h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .features-2 .feature-item .feature-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .features-2 .phone-mockup {
    margin: 1.5rem 0;
    padding: 15px 0;
    order: 2;
  }

  .features-2 .phone-mockup img {
    max-width: 220px;
    width: 100%;
    height: auto;
  }
}

/*--------------------------------------------------------------
# Why Choose Us Section
# Interactive card layout with hover effects, custom background images, and overlay content.
--------------------------------------------------------------*/
#why-choose-us,
.why-choose-us.section {
  padding-top: 55px !important;
  padding-bottom: 40px !important;
  /* border: 5px solid red; */
}

.why-choose-us .why-item {
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.why-choose-us .why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(13, 131, 253, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.why-choose-us .why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 20px;
  color: var(--contrast-color);
  font-size: 36px;
  box-shadow: 0 8px 25px rgba(13, 131, 253, 0.25);
  transition: all 0.3s ease;
}

.why-choose-us .why-item:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(13, 131, 253, 0.35);
}

.why-choose-us .why-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.why-choose-us .why-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Why Choose Us - Cards Container Styles */
.why-choose-us {
  position: relative;
  width: 100%;
  overflow-x: visible !important;
  overflow-y: visible !important;
  overflow: visible !important;
  box-sizing: border-box;
  padding: 20px 0px;

}

.why-choose-us.section {
  overflow-x: visible !important;
  overflow-y: visible !important;
  overflow: visible !important;
}

section.why-choose-us,
section#why-choose-us {
  overflow-x: visible !important;
  overflow-y: visible !important;
  overflow: visible !important;
  overflow-clip-margin: 0 !important;
}

.why-choose-us .container {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: visible;
}

.why-choose-us .cards-container,
#why-choose-us .cards-container,
.why-choose-us-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: stretch;
  overflow-x: auto !important;
  overflow-y: hidden;
  padding: 20px 0 !important;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  scroll-padding-right: 0;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  background: none !important;
  /* border: 5px solid red; */
}

/* Add padding to cards wrapper to center them when they fit */
.why-choose-us .cards-container::before,
#why-choose-us .cards-container::before,
.why-choose-us-cards::before {
  content: '';
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc((100% - (280px * 5 + 30px * 4)) / 2);
}

.why-choose-us .cards-container::after,
#why-choose-us .cards-container::after,
.why-choose-us-cards::after {
  content: '';
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc((100% - (280px * 5 + 30px * 4)) / 2);
}

/* When cards overflow, remove pseudo-elements for scrolling */
@media (max-width: 1600px) {

  .why-choose-us .cards-container::before,
  #why-choose-us .cards-container::before,
  .why-choose-us-cards::before,
  .why-choose-us .cards-container::after,
  #why-choose-us .cards-container::after,
  .why-choose-us-cards::after {
    display: none;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container,
  .why-choose-us-cards {
    padding: 20px 40px !important;
    justify-content: flex-start;
    scroll-padding-left: 40px;
    scroll-padding-right: 40px;
    background: none !important;
  }
}

.why-choose-us .cards-container::-webkit-scrollbar,
#why-choose-us .cards-container::-webkit-scrollbar,
.why-choose-us-cards::-webkit-scrollbar {
  height: 8px;
}

.why-choose-us .cards-container::-webkit-scrollbar-track,
#why-choose-us .cards-container::-webkit-scrollbar-track,
.why-choose-us-cards::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.why-choose-us .cards-container::-webkit-scrollbar-thumb,
#why-choose-us .cards-container::-webkit-scrollbar-thumb,
.why-choose-us-cards::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.why-choose-us .cards-container::-webkit-scrollbar-thumb:hover,
#why-choose-us .cards-container::-webkit-scrollbar-thumb:hover,
.why-choose-us-cards::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.why-choose-us .card,
#why-choose-us .card,
.why-choose-us-cards .card {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none !important;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  scroll-snap-align: start;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 280px;
}

/* Ensure first card has proper spacing and is never cropped */
.why-choose-us .cards-container .card:first-child,
#why-choose-us .cards-container .card:first-child,
.why-choose-us-cards .card:first-child {
  margin-left: 0;
  scroll-margin-left: 40px;
}

.why-choose-us .card:hover,
#why-choose-us .card:hover,
.why-choose-us-cards .card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: none !important;
}

/* Custom background images for each card */
.why-choose-us .cards-container .card:nth-child(1),
#why-choose-us .cards-container .card:nth-child(1),
.why-choose-us-cards .card:nth-child(1) {
  background-image: url('https://image.dataspantechnologies.com/dataspan/1%20inovation.png');
}

.why-choose-us .cards-container .card:nth-child(2),
#why-choose-us .cards-container .card:nth-child(2),
.why-choose-us-cards .card:nth-child(2) {
  background-image: url('https://image.dataspantechnologies.com/dataspan/2.%20multiplatform.png');
}

.why-choose-us .cards-container .card:nth-child(3),
#why-choose-us .cards-container .card:nth-child(3),
.why-choose-us-cards .card:nth-child(3) {
  background-image: url('https://image.dataspantechnologies.com/dataspan/3%20Performance-Driven%20Results.jpg');
}

.why-choose-us .cards-container .card:nth-child(4),
#why-choose-us .cards-container .card:nth-child(4),
.why-choose-us-cards .card:nth-child(4) {
  background-image: url('https://image.dataspantechnologies.com/dataspan/4.%20trust%20and%20secure.png');
}

.why-choose-us .cards-container .card:nth-child(5),
#why-choose-us .cards-container .card:nth-child(5),
.why-choose-us-cards .card:nth-child(5) {
  background-image: url('https://image.dataspantechnologies.com/dataspan/partnership.jpeg');
}

/* Cloud Services specific background images */
.cloud-services .why-choose-us .cards-container .card:nth-child(1),
.cloud-services #why-choose-us .cards-container .card:nth-child(1),
.cloud-services .why-choose-us-cards .card:nth-child(1) {
  background-image: url('https://image.dataspantechnologies.com/dataspan/Design & Prototype.png');
}

.cloud-services .why-choose-us .cards-container .card:nth-child(2),
.cloud-services #why-choose-us .cards-container .card:nth-child(2),
.cloud-services .why-choose-us-cards .card:nth-child(2) {
  background-image: url('https://image.dataspantechnologies.com/dataspan/Discovery & Research.png');
}

.cloud-services .why-choose-us .cards-container .card:nth-child(3),
.cloud-services #why-choose-us .cards-container .card:nth-child(3),
.cloud-services .why-choose-us-cards .card:nth-child(3) {
  background-image: url('https://image.dataspantechnologies.com/dataspan/Structure & Flow.png');
}

.cloud-services .why-choose-us .cards-container .card:nth-child(4),
.cloud-services #why-choose-us .cards-container .card:nth-child(4),
.cloud-services .why-choose-us-cards .card:nth-child(4) {
  background-image: url('https://image.dataspantechnologies.com/dataspan/Validate & Scale.png');
}

.why-choose-us .card-overlay,
#why-choose-us .card-overlay,
.why-choose-us-cards .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: white;
  will-change: transform;
}

.why-choose-us .card:hover .card-overlay,
#why-choose-us .card:hover .card-overlay,
.why-choose-us-cards .card:hover .card-overlay {
  transform: translateY(0);
}

.why-choose-us .card-content,
#why-choose-us .card-content,
.why-choose-us-cards .card-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  will-change: opacity, transform;
}

.why-choose-us .card:hover .card-content,
#why-choose-us .card:hover .card-content,
.why-choose-us-cards .card:hover .card-content {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-us .card-title,
#why-choose-us .card-title,
.why-choose-us-cards .card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
  color: white;
}

.why-choose-us .card-description,
#why-choose-us .card-description,
.why-choose-us-cards .card-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  color: white;
}

.why-choose-us .card-arrow,
#why-choose-us .card-arrow,
.why-choose-us-cards .card-arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: none !important;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  will-change: transform;
}

.why-choose-us .card-arrow svg,
#why-choose-us .card-arrow svg,
.why-choose-us-cards .card-arrow svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-choose-us .card:hover .card-arrow,
#why-choose-us .card:hover .card-arrow,
.why-choose-us-cards .card:hover .card-arrow {
  transform: translate(15px, -15px);
}

.why-choose-us .card:hover .card-arrow svg,
#why-choose-us .card:hover .card-arrow svg,
.why-choose-us-cards .card:hover .card-arrow svg {
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
# Clients Section
# Logo marquee and grid for partners and clients with grayscale-to-color transitions.
--------------------------------------------------------------*/
#clients,
.clients,
.clients.section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.clients {
  position: relative;
  border: px solid red;
}

.clients.section.light-background {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%)) !important;
}

.clients.section::before {
  display: none;
}

.clients.section .container {
  position: relative;
  z-index: 1;
}

.clients .client-logo {
  padding: 30px 20px;
  background: var(--surface-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  filter: grayscale(100%);
  opacity: 0.6;
}

.clients .client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  filter: grayscale(0%);
  opacity: 1;
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.clients .client-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-marquee-container .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 20px;
}

.logo-marquee-container .logo-item .logo-img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/*--------------------------------------------------------------
# Clients Section Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .clients.section {
    padding: 45px 0;
  }

  .clients .section-title {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .clients.section {
    padding: 35px 0;
  }

  .clients .section-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .clients .section-title p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var(--default-font);
    padding: 0 20px;
  }

  .logo-marquee-container {
    padding: 40px 0;
  }

  .marquee-wrapper {
    margin-bottom: 30px;
  }

  .logo-item {
    padding: 0 15px;
    height: 80px;
    width: 200px;
    min-height: 80px;
    min-width: 200px;
    max-height: 80px;
    max-width: 200px;
  }

  .logo-img {
    height: 80px;
    width: 160px;
    min-height: 80px;
    min-width: 160px;
    max-height: 80px;
    max-width: 160px;
  }

  .marquee-content {
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .clients.section {
    padding: 30px 0;
  }

  .clients .section-title h2 {
    font-size: 1.75rem;
  }

  .clients .section-title p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var(--default-font);
    padding: 0 15px;
  }

  .logo-marquee-container {
    padding: 30px 0;
  }

  .marquee-wrapper {
    margin-bottom: 25px;
  }

  .logo-item {
    padding: 0 12px;
    height: 80px;
    width: 200px;
    min-height: 80px;
    min-width: 200px;
    max-height: 80px;
    max-width: 200px;
  }

  .logo-img {
    height: 80px;
    width: 160px;
    min-height: 80px;
    min-width: 160px;
    max-height: 80px;
    max-width: 160px;
  }

  .marquee-content {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .logo-marquee-container .logo-item {
    height: 70px;
  }

  .logo-marquee-container .logo-item .logo-img {
    height: 100%;
  }
}

@media (max-width: 576px) {
  .logo-marquee-container .logo-item {
    height: 60px;
  }

  .logo-marquee-container .logo-item .logo-img {
    height: 100%;
  }
}

/*--------------------------------------------------------------
# Call To Action (CTA) Section
# High-impact section with animated background shapes and vibrant color gradients.
--------------------------------------------------------------*/

.call-to-action .container {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 5rem 2rem;
  box-shadow: 0 20px 60px rgba(13, 131, 253, 0.3);
}

.call-to-action .container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.call-to-action h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.call-to-action p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 50px 0;
  }

  .call-to-action h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .call-to-action .container {
    padding: 3rem 2rem;
    border-radius: 1.25rem;
  }

  .call-to-action p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .call-to-action .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .call-to-action .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 35px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .call-to-action .cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 576px) {
  .call-to-action {
    padding: 40px 0;
  }

  .call-to-action h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .call-to-action .container {
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
  }

  .call-to-action p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .call-to-action .cta-buttons {
    gap: 0.75rem;
  }

  .call-to-action .cta-buttons .btn {
    padding: 12px 30px;
    font-size: 14px;
    max-width: 280px;
  }
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.call-to-action .cta-buttons {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.call-to-action .cta-buttons .btn {
  padding: 14px 35px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.call-to-action .cta-buttons .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: 2px solid var(--contrast-color);
}

.call-to-action .cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.call-to-action .cta-buttons .btn-outline-primary {
  background-color: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.call-to-action .cta-buttons .btn-outline-primary:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/*--------------------------------------------------------------
# About Us Page Sections
--------------------------------------------------------------*/

/* About Hero Section */
.about-hero {
  padding-top: 140px;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--heading-color);
}

.about-hero .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  font-weight: 400;
}

.about-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-hero-image img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .about-hero {
    padding-top: 120px;
  }

  .about-hero h1 {
    font-size: 2.25rem;
  }
}

/* Mission & Vision Section */
.mission-card {
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(13, 131, 253, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.mission-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 20px;
  color: var(--contrast-color);
  font-size: 36px;
  box-shadow: 0 8px 25px rgba(13, 131, 253, 0.25);
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(13, 131, 253, 0.35);
}

.mission-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.mission-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/* What We Do Section */
.what-we-do-image img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-we-do-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  margin-bottom: 2rem;
  padding: 0;
}

.feature-item-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.feature-item-box:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(13, 131, 253, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 12px;
  color: var(--contrast-color);
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(13, 131, 253, 0.25);
  transition: all 0.3s ease;
}

.feature-item-box:hover .feature-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(13, 131, 253, 0.35);
}

.feature-content-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.feature-content-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/* Values Section */
.value-item-card {
  padding: 2.5rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-item-card:hover::before {
  transform: scaleX(1);
}

.value-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(13, 131, 253, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 20px;
  color: var(--contrast-color);
  font-size: 36px;
  box-shadow: 0 8px 25px rgba(13, 131, 253, 0.25);
  transition: all 0.3s ease;
}

.value-item-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(13, 131, 253, 0.35);
}

.value-item-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.value-item-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/* Our People Section */
.people-card-item {
  padding: 2.5rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.people-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.people-card-item:hover::before {
  transform: scaleX(1);
}

.people-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(13, 131, 253, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.people-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 20px;
  color: var(--contrast-color);
  font-size: 36px;
  box-shadow: 0 8px 25px rgba(13, 131, 253, 0.25);
  transition: all 0.3s ease;
}

.people-card-item:hover .people-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(13, 131, 253, 0.35);
}

.people-card-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.people-card-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Stats Section
# Counters and statistical items with animated number displays and icon backgrounds.
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
}

.stats .stats-item {
  padding: 40px 20px;
  transition: transform 0.3s ease;
}

.stats .stats-item:hover {
  transform: translateY(-5px);
}

.stats .stats-item span {
  font-size: 52px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------------------------------
# Services Section
# Grid layout for service cards, iconography, and multi-column responsive behavior.
--------------------------------------------------------------*/
#services,
.services.section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.services.section {
  position: relative;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 98%)) !important;
  overflow: hidden;
}

.services.section.light-background {
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 98%)) !important;
}

.services.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.services.section .container {
  position: relative;
  z-index: 1;
}

#services .box,
#services .box.cards,
#services .cards {
  max-width: 95%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {

  #services .box,
  #services .box.cards,
  #services .cards {
    max-width: 1400px;
  }
}

@media (min-width: 1400px) {

  #services .box,
  #services .box.cards,
  #services .cards {
    max-width: 1600px;
  }
}

#services .row {
  --bs-gutter-x: 0.75rem;
  --bs-gutter-y: 0.75rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (min-width: 768px) {
  #services .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}

@media (min-width: 992px) {
  #services .row {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
  }
}

/* Small screens (sm) - 576px to 767.98px */
@media (min-width: 576px) and (max-width: 767.98px) {

  #services.section,
  .services.section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  #services .container,
  .services .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
  }

  #services .section-title {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 2rem !important;
  }

  #services .section-title h2 {
    font-size: 28px !important;
  }

  #services .section-title p {
    font-size: 15px !important;
    padding-bottom: 15px !important;
  }

  #services .row,
  #services .row.g-4 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
  }

  #services .row>[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
  }

  .services .service-card {
    padding: 20px !important;
    margin-bottom: 0 !important;
    height: 100% !important;
    border-radius: 12px !important;
  }

  .services .service-card .d-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
  }

  .services .service-card .icon {
    width: 70px !important;
    height: 70px !important;
    font-size: 32px !important;
    margin: 0 !important;
    margin-bottom: 0.75rem !important;
    flex-shrink: 0 !important;
  }

  .services .service-card h3 {
    font-size: 18px !important;
    margin-bottom: 0.75rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  .services .service-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
  }

  .services .service-card .service-content {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .services .service-card .read-more {
    text-align: center !important;
    margin-top: auto !important;
  }
}

/* Medium screens (md) - 768px to 991.98px */
@media (min-width: 768px) and (max-width: 991.98px) {

  #services.section,
  .services.section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  #services .container,
  .services .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
  }

  #services .section-title {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 2.5rem !important;
  }

  #services .section-title h2 {
    font-size: 32px !important;
  }

  #services .section-title p {
    font-size: 16px !important;
    padding-bottom: 20px !important;
  }

  #services .row,
  #services .row.g-4 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.25rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
  }

  #services .row>[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
  }

  .services .service-card {
    padding: 24px !important;
    margin-bottom: 0 !important;
    height: 100% !important;
    border-radius: 12px !important;
  }

  .services .service-card .d-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.25rem !important;
  }

  .services .service-card .icon {
    width: 80px !important;
    height: 80px !important;
    font-size: 40px !important;
    margin: 0 !important;
    margin-bottom: 1rem !important;
    flex-shrink: 0 !important;
  }

  .services .service-card h3 {
    font-size: 20px !important;
    margin-bottom: 0.75rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  .services .service-card p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
  }

  .services .service-card .service-content {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .services .service-card .read-more {
    text-align: center !important;
    margin-top: auto !important;
  }
}

@media (max-width: 575.98px) {

  /* Stack cards in a single column on XS screens */
  #services .row {
    grid-template-columns: 1fr;
  }
}

#services .cards {
  position: relative;
  z-index: 1;
}

#services .cards .row {
  align-items: stretch;
}

.services .service-card {
  height: 100%;
  padding: 24px;
  background: var(--surface-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .services .service-card {
    padding: 28px;
  }
}

@media (min-width: 992px) {
  .services .service-card {
    padding: 32px;
  }
}

.services .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.services .service-card:hover::before {
  transform: scaleX(1);
}

.services .service-card:hover {
  box-shadow: 0 10px 30px rgba(13, 131, 253, 0.15);
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}


.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card:hover h3 {
  color: var(--accent-color);
}

.services .service-card .icon {
  width: 80px;
  height: 80px;
  margin-right: 0;
  margin-bottom: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: var(--default-color);
  font-size: 48px;
  transition: all 0.3s ease;
  line-height: 1;
  box-shadow: none;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .services .service-card .icon {
    width: 110px;
    height: 110px;
    font-size: 60px;
  }
}

/* Icon Animations - Animated SVG Icons */

/* Base styles for animated service icons */
.services .service-card .icon svg.service-icon-svg {
  width: 100%;
  height: 100%;
  color: var(--default-color);
}

/* Base styles for image service icons */
.services .service-card .icon img.service-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* IconScout Lottie Animation Styles */
.services .service-card .icon lottie-player {
  width: 100% !important;
  height: 100% !important;
  max-width: 120px;
  max-height: 120px;
}

.services .service-card .icon lottie-player svg {
  width: 100% !important;
  height: 100% !important;
}

/* Ensure Lottie animations are visible and properly styled */
.services .service-card .icon lottie-player {
  --lottie-player-toolbar-height: 0px;
  --lottie-player-toolbar-background-color: transparent;
}

/* Web Development - Code brackets with flowing code lines */
.services .service-card .icon-webdev {
  position: relative;
  overflow: visible;
}

.services .service-card .icon-webdev .code-bracket-left {
  animation: bracketPulse 2s ease-in-out infinite;
  transform-origin: 12px 32px;
}

.services .service-card .icon-webdev .code-bracket-right {
  animation: bracketPulse 2s ease-in-out infinite;
  animation-delay: 0.3s;
  transform-origin: 52px 32px;
}

.services .service-card .icon-webdev .code-line-1 {
  animation: codeFlow 2.5s ease-in-out infinite;
  stroke-dasharray: 16;
  stroke-dashoffset: 0;
}

.services .service-card .icon-webdev .code-line-2 {
  animation: codeFlow 2.5s ease-in-out infinite;
  animation-delay: 0.5s;
  stroke-dasharray: 20;
  stroke-dashoffset: 0;
}

.services .service-card .icon-webdev .code-line-3 {
  animation: codeFlow 2.5s ease-in-out infinite;
  animation-delay: 1s;
  stroke-dasharray: 12;
  stroke-dashoffset: 0;
}

@keyframes bracketPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes codeFlow {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.3;
  }

  50% {
    stroke-dashoffset: -20;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -40;
    opacity: 0.3;
  }
}

/* OCR - Document scanning with moving scan line */
.services .service-card .icon-ocr {
  position: relative;
  overflow: visible;
}

.services .service-card .icon-ocr .scan-line {
  animation: scanLineMove 2.5s linear infinite;
  stroke: var(--default-color);
}

@keyframes scanLineMove {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(28px);
    opacity: 0;
  }
}

/* Hide background circles on card hover */
.services .service-card:hover .icon-ai::before,
.services .service-card:hover .icon-ai::after {
  display: none;
}

/* POS - Terminal with multiple animations */
.services .service-card .icon-pos {
  position: relative;
}

.services .service-card .icon-pos .pos-indicator {
  animation: posPulse 2s ease-in-out infinite;
  transform-origin: 46px 22px;
}

.services .service-card .icon-pos .screen-line-1 {
  animation: screenLineScan 2.5s ease-in-out infinite;
  stroke-dasharray: 24;
  stroke-dashoffset: 0;
}

.services .service-card .icon-pos .screen-line-2 {
  animation: screenLineScan 2.5s ease-in-out infinite;
  animation-delay: 0.3s;
  stroke-dasharray: 22;
  stroke-dashoffset: 0;
}

.services .service-card .icon-pos .screen-line-3 {
  animation: screenLineScan 2.5s ease-in-out infinite;
  animation-delay: 0.6s;
  stroke-dasharray: 18;
  stroke-dashoffset: 0;
}

@keyframes posPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes screenLineScan {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.5;
  }

  50% {
    stroke-dashoffset: -20;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -40;
    opacity: 0.5;
  }
}

/* E-Commerce - Enhanced Shopping Cart with Modern Animations */
.services .service-card .icon-ecommerce,
.services .service-card .icon-ecommerce-title {
  position: relative;
}

/* E-Commerce Shopping Bag Icon Animations */
.services .service-card .icon-ecommerce .cart-indicator {
  animation: cartIndicatorPulse 2s ease-in-out infinite;
  transform-origin: 50px 18px;
}

.services .service-card .icon-ecommerce .product-item {
  animation: productItemFade 3s ease-in-out infinite;
}

.services .service-card .icon-ecommerce .product-item:nth-child(1) {
  animation-delay: 0s;
}

.services .service-card .icon-ecommerce .product-item:nth-child(2) {
  animation-delay: 0.3s;
}

.services .service-card .icon-ecommerce .product-item:nth-child(3) {
  animation-delay: 0.6s;
}

.services .service-card .icon-ecommerce .product-item:nth-child(4) {
  animation-delay: 0.9s;
}


@keyframes cartIndicatorPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes cartIndicatorPulseHover {

  0%,
  100% {
    transform: scale(1.2) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.3) rotate(5deg);
    opacity: 0.95;
  }
}

@keyframes productItemFade {

  0%,
  100% {
    opacity: 0.6;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

/* Cart Body Animation */
.services .service-card .icon-ecommerce .cart-body {
  animation: cartBodyPulse 2s ease-in-out infinite;
  transform-origin: 32px 34px;
}

/* Cart Handle Animation */
.services .service-card .icon-ecommerce .cart-handle {
  animation: cartHandlePulse 2.5s ease-in-out infinite;
}

/* Enhanced Wheel Animations */
.services .service-card .icon-ecommerce .cart-wheel-1 {
  animation: wheelRotate 3s linear infinite;
  transform-origin: 24px 52px;
}

.services .service-card .icon-ecommerce .cart-wheel-2 {
  animation: wheelRotate 3s linear infinite;
  animation-delay: 0.15s;
  transform-origin: 40px 52px;
}

.services .service-card .icon-ecommerce .wheel-center-1 {
  animation: wheelCenterPulse 1.5s ease-in-out infinite;
  transform-origin: 24px 52px;
}

.services .service-card .icon-ecommerce .product-1 {
  animation: productFloat 2.5s ease-in-out infinite;
  transform-origin: 22.5px 28.5px;
}

.services .service-card .icon-ecommerce .product-1-label {
  animation: productLabelPulse 2.5s ease-in-out infinite;
}

.services .service-card .icon-ecommerce .product-2 {
  animation: productFloat 2.5s ease-in-out infinite;
  animation-delay: 0.4s;
  transform-origin: 33.5px 29.5px;
}

.services .service-card .icon-ecommerce .product-3 {
  animation: productFloat 2.5s ease-in-out infinite;
  animation-delay: 0.8s;
  transform-origin: 40px 23px;
}

.services .service-card .icon-ecommerce .product-3-center {
  animation: productCenterPulse 1.8s ease-in-out infinite;
  animation-delay: 0.8s;
}

/* Shopping Bag Animation */
.services .service-card .icon-ecommerce .shopping-bag {
  animation: bagSway 3s ease-in-out infinite;
  transform-origin: 52px 22px;
}

.services .service-card .icon-ecommerce .bag-body {
  animation: bagBodyPulse 2.5s ease-in-out infinite;
}

.services .service-card .icon-ecommerce .bag-handle {
  animation: bagHandleMove 3s ease-in-out infinite;
}

/* Transaction Arrows */
.services .service-card .icon-ecommerce .arrow-up {
  animation: arrowUpDown 2s ease-in-out infinite;
}

.services .service-card .icon-ecommerce .arrow-down {
  animation: arrowDownUp 2s ease-in-out infinite;
  animation-delay: 1s;
}

/* Currency Indicator */
.services .service-card .icon-ecommerce .currency-circle {
  animation: currencyFloat 3s ease-in-out infinite;
  transform-origin: 30px 16px;
}

.services .service-card .icon-ecommerce .currency-text {
  animation: currencyTextPulse 2s ease-in-out infinite;
}

/* E-Commerce Pulse Rings */
.services .service-card .icon-ecommerce .ecommerce-pulse-1 {
  animation: ecommercePulseRing 2.5s ease-out infinite;
  transform-origin: 50px 32px;
}

.services .service-card .icon-ecommerce .ecommerce-pulse-2 {
  animation: ecommercePulseRing 2.5s ease-out infinite;
  animation-delay: 1.25s;
  transform-origin: 50px 32px;
}

/* Signal Wave Animations (WiFi/Online) */
.services .service-card .icon-ecommerce .signal-wave-1 {
  animation: signalWave 2s ease-in-out infinite;
}

.services .service-card .icon-ecommerce .signal-wave-2 {
  animation: signalWave 2s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* Payment Circle Animation */
.services .service-card .icon-ecommerce .payment-circle {
  animation: paymentPulse 2s ease-in-out infinite;
  transform-origin: 16px 16px;
}

/* Shopping Tag Animation */
.services .service-card .icon-ecommerce .tag-icon {
  animation: tagRotate 4s ease-in-out infinite;
  transform-origin: 46px 32px;
}

.services .service-card .icon-ecommerce .tag-circle {
  animation: tagPulse 2s ease-in-out infinite;
  transform-origin: 46px 28px;
}

/* Data Flow Particles */
.services .service-card .icon-ecommerce .data-flow-1 {
  animation: dataFlow1 3s ease-in-out infinite;
  transform-origin: 32px 32px;
}

.services .service-card .icon-ecommerce .data-flow-2 {
  animation: dataFlow2 3s ease-in-out infinite;
  animation-delay: 0.5s;
  transform-origin: 32px 32px;
}

.services .service-card .icon-ecommerce .data-flow-3 {
  animation: dataFlow3 3s ease-in-out infinite;
  animation-delay: 1s;
  transform-origin: 32px 32px;
}

/* Keyframe Animations */
@keyframes cartBodyPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

@keyframes wheelRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes wheelRotateReverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes wheelCenterPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

@keyframes productFloat {

  0%,
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: translateY(-5px) scale(1.08) rotate(2deg);
    opacity: 0.95;
  }
}

@keyframes productLabelPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.9;
  }
}

@keyframes productCenterPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}

@keyframes bagSway {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  25% {
    transform: translateX(1px) rotate(2deg);
  }

  75% {
    transform: translateX(-1px) rotate(-2deg);
  }
}

@keyframes bagHandleMove {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-1px);
    opacity: 0.8;
  }
}

@keyframes cartHandlePulse {

  0%,
  100% {
    opacity: 1;
    stroke-width: 2.5;
  }

  50% {
    opacity: 0.8;
    stroke-width: 2.2;
  }
}

@keyframes bagBodyPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes arrowUpDown {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

@keyframes arrowDownUp {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(2px);
    opacity: 1;
  }
}

@keyframes currencyFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateY(-3px) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes currencyTextPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes ecommercePulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes signalWave {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes paymentPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

@keyframes tagRotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  75% {
    transform: rotate(5deg);
  }
}

@keyframes tagPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
}

@keyframes dataFlow1 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translate(-10px, -8px);
    opacity: 0.8;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translate(-20px, -16px);
    opacity: 0;
  }
}

@keyframes dataFlow2 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translate(10px, -8px);
    opacity: 0.8;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translate(20px, -16px);
    opacity: 0;
  }
}

@keyframes dataFlow3 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translate(0, -10px);
    opacity: 0.8;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translate(0, -20px);
    opacity: 0;
  }
}

/* UI/UX - Monitor with paintbrush painting animation */
.services .service-card .icon-uiux {
  position: relative;
  overflow: visible;
}

.services .service-card .icon-uiux .paintbrush {
  transform-origin: 52px 36px;
  animation: brushPainting 3s ease-in-out infinite;
}

@keyframes brushPainting {

  0%,
  100% {
    transform: translate(0, 0) rotate(-25deg);
    opacity: 1;
  }

  25% {
    transform: translate(-2px, 3px) rotate(-27deg);
    opacity: 1;
  }

  50% {
    transform: translate(-4px, 6px) rotate(-26deg);
    opacity: 1;
  }

  75% {
    transform: translate(-2px, 4px) rotate(-25.5deg);
    opacity: 1;
  }
}

/* Design & Branding - Palette and Brush Icon */
.services .service-card .icon-design-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  gap: 8px;
  margin-top: -10px;
}

.services .service-card .icon-design-branding i.bi-palette {
  display: inline-block;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(13, 131, 253, 0.4));
  color: var(--default-color);
  transition: all 0.3s ease;
  z-index: 1;
  font-size: 0.9em;
}

.services .service-card:hover .icon-design-branding i.bi-palette {
  filter: drop-shadow(0 0 12px rgba(13, 131, 253, 0.6));
}

/* Brush positioned next to palette with animation */
.services .service-card .icon-design-branding i.brush-on-palette {
  display: inline-block !important;
  position: absolute;
  top: 40%;
  left: 50%;
  transform-origin: 50% 85%;
  animation: brushToScreen 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  filter: drop-shadow(0 0 8px rgba(13, 131, 253, 0.4));
  font-size: 0.65em !important;
  z-index: 2 !important;
  color: var(--default-color) !important;
  font-weight: 600;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.3s ease;
  will-change: transform;
}

.services .service-card:hover .icon-design-branding i.brush-on-palette {
  filter: drop-shadow(0 0 12px rgba(13, 131, 253, 0.6));
}

@media (min-width: 768px) {
  .services .service-card .icon-design-branding {
    gap: 10px;
    margin-top: -12px;
  }

  .services .service-card .icon-design-branding i.bi-palette {
    font-size: 0.95em;
  }

  .services .service-card .icon-design-branding i.brush-on-palette {
    font-size: 0.7em !important;
    top: 38%;
  }
}

@media (min-width: 992px) {
  .services .service-card .icon-design-branding {
    gap: 12px;
    margin-top: -15px;
  }

  .services .service-card .icon-design-branding i.bi-palette {
    font-size: 1em;
  }

  .services .service-card .icon-design-branding i.brush-on-palette {
    font-size: 0.75em !important;
    top: 35%;
  }
}

@keyframes laptopPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes brushToScreen {

  /* Brush starts at right side position next to palette - rest position */
  0% {
    transform: translate(-10%, -70%) rotate(-45deg);
    opacity: 1;
  }

  /* Smooth acceleration - brush begins moving toward palette */
  8% {
    transform: translate(-15%, -70%) rotate(-44deg);
    opacity: 1;
  }

  /* Smooth transition - brush continues moving */
  15% {
    transform: translate(-22%, -70%) rotate(-42.5deg);
    opacity: 1;
  }

  /* Brush continues moving toward palette with natural motion */
  22% {
    transform: translate(-30%, -70%) rotate(-41deg);
    opacity: 1;
  }

  /* Brush continues moving toward palette */
  30% {
    transform: translate(-38%, -70%) rotate(-39.5deg);
    opacity: 1;
  }

  /* Brush approaches palette smoothly - deceleration */
  38% {
    transform: translate(-45%, -70%) rotate(-38deg);
    opacity: 1;
  }

  /* Brush approaches palette smoothly - final approach */
  42% {
    transform: translate(-48%, -70%) rotate(-36.5deg);
    opacity: 1;
  }

  /* Brush reaches palette - gentle contact */
  44% {
    transform: translate(-49.5%, -70%) rotate(-35.5deg);
    opacity: 1;
  }

  /* Brush reaches palette */
  45% {
    transform: translate(-50%, -70%) rotate(-35deg);
    opacity: 1;
  }

  /* Brush begins to dip - smooth downward motion */
  47% {
    transform: translate(-50%, -69.5%) rotate(-33deg);
    opacity: 1;
  }

  /* Brush touches/paints on palette - smooth dip */
  48% {
    transform: translate(-50%, -69%) rotate(-31.5deg);
    opacity: 1;
  }

  /* Brush touches/paints on palette - maximum contact */
  49% {
    transform: translate(-50%, -68.5%) rotate(-30.5deg);
    opacity: 1;
  }

  /* Brush touches/paints on palette */
  50% {
    transform: translate(-50%, -68%) rotate(-30deg);
    opacity: 1;
  }

  /* Brush begins to lift - smooth upward motion */
  51% {
    transform: translate(-50%, -68.5%) rotate(-30.5deg);
    opacity: 1;
  }

  /* Brush lifts slightly from palette - smooth lift */
  52% {
    transform: translate(-50%, -69%) rotate(-31.5deg);
    opacity: 1;
  }

  /* Brush continues lifting */
  53% {
    transform: translate(-50%, -69.5%) rotate(-33deg);
    opacity: 1;
  }

  /* Brush lifts slightly from palette */
  55% {
    transform: translate(-50%, -70%) rotate(-35deg);
    opacity: 1;
  }

  /* Brush begins to retreat - smooth backward motion */
  58% {
    transform: translate(-49.5%, -70%) rotate(-36deg);
    opacity: 1;
  }

  /* Brush moves back away from palette - smooth retreat */
  62% {
    transform: translate(-48%, -70%) rotate(-37deg);
    opacity: 1;
  }

  /* Brush continues retreating */
  68% {
    transform: translate(-44%, -70%) rotate(-38.5deg);
    opacity: 1;
  }

  /* Brush moves back away from palette */
  70% {
    transform: translate(-40%, -70%) rotate(-39.5deg);
    opacity: 1;
  }

  /* Brush continues moving back */
  76% {
    transform: translate(-32%, -70%) rotate(-41deg);
    opacity: 1;
  }

  /* Brush continues moving back */
  82% {
    transform: translate(-24%, -70%) rotate(-42.5deg);
    opacity: 1;
  }

  /* Brush continues moving back - deceleration */
  88% {
    transform: translate(-16%, -70%) rotate(-43.5deg);
    opacity: 1;
  }

  /* Brush continues moving back */
  92% {
    transform: translate(-12%, -70%) rotate(-44.5deg);
    opacity: 1;
  }

  /* Brush returns to original side position - final approach */
  96% {
    transform: translate(-11%, -70%) rotate(-44.8deg);
    opacity: 1;
  }

  /* Brush returns to original side position */
  100% {
    transform: translate(-10%, -70%) rotate(-45deg);
    opacity: 1;
  }
}

@keyframes brushWorkingOnScreen {

  /* Brush starts at left side of screen */
  0% {
    transform: translate(-60%, -50%) rotate(-40deg);
    opacity: 1;
  }

  /* Brush moves across screen applying color */
  25% {
    transform: translate(-40%, -48%) rotate(-35deg);
    opacity: 1;
  }

  /* Brush continues painting across screen */
  50% {
    transform: translate(-20%, -50%) rotate(-40deg);
    opacity: 1;
  }

  /* Brush continues to right side */
  75% {
    transform: translate(-5%, -48%) rotate(-35deg);
    opacity: 1;
  }

  /* Brush returns to start position */
  100% {
    transform: translate(-60%, -50%) rotate(-40deg);
    opacity: 1;
  }
}

@keyframes brushPaintEffect {

  /* Paint effect is visible as brush works on screen */
  0% {
    opacity: 0.8;
    transform: scaleY(1);
  }

  25% {
    opacity: 1;
    transform: scaleY(1.1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }

  75% {
    opacity: 1;
    transform: scaleY(1.1);
  }

  100% {
    opacity: 0.8;
    transform: scaleY(1);
  }
}

@keyframes screenColorTrail {

  /* Color trail appears as brush moves across screen */
  0% {
    opacity: 0;
    transform: translate(-70%, -50%);
  }

  25% {
    opacity: 0.6;
    transform: translate(-50%, -50%);
  }

  50% {
    opacity: 0.8;
    transform: translate(-30%, -50%);
  }

  75% {
    opacity: 0.6;
    transform: translate(-10%, -50%);
  }

  100% {
    opacity: 0;
    transform: translate(10%, -50%);
  }
}

@keyframes brushPaintingOnPalette {
  0% {
    transform: translate(-45%, -50%) rotate(-45deg);
  }

  20% {
    transform: translate(-35%, -40%) rotate(-35deg);
  }

  40% {
    transform: translate(-25%, -45%) rotate(-40deg);
  }

  60% {
    transform: translate(-30%, -40%) rotate(-35deg);
  }

  80% {
    transform: translate(-40%, -50%) rotate(-50deg);
  }

  100% {
    transform: translate(-45%, -50%) rotate(-45deg);
  }
}

@keyframes paintDripOnBrush {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }

  25% {
    opacity: 1;
    transform: scaleY(1.1) scaleX(1.05);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2) scaleX(1.1);
  }

  75% {
    opacity: 1;
    transform: scaleY(1.1) scaleX(1.05);
  }
}


/* BPO - Gear rotating with inner element */
.services .service-card .icon-bpo {
  position: relative;
}

.services .service-card .icon-bpo .gear-teeth {
  animation: gearRotate 4s linear infinite;
  transform-origin: 32px 32px;
}

.services .service-card .icon-bpo .gear-inner {
  animation: gearRotateReverse 2s linear infinite;
  transform-origin: 32px 32px;
}

@keyframes gearRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes gearRotateReverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/* AI/ML - Animated Brain Icon */
.services .service-card .icon-ai,
.services .service-card .icon-ai-title {
  position: relative;
  transition: none !important;
}

/* AI/ML - Bootstrap Icon Animation (bi bi-cpu) */
.services .service-card .icon-ai i.bi-cpu {
  animation: cpuPulse 2.5s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
  transition: none !important;
}

@keyframes cpuPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

@keyframes cpuPulseHover {

  0%,
  100% {
    transform: scale(1.1) rotate(0deg);
    opacity: 1;
  }

  25% {
    transform: scale(1.15) rotate(-2deg);
  }

  75% {
    transform: scale(1.15) rotate(2deg);
  }
}

/* Brain outline glow */
.services .service-card .icon-ai .ai-brain-outline {
  filter: drop-shadow(0 0 4px rgba(13, 131, 253, 0.2));
}

/* Animated nodes - sequential pulsing */

.services .service-card .icon-ai .ai-node-1 {
  animation: nodePulse 2s ease-in-out infinite;
  animation-delay: 0s;
}

.services .service-card .icon-ai .ai-node-2 {
  animation: nodePulse 2s ease-in-out infinite;
  animation-delay: 0.2s;
}

.services .service-card .icon-ai .ai-node-3 {
  animation: nodePulse 2s ease-in-out infinite;
  animation-delay: 0.4s;
}

.services .service-card .icon-ai .ai-node-center {
  animation: centerNodePulse 2s ease-in-out infinite;
  animation-delay: 0.3s;
}

.services .service-card .icon-ai .ai-node-4 {
  animation: nodePulse 2s ease-in-out infinite;
  animation-delay: 0.6s;
}

.services .service-card .icon-ai .ai-node-5 {
  animation: nodePulse 2s ease-in-out infinite;
  animation-delay: 0.8s;
}

.services .service-card .icon-ai .ai-node-6 {
  animation: nodePulse 2s ease-in-out infinite;
  animation-delay: 1s;
}

/* Animated connection lines - flowing effect */
.services .service-card .icon-ai .ai-connection {
  opacity: 0.6;
  stroke-dasharray: 8;
  stroke-dashoffset: 0;
}

.services .service-card .icon-ai .ai-conn-1 {
  animation: connectionFlow 3s ease-in-out infinite;
  animation-delay: 0s;
}

.services .service-card .icon-ai .ai-conn-2 {
  animation: connectionFlow 3s ease-in-out infinite;
  animation-delay: 0.3s;
}

.services .service-card .icon-ai .ai-conn-3 {
  animation: connectionFlow 3s ease-in-out infinite;
  animation-delay: 0.6s;
}

.services .service-card .icon-ai .ai-conn-4 {
  animation: connectionFlow 3s ease-in-out infinite;
  animation-delay: 0.9s;
}

.services .service-card .icon-ai .ai-conn-5 {
  animation: connectionFlow 3s ease-in-out infinite;
  animation-delay: 1.2s;
}

.services .service-card .icon-ai .ai-conn-6 {
  animation: connectionFlow 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Hover effects */

/* Keyframe animations */
@keyframes nodePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes centerNodePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

@keyframes connectionFlow {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.4;
  }

  50% {
    stroke-dashoffset: -16;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -32;
    opacity: 0.4;
  }
}

/* Cloud - Refresh/Sync Icon Animation */
.services .service-card .icon-cloud {
  position: relative;
  overflow: visible;
  transition: none !important;
}

/* Cloud outline - larger size, static with gentle pulse/glow */
.services .service-card .icon-cloud .cloud-icon-main {
  position: relative;
  z-index: 3;
  font-size: 88px !important;
  animation: cloudGlow 3s ease-in-out infinite;
  transform-origin: center;
}

/* Cloud pulse/glow effect - no rotation, just glow */
@keyframes cloudGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(13, 131, 253, 0.4));
  }

  50% {
    filter: drop-shadow(0 0 16px rgba(13, 131, 253, 0.6));
  }
}

/* SVG sync icon - positioned inside cloud, rotates like loading spinner */
.services .service-card .icon-cloud .cloud-sync-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  color: var(--accent-color);
  animation: syncLoadingSpinner 2s linear infinite;
  transform-origin: center center;
}

/* Clockwise arrow (top curved arrow) */
.services .service-card .icon-cloud .sync-arrow-clockwise {
  transform-origin: 12px 12px;
}

/* Counter-clockwise arrow (bottom curved arrow) */
.services .service-card .icon-cloud .sync-arrow-counterclockwise {
  transform-origin: 12px 12px;
}

/* Loading spinner rotation - sync icon rotates continuously like a spinner */
@keyframes syncLoadingSpinner {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Bootstrap Icons Animations for Services */
/* AI & Automation - Robot Icon - AI Neural Network & Machine Learning */
.services .service-card .icon-ai {
  position: relative;
  overflow: visible;
}

.services .service-card .icon-ai i.bi-robot {
  animation: aiThinking 2.5s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
  transition: none !important;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(13, 131, 253, 0.3));
}

/* AI Neural network connections - showing data flow */
.services .service-card .icon-ai::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(13, 131, 253, 0.3);
  background: radial-gradient(circle at 30% 30%,
      rgba(13, 131, 253, 0.2) 0%,
      transparent 50%);
  animation: aiNeuralNetwork 2s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  box-shadow: 0 0 20px rgba(13, 131, 253, 0.2);
  display: none;
}

/* AI processing signals - data pulses */
.services .service-card .icon-ai::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 160%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      rgba(13, 131, 253, 0.15) 45%,
      transparent 50%,
      transparent 100%);
  animation: aiDataFlow 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  display: none;
}

/* Hide background circles on card hover */
.services .service-card:hover .icon-ai::before,
.services .service-card:hover .icon-ai::after {
  display: none;
}

/* Hide background circles on card hover */
.services .service-card:hover .icon-ai::before,
.services .service-card:hover .icon-ai::after {
  display: none;
}

/* AI processing nodes - showing active AI nodes */
.services .service-card .icon-ai i.bi-robot::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow:
    0 0 8px rgba(13, 131, 253, 0.8),
    -20px 0 0 rgba(13, 131, 253, 0.6),
    20px 0 0 rgba(13, 131, 253, 0.6),
    0 -20px 0 rgba(13, 131, 253, 0.4),
    0 20px 0 rgba(13, 131, 253, 0.4);
  animation: aiNodes 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}


@keyframes aiThinking {

  0%,
  100% {
    transform: scale(1) translateY(0) rotate(0deg);
    opacity: 1;
  }

  25% {
    transform: scale(1.05) translateY(-2px) rotate(1deg);
    opacity: 0.98;
  }

  50% {
    transform: scale(1.06) translateY(-3px) rotate(0deg);
    opacity: 0.95;
  }

  75% {
    transform: scale(1.05) translateY(-2px) rotate(-1deg);
    opacity: 0.98;
  }
}

@keyframes aiThinkingHover {

  0%,
  100% {
    transform: scale(1.12) translateY(0) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.2) translateY(-4px) rotate(2deg);
    opacity: 1;
  }
}

/* AI Neural network expanding - data connections */
@keyframes aiNeuralNetwork {
  0% {
    transform: translate(-50%, -50%) scale(0.85) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4) rotate(360deg);
    opacity: 0;
  }
}

/* AI data flow - processing signals */
@keyframes aiDataFlow {
  0% {
    transform: translate(-50%, -50%) scale(0.9) rotate(0deg);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.6) rotate(360deg);
    opacity: 0;
  }
}

/* AI neural network nodes - pulsing connections */
@keyframes aiNodes {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  25% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  75% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

/* Web & App Development - Laptop Icon with Code Brackets Animation */
.services .service-card .icon-webdev {
  position: relative;
  overflow: visible;
}

.services .service-card .icon-webdev i.bi-laptop {
  animation: laptopDevelopment 2.5s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
  position: relative;
}

/* Code brackets animation on laptop screen - showing "<" then "/" then ">" */
.services .service-card .icon-webdev::before {
  content: '<';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-color);
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 0.5em;
  letter-spacing: 0.1em;
  animation: codeBracket1 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  text-shadow: 0 0 8px rgba(13, 131, 253, 0.6);
}

.services .service-card .icon-webdev::after {
  content: '/';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-color);
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 0.5em;
  letter-spacing: 0.1em;
  animation: codeBracket2 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  text-shadow: 0 0 8px rgba(13, 131, 253, 0.6);
}

/* Additional bracket element using the icon's after pseudo-element */
.services .service-card .icon-webdev i.bi-laptop::after {
  content: '>';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-color);
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 0.5em;
  letter-spacing: 0.1em;
  animation: codeBracket3 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  text-shadow: 0 0 8px rgba(13, 131, 253, 0.6);
}


@keyframes laptopDevelopment {

  0%,
  100% {
    transform: scale(1) translateY(0) rotate(0deg);
    opacity: 1;
  }

  25% {
    transform: scale(1.04) translateY(-2px) rotate(1deg);
  }

  75% {
    transform: scale(1.04) translateY(-2px) rotate(-1deg);
  }
}

@keyframes laptopDevelopmentHover {

  0%,
  100% {
    transform: scale(1.1) translateY(0) rotate(-1deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.15) translateY(-3px) rotate(1deg);
    opacity: 1;
  }
}

/* Code brackets sequence animation: "<" -> "/" -> ">" */
@keyframes codeBracket1 {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  10% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  33% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  36% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

@keyframes codeBracket2 {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  33% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  36% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  66% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  69% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

@keyframes codeBracket3 {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  66% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  69% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  90% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* OCR Technology - File Text Icon - Document Recognition */
.services .service-card .icon-ocr {
  position: relative;
  overflow: visible;
}

.services .service-card .icon-ocr i.bi-file-text {
  animation: ocrScanning 3s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
  position: relative;
}

/* Scanning laser beam effect */
.services .service-card .icon-ocr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      rgba(13, 131, 253, 0.9) 30%,
      rgba(13, 131, 253, 1) 50%,
      rgba(13, 131, 253, 0.9) 70%,
      transparent);
  box-shadow: 0 0 8px rgba(13, 131, 253, 0.8);
  animation: ocrScanLine 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Text recognition dots appearing */
.services .service-card .icon-ocr::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
      rgba(13, 131, 253, 0.4) 0%,
      rgba(13, 131, 253, 0.2) 30%,
      transparent 70%);
  animation: ocrTextRecognition 2s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}


@keyframes ocrScanning {

  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }

  50% {
    transform: scale(1.05) translateY(-2px);
    opacity: 1;
  }
}

@keyframes ocrScanningHover {

  0%,
  100% {
    transform: scale(1.1) translateY(-2px);
    opacity: 1;
  }

  50% {
    transform: scale(1.15) translateY(-4px);
    opacity: 1;
  }
}

@keyframes ocrScanLine {
  0% {
    top: 0;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes ocrTextRecognition {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
}

/* Hosting & Cloud Services - Cloud Check Icon - Data Synchronization */
.services .service-card .icon-cloud {
  position: relative;
  overflow: visible;
}

.services .service-card .icon-cloud i.bi-cloud {
  animation: cloudDataSync 3s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(13, 131, 253, 0.3));
  transition: none !important;
}

/* Animated checkmark - pulsing verification */
.services .service-card .icon-cloud i.bi-cloud::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-color);
  font-size: 0.35em;
  font-weight: bold;
  animation: checkmarkPulse 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  text-shadow: 0 0 8px rgba(13, 131, 253, 0.9);
}

/* Multiple sync rings for data transfer effect */
.services .service-card .icon-cloud::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(13, 131, 253, 0.4);
  border-radius: 50%;
  animation: cloudSyncRing1 2s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  display: none;
}

.services .service-card .icon-cloud::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 160%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(13, 131, 253, 0.25);
  border-radius: 50%;
  animation: cloudSyncRing2 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  display: none;
}

/* Hide background circles on card hover */
.services .service-card:hover .icon-cloud::before,
.services .service-card:hover .icon-cloud::after {
  display: none;
}

/* Hide background circles on card hover */
.services .service-card:hover .icon-cloud::before,
.services .service-card:hover .icon-cloud::after {
  display: none;
}

/* Hide background circles on card hover */
.services .service-card:hover .icon-cloud::before,
.services .service-card:hover .icon-cloud::after {
  display: none;
}

/* Hide background circles on card hover */
.services .service-card:hover .icon-cloud::before,
.services .service-card:hover .icon-cloud::after {
  display: none;
}


@keyframes cloudDataSync {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  33% {
    transform: translateY(-3px) scale(1.03);
  }

  66% {
    transform: translateY(-5px) scale(1.05);
  }
}

@keyframes cloudDataSyncHover {

  0%,
  100% {
    transform: translateY(-2px) scale(1.1);
    opacity: 1;
  }

  50% {
    transform: translateY(-7px) scale(1.16);
    opacity: 1;
  }
}

@keyframes cloudSyncRing1 {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.7;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

@keyframes cloudSyncRing2 {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.5;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

/* Checkmark pulse animation - showing verification */
@keyframes checkmarkPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

@keyframes checkmarkPulseHover {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
  }

  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* E-Commerce Solutions - Cart Icon - Products Being Added */
.services .service-card .icon-ecommerce {
  position: relative;
  overflow: visible;
}

.services .service-card .icon-ecommerce i.bi-cart {
  animation: ecommerceCart 2.5s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
  position: relative;
}

/* Product 1 - Appears first in cart */
.services .service-card .icon-ecommerce::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(13, 131, 253, 0.9);
  border: 2px solid rgba(13, 131, 253, 1);
  border-radius: 3px;
  transform: translate(-50%, -50%) scale(0);
  animation: product1Added 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 8px rgba(13, 131, 253, 0.6);
}

/* Product 2 - Appears second in cart */
.services .service-card .icon-ecommerce::after {
  content: '';
  position: absolute;
  top: 55%;
  left: 45%;
  width: 10px;
  height: 10px;
  background: rgba(13, 131, 253, 0.9);
  border: 2px solid rgba(13, 131, 253, 1);
  border-radius: 3px;
  transform: translate(-50%, -50%) scale(0);
  animation: product2Added 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 8px rgba(13, 131, 253, 0.6);
}

/* Product 3 - Appears third in cart */
.services .service-card .icon-ecommerce i.bi-cart::after {
  content: '';
  position: absolute;
  top: 55%;
  right: 45%;
  width: 10px;
  height: 10px;
  background: rgba(13, 131, 253, 0.9);
  border: 2px solid rgba(13, 131, 253, 1);
  border-radius: 3px;
  transform: translate(50%, -50%) scale(0);
  animation: product3Added 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 8px rgba(13, 131, 253, 0.6);
}


@keyframes ecommerceCart {

  0%,
  100% {
    transform: scale(1) translateY(0) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.08) translateY(-3px) rotate(1deg);
    opacity: 1;
  }
}

@keyframes ecommerceCartHover {

  0%,
  100% {
    transform: scale(1.12) translateY(-2px) rotate(-2deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.18) translateY(-5px) rotate(2deg);
    opacity: 1;
  }
}

/* Product 1 animation - appears first */
@keyframes product1Added {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) translateY(10px);
  }

  10% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2) translateY(-5px);
  }

  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }

  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }

  85% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.9) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) translateY(5px);
  }
}

/* Product 2 animation - appears second */
@keyframes product2Added {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) translateY(10px);
  }

  25% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) translateY(10px);
  }

  35% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2) translateY(-5px);
  }

  45% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }

  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }

  85% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.9) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) translateY(5px);
  }
}

/* Product 3 animation - appears third */
@keyframes product3Added {
  0% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0) translateY(10px);
  }

  40% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0) translateY(10px);
  }

  50% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0) translateY(10px);
  }

  60% {
    opacity: 1;
    transform: translate(50%, -50%) scale(1.2) translateY(-5px);
  }

  70% {
    opacity: 1;
    transform: translate(50%, -50%) scale(1) translateY(0);
  }

  85% {
    opacity: 1;
    transform: translate(50%, -50%) scale(1) translateY(0);
  }

  95% {
    opacity: 0.8;
    transform: translate(50%, -50%) scale(0.9) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0) translateY(5px);
  }
}

@keyframes shoppingPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }
}

/* POS Management - Credit Card Icon - Payment Processing */
.services .service-card .icon-pos {
  position: relative;
  overflow: visible;
}

.services .service-card .icon-pos i.bi-credit-card {
  animation: cardSwiping 3s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(13, 131, 253, 0.3));
}


/* Transaction approval checkmark effect */
.services .service-card .icon-pos::after {
  content: 'âœ“';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: rgba(13, 131, 253, 0.9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  animation: transactionApproved 2.5s ease-in-out infinite;
  opacity: 0;
  z-index: 2;
}


@keyframes cardSwipingHover {
  0% {
    transform: translateX(-80%) scale(1.1) rotate(-2deg);
    opacity: 1;
  }

  50% {
    transform: translateX(0) scale(1.2) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateX(80%) scale(1.1) rotate(2deg);
    opacity: 1;
  }
}

/* Card swiping animation - card moves horizontally like being swiped */
@keyframes cardSwiping {
  0% {
    transform: translateX(-100%) scale(1) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: translateX(-80%) scale(0.95) rotate(-2deg);
  }

  25% {
    transform: translateX(-40%) scale(1) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: translateX(0) scale(1.05) rotate(0deg);
    opacity: 1;
  }

  75% {
    transform: translateX(40%) scale(1) rotate(0deg);
    opacity: 1;
  }

  90% {
    transform: translateX(80%) scale(0.95) rotate(2deg);
    opacity: 1;
  }

  100% {
    transform: translateX(100%) scale(1) rotate(0deg);
    opacity: 0;
  }
}

@keyframes posTransactionHover {

  0%,
  100% {
    transform: scale(1.1) translateX(0);
    opacity: 1;
  }

  50% {
    transform: scale(1.15) translateX(3px);
    opacity: 1;
  }
}


@keyframes transactionApproved {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }

  30% {
    opacity: 1;
    transform: scale(1.2) rotate(360deg);
  }

  50% {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }

  70% {
    opacity: 1;
    transform: scale(0.9) rotate(360deg);
  }

  100% {
    opacity: 0;
    transform: scale(0.7) rotate(360deg);
  }
}

/* BPO & Business Automation - Diagram Icon - Process Automation & Workflow */
.services .service-card .icon-bpo {
  position: relative;
  overflow: visible;
  transition: none !important;
}

.services .service-card .icon-bpo i.bi-gear {
  animation: gearRotate 4s linear infinite;
  display: inline-block;
  transform-origin: center;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(13, 131, 253, 0.3));
  transition: none !important;
}

.services .service-card .icon-bpo i.bi-diagram-3 {
  animation: automationWorkflow 3s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(13, 131, 253, 0.3));
  transition: none !important;
}

/* Workflow connection network - pulsing dashed border showing connections */
.services .service-card .icon-bpo::before {
  display: none;
}

/* Data flow rotation - showing automated data processing */
.services .service-card .icon-bpo::after {
  display: none;
}


/* Workflow automation - diagram pulses showing active processes */
@keyframes automationWorkflow {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  25% {
    transform: scale(1.03) rotate(-0.5deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.05) rotate(0deg);
    opacity: 1;
  }

  75% {
    transform: scale(1.03) rotate(0.5deg);
    opacity: 1;
  }
}

@keyframes automationWorkflowHover {

  0%,
  100% {
    transform: scale(1.1) rotate(-1deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.15) rotate(1deg);
    opacity: 1;
  }
}

/* Workflow connections - pulsing network showing active connections */
@keyframes workflowConnections {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.6;
    border-color: rgba(13, 131, 253, 0.6);
  }

  25% {
    opacity: 0.8;
    border-color: rgba(13, 131, 253, 0.8);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
    opacity: 0.7;
    border-color: rgba(13, 131, 253, 0.7);
  }

  75% {
    opacity: 0.8;
    border-color: rgba(13, 131, 253, 0.8);
  }
}

/* Data flow rotation - continuous rotation showing automated processing */
@keyframes dataFlowRotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0.6;
  }
}


.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

/* Icon following title styles with animations */
.services .service-card .icon-title-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.services .service-card .icon-title-icon svg {
  width: 48px;
  height: 48px;
  color: var(--default-color);
  transition: all 0.4s ease;
}

/* E-Commerce icon animations */
.services .service-card .icon-ecommerce-title {
  animation: iconFloat 3s ease-in-out infinite;
}


.services .service-card .icon-ecommerce-title svg {
  filter: drop-shadow(0 2px 8px rgba(13, 131, 253, 0.3));
}


/* AI icon animations */
.services .service-card .icon-ai-title {
  animation: iconPulse 2.5s ease-in-out infinite;
}


.services .service-card .icon-ai-title svg {
  filter: drop-shadow(0 2px 8px rgba(13, 131, 253, 0.3));
}



/* New keyframe animations for title icons */
@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes iconFloatHover {

  0%,
  100% {
    transform: translateY(-4px) rotate(0deg) scale(1.15);
  }

  50% {
    transform: translateY(-12px) rotate(5deg) scale(1.15);
  }
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

@keyframes iconPulseHover {

  0%,
  100% {
    transform: scale(1.2) rotate(0deg);
    opacity: 1;
  }

  25% {
    transform: scale(1.25) rotate(-3deg);
  }

  75% {
    transform: scale(1.25) rotate(3deg);
  }
}

/* Enhanced hover effect for service cards with title icons */

/* Responsive styles for title icons */
@media (max-width: 768px) {
  .services .service-card .icon-title-icon {
    width: 40px;
    height: 40px;
    margin-left: 6px;
  }

  .services .service-card .icon-title-icon svg {
    width: 40px;
    height: 40px;
  }

  .services .service-card h3 {
    font-size: 20px;
    flex-wrap: wrap;
  }

  .services .service-card h3 .icon-title-icon {
    margin-top: 2px;
  }
}

@media (max-width: 480px) {
  .services .service-card .icon-title-icon {
    width: 36px;
    height: 36px;
    margin-left: 4px;
  }

  .services .service-card .icon-title-icon svg {
    width: 36px;
    height: 36px;
  }
}

.services .service-card p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
}


#services .cards .service-card .d-flex {
  gap: 1rem;
}

@media (min-width: 768px) {
  #services .cards .service-card .d-flex {
    gap: 1.25rem;
  }
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
  /* border: 2px solid pink; */
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

.learn-more {
  font-size: 0.8rem;
  color: #42ccf7;
  text-decoration: underline;
  cursor: pointer;
  align-self: center;
  transition: color 0.3s ease;
  /* border: 2px solid rgb(255, 251, 0); */
  margin-top: 0;
}

.service-content {
  height: fit-content;
}


/*--------------------------------------------------------------
# Faq Section
# Accordion-style frequently asked questions with interactive toggles and numbered labels.
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item .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-content p ul {
  margin-bottom: 0;
  overflow: hidden;
  border: 2px solid red;
  background-color: #059652;
}

.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);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
# Secondary CTA section with focused messaging and distinct action buttons.
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .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;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
# Comprehensive contact area featuring information boxes, interactive map links, and a functional lead form.
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
# Sidebars and layout for detailed service pages, including category lists and help boxes.
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  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);
}

/*--------------------------------------------------------------
# Services Section - Fix z-index for sm and md screens
--------------------------------------------------------------*/
@media (min-width: 576px) and (max-width: 991.98px) {

  #services.services.section,
  #services.services.section.light-background {
    z-index: 1 !important;
    isolation: isolate !important;
    position: relative !important;
    overflow: hidden !important;
  }

  #services.services.section::before {
    z-index: -1 !important;
  }

  #services.services.section .container {
    z-index: 1 !important;
    position: relative !important;
    overflow: hidden !important;
  }

  #services.services.section .row {
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #services.services.section .row [class*="col-"] {
    position: relative !important;
    z-index: 1 !important;
  }

  #services.services.section .service-card {
    position: relative !important;
    z-index: 1 !important;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section {
  
} */

/*--------------------------------------------------------------
# New Navbar Styles
# Updated navigation design with extensive responsive overrides for various device orientations.
--------------------------------------------------------------*/
/* Main Navbar - Applied to all pages */
.navbar,
body .navbar,
body.index-page .navbar,
body.services .navbar,
body.careers-page .navbar,
body.contact-page .navbar,
body.clients-page .navbar,
html body .navbar,
html body.index-page .navbar,
html body.services .navbar,
html body.careers-page .navbar,
html body.contact-page .navbar,
html body.clients-page .navbar {
  background: #ffffff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
  position: fixed !important;
  top: 10px !important;
  left: 40px !important;
  right: 40px !important;
  width: auto !important;
  min-width: calc(100% - 80px) !important;
  max-width: calc(100% - 80px) !important;
  z-index: 1000 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  border-radius: 109px !important;
  height: 75px !important;
  min-height: 75px !important;
  max-height: 75px !important;
  box-sizing: border-box !important;
}

.nav-container,
body .nav-container,
body.index-page .nav-container,
body.services .nav-container,
body.careers-page .nav-container,
body.contact-page .nav-container,
body.clients-page .nav-container,
html body .nav-container,
html body.index-page .nav-container,
html body.services .nav-container,
html body.careers-page .nav-container,
html body.contact-page .nav-container,
html body.clients-page .nav-container {
  max-width: 1400px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 24px !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  gap: 40px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Logo */
.nav-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  height: 100% !important;
  padding: 0 !important;
}

.nav-logo .logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: transform 0.3s ease !important;
  height: auto !important;
}

.nav-logo .logo:hover {
  transform: scale(1.02) !important;
}

.logo-image {
  height: 51px !important;
  width: auto !important;
  max-width: 280px !important;
  min-width: 200px !important;
  object-fit: contain !important;
  object-position: center !important;
  transition: all 0.3s ease !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  align-self: center !important;
}

.logo-image:hover {
  filter: brightness(1.05) !important;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .logo-image {
    height: 40px !important;
    max-width: 220px !important;
    min-width: 150px !important;
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE NAVBAR STYLES
   ============================================ */

/* Extra Large Screens (1400px and above) */
@media (min-width: 1400px) {

  .navbar,
  body .navbar,
  body.index-page .navbar,
  body.services .navbar,
  body.careers-page .navbar,
  body.contact-page .navbar,
  body.clients-page .navbar,
  html body .navbar,
  html body.index-page .navbar,
  html body.services .navbar,
  html body.careers-page .navbar,
  html body.contact-page .navbar,
  html body.clients-page .navbar {
    top: 15px !important;
    left: 50px !important;
    right: 50px !important;
    width: auto !important;
    min-width: calc(100% - 100px) !important;
    max-width: calc(100% - 100px) !important;
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
  }

  .nav-container {
    padding: 0 32px !important;
    gap: 50px !important;
  }

  .logo-image {
    height: 55px !important;
    max-width: 300px !important;
    min-width: 220px !important;
  }

  .nav-menu {
    gap: 50px !important;
  }

  .nav-link {
    font-size: 17px !important;
    padding: 14px 0 !important;
  }
}

/* Large Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {

  .navbar,
  body .navbar,
  body.index-page .navbar,
  body.services .navbar,
  body.careers-page .navbar,
  body.contact-page .navbar,
  body.clients-page .navbar,
  html body .navbar,
  html body.index-page .navbar,
  html body.services .navbar,
  html body.careers-page .navbar,
  html body.contact-page .navbar,
  html body.clients-page .navbar {
    top: 12px !important;
    left: 45px !important;
    right: 45px !important;
    width: auto !important;
    min-width: calc(100% - 90px) !important;
    max-width: calc(100% - 90px) !important;
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
  }

  .nav-container {
    padding: 0 28px !important;
    gap: 45px !important;
  }

  .logo-image {
    height: 52px !important;
    max-width: 280px !important;
    min-width: 210px !important;
  }

  .nav-menu {
    gap: 45px !important;
  }

  .nav-link {
    font-size: 16px !important;
  }
}

/* Medium Screens / Tablets (992px - 1199px) - Desktop Navbar */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar {
    top: 10px !important;
    left: 30px !important;
    right: 30px !important;
    width: calc(100% - 60px) !important;
    height: 75px !important;
    min-height: 75px !important;
    max-height: 75px !important;
  }

  .nav-container {
    padding: 0 20px !important;
    gap: 30px !important;
  }

  .logo-image {
    height: 48px !important;
    max-width: 250px !important;
    min-width: 180px !important;
  }

  .nav-menu {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 30px !important;
    box-shadow: none !important;
    overflow: visible !important;
    left: auto !important;
  }

  .nav-menu .nav-item {
    width: auto !important;
    border-bottom: none !important;
    padding: 0 !important;
  }

  .nav-link {
    font-size: 15px !important;
    padding: 10px 0 !important;
    width: auto !important;
  }

  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Small Screens / Small Tablets (768px - 991px) - Mobile Navbar Style */
@media (min-width: 768px) and (max-width: 991px) {

  .navbar,
  body .navbar,
  body.index-page .navbar,
  body.services .navbar,
  body.careers-page .navbar,
  body.contact-page .navbar,
  body.clients-page .navbar,
  body.gallery-page .navbar,
  html body .navbar,
  html body.index-page .navbar,
  html body.services .navbar,
  html body.careers-page .navbar,
  html body.contact-page .navbar,
  html body.clients-page .navbar {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    border-radius: 0 !important;
  }

  .nav-container {
    padding: 0 18px !important;
    gap: 20px !important;
  }

  .logo-image {
    height: 45px !important;
    max-width: 220px !important;
    min-width: 160px !important;
  }

  /* Show mobile menu toggle on md screens - Mobile navbar style until 991px */
  .mobile-menu-toggle,
  body .mobile-menu-toggle,
  body.index-page .mobile-menu-toggle,
  body.services .mobile-menu-toggle,
  body.careers-page .mobile-menu-toggle,
  body.contact-page .mobile-menu-toggle,
  body.clients-page .mobile-menu-toggle,
  body.gallery-page .mobile-menu-toggle,
  html body .mobile-menu-toggle,
  html body.index-page .mobile-menu-toggle,
  html body.services .mobile-menu-toggle,
  html body.careers-page .mobile-menu-toggle,
  html body.contact-page .mobile-menu-toggle,
  html body.clients-page .mobile-menu-toggle {
    display: flex !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    order: 2 !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #0d83fd 0%, #409dfd 100%) !important;
    border-radius: 10px !important;
    padding: 8px !important;
    box-shadow: 0 4px 12px rgba(13, 131, 253, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 10001 !important;
    flex-shrink: 0 !important;
    border: none !important;
    cursor: pointer !important;
  }

  /* Hover state - same color functionality */
  .mobile-menu-toggle:hover,
  body .mobile-menu-toggle:hover,
  html body .mobile-menu-toggle:hover {
    background: linear-gradient(135deg, #0a6fd8 0%, #3588e8 100%) !important;
    box-shadow: 0 6px 16px rgba(13, 131, 253, 0.4) !important;
    transform: translateY(-2px) !important;
  }

  /* Active state - keep same blue color (not red) */
  .mobile-menu-toggle.active,
  body .mobile-menu-toggle.active,
  html body .mobile-menu-toggle.active {
    background: linear-gradient(135deg, #0d83fd 0%, #409dfd 100%) !important;
    box-shadow: 0 4px 12px rgba(13, 131, 253, 0.3) !important;
  }

  /* Active hover state - keep same blue color (not red) */
  .mobile-menu-toggle.active:hover,
  body .mobile-menu-toggle.active:hover,
  html body .mobile-menu-toggle.active:hover {
    background: linear-gradient(135deg, #0a6fd8 0%, #3588e8 100%) !important;
    box-shadow: 0 6px 16px rgba(13, 131, 253, 0.4) !important;
    transform: translateY(-2px) !important;
  }

  /* Icon spans - same color functionality */
  .mobile-menu-toggle span,
  body .mobile-menu-toggle span,
  html body .mobile-menu-toggle span {
    background: #ffffff !important;
    height: 2.5px !important;
    border-radius: 2px !important;
    width: 100% !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
    position: relative !important;
    transform: rotate(0deg) translate(0, 0) !important;
    opacity: 1 !important;
  }

  /* Active state icon animations - same functionality */
  .mobile-menu-toggle.active span:nth-child(1),
  body .mobile-menu-toggle.active span:nth-child(1),
  html body .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .mobile-menu-toggle.active span:nth-child(2),
  body .mobile-menu-toggle.active span:nth-child(2),
  html body .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
  }

  .mobile-menu-toggle.active span:nth-child(3),
  body .mobile-menu-toggle.active span:nth-child(3),
  html body .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  /* Hide nav-menu by default, show on toggle - Mobile style */
  .nav-menu,
  body .nav-menu,
  body.index-page .nav-menu,
  body.services .nav-menu,
  body.careers-page .nav-menu,
  body.contact-page .nav-menu,
  body.clients-page .nav-menu,
  body.gallery-page .nav-menu,
  html body .nav-menu,
  html body.index-page .nav-menu,
  html body.services .nav-menu,
  html body.careers-page .nav-menu,
  html body.contact-page .nav-menu,
  html body.clients-page .nav-menu,
  html body.gallery-page .nav-menu {
    position: fixed !important;
    top: 72px !important;
    left: -100% !important;
    width: 100% !important;
    height: fit-content !important;
    max-height: calc(100vh - 72px) !important;
    background: #ffffff !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 2rem !important;
    gap: 0 !important;
    transition: left 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    overflow-y: auto !important;
    z-index: 10000 !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: flex !important;
  }

  .nav-menu.active,
  body .nav-menu.active,
  html body .nav-menu.active {
    left: 0 !important;
  }

  .nav-menu .nav-item,
  body .nav-menu .nav-item,
  html body .nav-menu .nav-item {
    width: 100% !important;
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 1rem 0 !important;
  }

  .nav-menu .nav-item:last-child,
  body .nav-menu .nav-item:last-child,
  html body .nav-menu .nav-item:last-child {
    border-bottom: none !important;
  }

  .nav-link,
  body .nav-link,
  html body .nav-link {
    font-size: 16px !important;
    padding: 1rem !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Show dropdown menu properly on tablets */
  .dropdown-menu {
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
}

/* Extra Small Screens / Large Phones (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {

  .navbar,
  body .navbar,
  body.index-page .navbar,
  body.services .navbar,
  body.careers-page .navbar,
  body.contact-page .navbar,
  body.clients-page .navbar,
  html body .navbar,
  html body.index-page .navbar,
  html body.services .navbar,
  html body.careers-page .navbar,
  html body.contact-page .navbar,
  html body.clients-page .navbar {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    height: 68px !important;
    min-height: 68px !important;
    max-height: 68px !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
  }

  .nav-container {
    padding: 10px 18px 10px 12px !important;
    gap: 15px !important;
  }

  .logo-image {
    height: 40px !important;
    max-width: 200px !important;
    min-width: 140px !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    position: relative !important;
    z-index: 10001 !important;
    border: none !important;
    cursor: pointer !important;
  }

  /* Hide nav-menu by default, show on toggle */
  .nav-menu {
    position: fixed !important;
    top: 68px !important;
    left: -100% !important;
    width: 100% !important;
    height: fit-content !important;
    max-height: calc(100vh - 68px) !important;
    background: #ffffff !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 2rem !important;
    gap: 0 !important;
    transition: left 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    overflow-y: auto !important;
    z-index: 10000 !important;
    margin: 0 !important;
  }

  .nav-menu.active {
    left: 0 !important;
  }

  .nav-menu .nav-item {
    width: 100% !important;
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 1rem 0 !important;
  }

  .nav-menu .nav-item:last-child {
    border-bottom: none !important;
  }

  .nav-link {
    font-size: 16px !important;
    padding: 16px 20px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
  }
}

/* Very Small Screens / Small Phones (below 576px) */
@media (max-width: 575px) {
  .navbar {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    height: 65px !important;
    min-height: 65px !important;
    max-height: 65px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
  }

  .nav-container {
    padding: 10px 15px 10px 10px !important;
    gap: 12px !important;
  }

  .logo-image {
    height: 38px !important;
    max-width: 180px !important;
    min-width: 120px !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    padding: 7px !important;
    position: relative !important;
    z-index: 10001 !important;
    border: none !important;
    cursor: pointer !important;
  }

  .mobile-menu-toggle span {
    height: 2px !important;
  }

  .nav-menu {
    top: 65px !important;
    height: fit-content !important;
    max-height: calc(100vh - 65px) !important;
  }

  .nav-link {
    font-size: 15px !important;
    padding: 15px 18px !important;
  }
}

/* Landscape Orientation for Tablets and Phones */
@media (max-width: 991px) and (orientation: landscape) {
  .navbar {
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
  }

  .nav-container {
    padding: 8px 15px !important;
  }

  .logo-image {
    height: 35px !important;
    max-width: 180px !important;
    min-width: 120px !important;
  }

  .mobile-menu-toggle {
    width: 34px !important;
    height: 34px !important;
  }

  .nav-menu {
    top: 60px !important;
    height: fit-content !important;
    max-height: calc(100vh - 60px) !important;
  }
}

/* Ensure nav-menu is desktop style at 992px and above */
@media (min-width: 992px) {

  .nav-menu,
  body .nav-menu,
  html body .nav-menu {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 40px !important;
    box-shadow: none !important;
    overflow: visible !important;
    left: auto !important;
  }

  .nav-menu .nav-item,
  body .nav-menu .nav-item,
  html body .nav-menu .nav-item {
    width: auto !important;
    border-bottom: none !important;
    padding: 0 !important;
  }

  .nav-link,
  body .nav-link,
  html body .nav-link {
    width: auto !important;
    padding: 12px 0 !important;
  }

  .mobile-menu-toggle,
  body .mobile-menu-toggle,
  html body .mobile-menu-toggle {
    display: none !important;
  }
}

/* Main Navigation Menu */
.nav-menu {
  display: flex !important;
  list-style: none !important;
  align-items: center !important;
  gap: 40px !important;
  margin: 0 !important;
  margin-right: 0 !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
}

.nav-item {
  position: relative !important;
}

.nav-link {
  color: #1a1a1a !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  padding: 12px 0 !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  position: relative !important;
}

.nav-link:hover {
  color: #0099ff !important;
}

.nav-link.active {
  color: #0099ff !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #0099ff;
  border-radius: 1px;
}

.dropdown-toggle i {
  font-size: 12px !important;
  transition: transform 0.3s ease !important;
}

.dropdown.active .dropdown-toggle i {
  transform: rotate(180deg) !important;
}

/* Action Button */
.nav-action {
  display: flex;
  align-items: center;
}

.start-project-btn {
  background: transparent;
  border: 2px solid #0099ff;
  color: #0099ff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--default-font);
}

.start-project-btn:hover {
  background: #0099ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 153, 255, 0.3);
}

/* Full-Width Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  border-radius: 0 0 16px 16px;
  border-top: 1px solid #f0f0f0;
}

/* Responsive Dropdown Menu Positioning */
@media (min-width: 1400px) {
  .dropdown-menu {
    top: calc(15px + 80px) !important;
    left: 50px !important;
    right: 50px !important;
    width: calc(100% - 100px) !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .dropdown-menu {
    top: calc(12px + 78px) !important;
    left: 45px !important;
    right: 45px !important;
    width: calc(100% - 90px) !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .dropdown-menu {
    top: calc(10px + 75px) !important;
    left: 30px !important;
    right: 30px !important;
    width: calc(100% - 60px) !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .dropdown-menu {
    top: calc(8px + 72px) !important;
    left: 20px !important;
    right: 20px !important;
    width: calc(100% - 40px) !important;
    border-radius: 0 0 12px 12px !important;
  }

  .dropdown-container {
    padding: 30px 20px !important;
  }
}

@media (max-width: 767px) {
  .dropdown-menu {
    display: none;
  }
}

.dropdown-menu.active {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* Dropdown Content */
.dropdown-content {
  display: flex;
  gap: 60px;
  position: relative;
  min-height: 400px;
}

/* Service Categories */
.service-categories {
  display: flex;
  gap: 80px;
  flex: 1;
}

.category-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 250px;
}

.category-item {
  position: relative;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.category-item:hover {
  background: #f8f9ff;
  transform: translateX(8px);
}

.category-item.active {
  background: #f0f7ff;
  border-left: 4px solid #0099ff;
  padding-left: 16px;
}

.category-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  flex: 1;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.category-item:hover .category-link {
  color: #0099ff;
}

.category-item.active .category-link {
  color: #0099ff;
  font-weight: 600;
}

/* Subcategory Column */
.subcategory-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 320px;
  padding-left: 20px;
  border-left: 1px solid #f0f0f0;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.subcategory-column.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-10px);
}

.subcategory-item {
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.subcategory-item:hover {
  background: #f8f9ff;
  transform: translateX(4px);
}

.subcategory-link {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.subcategory-item:hover .subcategory-link {
  color: #0099ff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
  position: relative;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  position: relative;
  transform: rotate(0deg) translate(0, 0);
  opacity: 1;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 991px) {
  .dropdown-content {
    flex-direction: column;
    gap: 40px;
  }

  .service-categories {
    flex-direction: column;
    gap: 40px;
  }

  .subcategory-column {
    border-left: none;
    border-top: 1px solid #f0f0f0;
    padding-left: 0;
    padding-top: 20px;
  }

  .promo-section {
    max-width: 100%;
    min-width: auto;
  }
}

/* Smooth transitions for large screens (lg, xl, xxl) */
@media (min-width: 992px) {
  .subcategory-column {
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .subcategory-column.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-10px);
  }
}

/* Override all inline styles for mobile navbar at 991px breakpoint */
@media (max-width: 991px) {

  /* Force consistent navbar styling across all pages */
  .navbar,
  body .navbar,
  body.index-page .navbar,
  body.services .navbar,
  body.careers-page .navbar,
  body.contact-page .navbar,
  body.clients-page .navbar,
  html body .navbar,
  html body.index-page .navbar,
  html body.services .navbar,
  html body.careers-page .navbar,
  html body.contact-page .navbar,
  html body.clients-page .navbar {
    padding: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
  }

  .nav-container,
  body .nav-container,
  html body .nav-container {
    padding: 12px 20px 12px 15px !important;
  }

  .nav-logo .logo-image,
  body .nav-logo .logo-image,
  html body .nav-logo .logo-image {
    height: 42px !important;
    max-height: 42px !important;
    min-height: 42px !important;
  }

  /* Show mobile menu toggle button on md screens (768px-991px) - Same color functionality */
  .mobile-menu-toggle,
  body .mobile-menu-toggle,
  html body .mobile-menu-toggle {
    display: flex !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    background: linear-gradient(135deg, #0d83fd 0%, #409dfd 100%) !important;
    border-radius: 10px !important;
    padding: 8px !important;
    box-shadow: 0 4px 12px rgba(13, 131, 253, 0.3) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
  }

  .mobile-menu-toggle:hover,
  body .mobile-menu-toggle:hover,
  html body .mobile-menu-toggle:hover {
    background: linear-gradient(135deg, #0a6fd8 0%, #3588e8 100%) !important;
    box-shadow: 0 6px 16px rgba(13, 131, 253, 0.4) !important;
    transform: translateY(-2px) !important;
  }

  .mobile-menu-toggle.active,
  body .mobile-menu-toggle.active,
  html body .mobile-menu-toggle.active {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%) !important;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3) !important;
  }

  .mobile-menu-toggle.active:hover,
  body .mobile-menu-toggle.active:hover,
  html body .mobile-menu-toggle.active:hover {
    background: linear-gradient(135deg, #ee3542 0%, #ff5a6b 100%) !important;
  }

  .mobile-menu-toggle span,
  body .mobile-menu-toggle span,
  html body .mobile-menu-toggle span {
    background: #ffffff !important;
    height: 2.5px !important;
    border-radius: 2px !important;
    width: 100% !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
    position: relative !important;
    transform: rotate(0deg) translate(0, 0) !important;
    opacity: 1 !important;
  }

  .mobile-menu-toggle.active span:nth-child(1),
  body .mobile-menu-toggle.active span:nth-child(1),
  html body .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .mobile-menu-toggle.active span:nth-child(2),
  body .mobile-menu-toggle.active span:nth-child(2),
  html body .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
  }

  .mobile-menu-toggle.active span:nth-child(3),
  body .mobile-menu-toggle.active span:nth-child(3),
  html body .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  /* Hide nav-menu by default on md screens, show on toggle */
  .nav-menu,
  body .nav-menu,
  html body .nav-menu {
    position: fixed !important;
    top: 72px !important;
    left: -100% !important;
    width: 100% !important;
    height: fit-content !important;
    max-height: calc(100vh - 72px) !important;
    background: #ffffff !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 2rem !important;
    gap: 0 !important;
    transition: left 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    overflow-y: auto !important;
    z-index: 10000 !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .nav-menu.active,
  body .nav-menu.active,
  html body .nav-menu.active {
    left: 0 !important;
  }

  .nav-menu .nav-item,
  body .nav-menu .nav-item,
  html body .nav-menu .nav-item {
    width: 100% !important;
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 1rem 0 !important;
  }

  .nav-menu .nav-item:last-child,
  body .nav-menu .nav-item:last-child,
  html body .nav-menu .nav-item:last-child {
    border-bottom: none !important;
  }

  .nav-menu .nav-link,
  body .nav-menu .nav-link,
  html body .nav-menu .nav-link {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
  }
}

@media (max-width: 768px) {

  /* Enhanced Mobile Navbar Container - Applied to all pages with maximum specificity */
  .navbar,
  body .navbar,
  body.index-page .navbar,
  body.services .navbar,
  body.careers-page .navbar,
  body.contact-page .navbar,
  body.clients-page .navbar,
  html body .navbar,
  html body.index-page .navbar,
  html body.services .navbar,
  html body.careers-page .navbar,
  html body.contact-page .navbar,
  html body.clients-page .navbar {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .nav-container,
  body .nav-container,
  body.index-page .nav-container,
  body.services .nav-container,
  body.careers-page .nav-container,
  body.contact-page .nav-container,
  body.clients-page .nav-container,
  html body .nav-container,
  html body.index-page .nav-container,
  html body.services .nav-container,
  html body.careers-page .nav-container,
  html body.contact-page .nav-container,
  html body.clients-page .nav-container {
    flex-wrap: nowrap !important;
    padding: 12px 20px 12px 10px !important;
    height: 100% !important;
    gap: 0 !important;
    justify-content: space-between !important;
    margin: 0 !important;
    max-width: none !important;
    min-width: auto !important;
  }

  /* Enhanced Mobile Menu Toggle Button - Applied to all pages with exact same size */
  .mobile-menu-toggle,
  body .mobile-menu-toggle,
  body.index-page .mobile-menu-toggle,
  body.services .mobile-menu-toggle,
  body.careers-page .mobile-menu-toggle,
  body.contact-page .mobile-menu-toggle,
  body.clients-page .mobile-menu-toggle,
  html body .mobile-menu-toggle,
  html body.index-page .mobile-menu-toggle,
  html body.services .mobile-menu-toggle,
  html body.careers-page .mobile-menu-toggle,
  html body.contact-page .mobile-menu-toggle,
  html body.clients-page .mobile-menu-toggle {
    display: flex !important;
    order: 2 !important;
    margin: 0 !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    background: linear-gradient(135deg, #0d83fd 0%, #409dfd 100%) !important;
    border-radius: 10px !important;
    padding: 8px !important;
    box-shadow: 0 4px 12px rgba(13, 131, 253, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 10001 !important;
    flex-shrink: 0 !important;
    border: none !important;
    cursor: pointer !important;
  }

  /* Hover state - same color functionality with high specificity */
  .mobile-menu-toggle:hover,
  body .mobile-menu-toggle:hover,
  body.index-page .mobile-menu-toggle:hover,
  body.services .mobile-menu-toggle:hover,
  body.careers-page .mobile-menu-toggle:hover,
  body.contact-page .mobile-menu-toggle:hover,
  body.clients-page .mobile-menu-toggle:hover,
  html body .mobile-menu-toggle:hover,
  html body.index-page .mobile-menu-toggle:hover,
  html body.services .mobile-menu-toggle:hover,
  html body.careers-page .mobile-menu-toggle:hover,
  html body.contact-page .mobile-menu-toggle:hover,
  html body.clients-page .mobile-menu-toggle:hover {
    background: linear-gradient(135deg, #0a6fd8 0%, #3588e8 100%) !important;
    box-shadow: 0 6px 16px rgba(13, 131, 253, 0.4) !important;
    transform: translateY(-2px) !important;
  }

  /* Active state - keep same blue color (not red) with high specificity */
  .mobile-menu-toggle.active,
  body .mobile-menu-toggle.active,
  body.index-page .mobile-menu-toggle.active,
  body.services .mobile-menu-toggle.active,
  body.careers-page .mobile-menu-toggle.active,
  body.contact-page .mobile-menu-toggle.active,
  body.clients-page .mobile-menu-toggle.active,
  html body .mobile-menu-toggle.active,
  html body.index-page .mobile-menu-toggle.active,
  html body.services .mobile-menu-toggle.active,
  html body.careers-page .mobile-menu-toggle.active,
  html body.contact-page .mobile-menu-toggle.active,
  html body.clients-page .mobile-menu-toggle.active {
    background: linear-gradient(135deg, #0d83fd 0%, #409dfd 100%) !important;
    box-shadow: 0 4px 12px rgba(13, 131, 253, 0.3) !important;
  }

  /* Active hover state - keep same blue color (not red) with high specificity */
  .mobile-menu-toggle.active:hover,
  body .mobile-menu-toggle.active:hover,
  body.index-page .mobile-menu-toggle.active:hover,
  body.services .mobile-menu-toggle.active:hover,
  body.careers-page .mobile-menu-toggle.active:hover,
  body.contact-page .mobile-menu-toggle.active:hover,
  body.clients-page .mobile-menu-toggle.active:hover,
  html body .mobile-menu-toggle.active:hover,
  html body.index-page .mobile-menu-toggle.active:hover,
  html body.services .mobile-menu-toggle.active:hover,
  html body.careers-page .mobile-menu-toggle.active:hover,
  html body.contact-page .mobile-menu-toggle.active:hover,
  html body.clients-page .mobile-menu-toggle.active:hover {
    background: linear-gradient(135deg, #0a6fd8 0%, #3588e8 100%) !important;
    box-shadow: 0 6px 16px rgba(13, 131, 253, 0.4) !important;
    transform: translateY(-2px) !important;
  }

  /* Icon spans - same color functionality with high specificity */
  .mobile-menu-toggle span,
  body .mobile-menu-toggle span,
  body.index-page .mobile-menu-toggle span,
  body.services .mobile-menu-toggle span,
  body.careers-page .mobile-menu-toggle span,
  body.contact-page .mobile-menu-toggle span,
  body.clients-page .mobile-menu-toggle span,
  html body .mobile-menu-toggle span,
  html body.index-page .mobile-menu-toggle span,
  html body.services .mobile-menu-toggle span,
  html body.careers-page .mobile-menu-toggle span,
  html body.contact-page .mobile-menu-toggle span,
  html body.clients-page .mobile-menu-toggle span {
    background: #ffffff !important;
    height: 2.5px !important;
    border-radius: 2px !important;
    width: 100% !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
    position: relative !important;
    transform: rotate(0deg) translate(0, 0) !important;
    opacity: 1 !important;
  }

  /* Active state icon animations - same functionality with high specificity */
  .mobile-menu-toggle.active span:nth-child(1),
  body .mobile-menu-toggle.active span:nth-child(1),
  body.index-page .mobile-menu-toggle.active span:nth-child(1),
  body.services .mobile-menu-toggle.active span:nth-child(1),
  body.careers-page .mobile-menu-toggle.active span:nth-child(1),
  body.contact-page .mobile-menu-toggle.active span:nth-child(1),
  body.clients-page .mobile-menu-toggle.active span:nth-child(1),
  html body .mobile-menu-toggle.active span:nth-child(1),
  html body.index-page .mobile-menu-toggle.active span:nth-child(1),
  html body.services .mobile-menu-toggle.active span:nth-child(1),
  html body.careers-page .mobile-menu-toggle.active span:nth-child(1),
  html body.contact-page .mobile-menu-toggle.active span:nth-child(1),
  html body.clients-page .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .mobile-menu-toggle.active span:nth-child(2),
  body .mobile-menu-toggle.active span:nth-child(2),
  body.index-page .mobile-menu-toggle.active span:nth-child(2),
  body.services .mobile-menu-toggle.active span:nth-child(2),
  body.careers-page .mobile-menu-toggle.active span:nth-child(2),
  body.contact-page .mobile-menu-toggle.active span:nth-child(2),
  body.clients-page .mobile-menu-toggle.active span:nth-child(2),
  html body .mobile-menu-toggle.active span:nth-child(2),
  html body.index-page .mobile-menu-toggle.active span:nth-child(2),
  html body.services .mobile-menu-toggle.active span:nth-child(2),
  html body.careers-page .mobile-menu-toggle.active span:nth-child(2),
  html body.contact-page .mobile-menu-toggle.active span:nth-child(2),
  html body.clients-page .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
  }

  .mobile-menu-toggle.active span:nth-child(3),
  body .mobile-menu-toggle.active span:nth-child(3),
  body.index-page .mobile-menu-toggle.active span:nth-child(3),
  body.services .mobile-menu-toggle.active span:nth-child(3),
  body.careers-page .mobile-menu-toggle.active span:nth-child(3),
  body.contact-page .mobile-menu-toggle.active span:nth-child(3),
  body.clients-page .mobile-menu-toggle.active span:nth-child(3),
  html body .mobile-menu-toggle.active span:nth-child(3),
  html body.index-page .mobile-menu-toggle.active span:nth-child(3),
  html body.services .mobile-menu-toggle.active span:nth-child(3),
  html body.careers-page .mobile-menu-toggle.active span:nth-child(3),
  html body.contact-page .mobile-menu-toggle.active span:nth-child(3),
  html body.clients-page .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  /* Enhanced Mobile Menu - Applied to all pages */
  .nav-menu,
  body .nav-menu,
  html body .nav-menu,
  body.index-page .nav-menu,
  body.services .nav-menu,
  body.careers-page .nav-menu,
  body.contact-page .nav-menu,
  body.clients-page .nav-menu {
    position: fixed !important;
    top: 70px !important;
    left: -100% !important;
    width: 100% !important;
    height: fit-content !important;
    max-height: calc(100vh - 70px) !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0 !important;
    gap: 0 !important;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15) !important;
    overflow-y: auto !important;
    z-index: 10000 !important;
    backdrop-filter: blur(10px) !important;
  }

  .nav-menu.active,
  body .nav-menu.active,
  html body .nav-menu.active,
  body.index-page .nav-menu.active,
  body.services .nav-menu.active,
  body.careers-page .nav-menu.active,
  body.contact-page .nav-menu.active,
  body.clients-page .nav-menu.active {
    left: 0 !important;
  }

  .nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d83fd 0%, #409dfd 50%, #0d83fd 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
  }

  @keyframes shimmer {
    0% {
      background-position: 200% 0;
    }

    100% {
      background-position: -200% 0;
    }
  }

  .nav-menu .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    transition: background-color 0.3s ease;
  }

  .nav-menu .nav-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu .nav-item:last-child {
    border-bottom: none;
  }

  .nav-menu .nav-item:hover {
    background-color: rgba(13, 131, 253, 0.05);
  }

  .nav-menu .nav-link {
    width: 100%;
    padding: 18px 24px;
    font-size: 17px !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #212529;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-menu .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0d83fd 0%, #409dfd 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }

  .nav-menu .nav-item:hover .nav-link::before,
  .nav-menu .nav-item.active .nav-link::before {
    transform: scaleY(1);
  }

  .nav-menu .nav-item:hover .nav-link,
  .nav-menu .nav-item.active .nav-link {
    color: #0d83fd;
    padding-left: 28px;
  }

  .nav-menu .dropdown {
    position: relative;
  }

  .nav-menu .dropdown .dropdown-toggle::after {
    content: '+';
    font-size: 24px;
    font-weight: 600;
    margin-left: auto;
    transition: all 0.3s ease;
    color: #0d83fd;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 131, 253, 0.1);
    border-radius: 6px;
  }

  .nav-menu .dropdown.active .dropdown-toggle::after {
    content: '\2212';
    transform: rotate(0deg);
    background: rgba(13, 131, 253, 0.2);
  }

  .nav-menu .dropdown .dropdown-toggle {
    pointer-events: auto;
  }

  .nav-menu .dropdown.active .dropdown-toggle {
    color: #0d83fd;
    font-weight: 600;
  }

  /* Logo styling - Applied to all pages with exact same size */
  .nav-logo,
  body .nav-logo,
  body.index-page .nav-logo,
  body.services .nav-logo,
  body.careers-page .nav-logo,
  body.contact-page .nav-logo,
  html body .nav-logo,
  html body.index-page .nav-logo,
  html body.services .nav-logo,
  html body.careers-page .nav-logo,
  html body.contact-page .nav-logo {
    order: 1 !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    margin-left: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .nav-logo .logo,
  body .nav-logo .logo,
  body.index-page .nav-logo .logo,
  body.services .nav-logo .logo,
  body.careers-page .nav-logo .logo,
  body.contact-page .nav-logo .logo,
  html body .nav-logo .logo,
  html body.index-page .nav-logo .logo,
  html body.services .nav-logo .logo,
  html body.careers-page .nav-logo .logo,
  html body.contact-page .nav-logo .logo {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .nav-logo .logo-image,
  body .nav-logo .logo-image,
  body.index-page .nav-logo .logo-image,
  body.services .nav-logo .logo-image,
  body.careers-page .nav-logo .logo-image,
  body.contact-page .nav-logo .logo-image,
  html body .nav-logo .logo-image,
  html body.index-page .nav-logo .logo-image,
  html body.services .nav-logo .logo-image,
  html body.careers-page .nav-logo .logo-image,
  html body.contact-page .nav-logo .logo-image {
    height: 42px !important;
    max-height: 42px !important;
    min-height: 42px !important;
    max-width: 200px !important;
    min-width: 140px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-menu {
    order: 3;
    width: 100%;
  }

  .nav-action {
    width: 100%;
    order: 4;
  }

  .start-project-btn {
    width: 100%;
    text-align: center;
  }

  .dropdown-container {
    padding: 20px;
  }

  /* Mobile dropdown menu adjustments */
  .nav-menu .dropdown-menu {
    display: none;
  }

  .nav-menu .dropdown-menu.active {
    display: block;
  }

  .dropdown-container {
    display: none !important;
  }

  .dropdown-content {
    display: none !important;
  }

  /* Ensure dropdown menu appears inside mobile menu */
  .nav-menu.active .dropdown-menu {
    display: none;
  }

  .dropdown-content {
    display: none !important;
  }

  .service-categories {
    display: none !important;
  }

  .category-column {
    display: none !important;
  }

  .category-item {
    display: none !important;
  }

  .category-link {
    display: none !important;
  }

  .subcategory-column {
    display: none !important;
  }

  body.mobile-menu-active {
    overflow: hidden;
  }

  /* Smooth scrollbar for mobile menu */
  .nav-menu::-webkit-scrollbar {
    width: 6px;
  }

  .nav-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
  }

  .nav-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0d83fd 0%, #409dfd 100%);
    border-radius: 3px;
  }

  .nav-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0a6fd8 0%, #3588e8 100%);
  }
}

/* Override inline styles at 767px breakpoint */
@media (max-width: 767px) {

  .navbar,
  body .navbar,
  html body .navbar {
    padding: 0 !important;
  }

  .nav-container,
  body .nav-container,
  html body .nav-container {
    padding: 12px 20px 12px 10px !important;
  }

  .nav-logo .logo-image,
  body .nav-logo .logo-image,
  html body .nav-logo .logo-image {
    height: 42px !important;
    max-height: 42px !important;
    min-height: 42px !important;
  }

  .mobile-menu-toggle,
  body .mobile-menu-toggle,
  html body .mobile-menu-toggle {
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
  }
}

/* Override inline styles at 575px breakpoint */
@media (max-width: 575px) {

  .navbar,
  body .navbar,
  html body .navbar {
    padding: 0 !important;
  }

  .nav-container,
  body .nav-container,
  html body .nav-container {
    padding: 12px 20px 12px 10px !important;
  }

  .nav-logo .logo-image,
  body .nav-logo .logo-image,
  html body .nav-logo .logo-image {
    height: 42px !important;
    max-height: 42px !important;
    min-height: 42px !important;
  }

  .mobile-menu-toggle,
  body .mobile-menu-toggle,
  html body .mobile-menu-toggle {
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
  }
}

/* Mobile Subcategories Container - New Card-Based Layout */
@media (max-width: 768px) {
  .mobile-subcategories-container {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 0.75rem !important;
    width: 100% !important;
  }

  .mobile-subcategories-container:not(.hidden) {
    display: block !important;
    animation: slideDown 0.3s ease !important;
  }

  .mobile-subcategories-container.hidden {
    display: none !important;
  }

  /* Subcategory Grid - Card Layout */
  .subcategory-grid {
    display: none !important;
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .subcategory-grid:not(.hidden) {
    display: grid !important;
    animation: fadeInUp 0.4s ease !important;
  }

  .subcategory-grid.hidden {
    display: none !important;
  }

  /* Subcategory Card - Modern Card Design */
  .subcategory-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%) !important;
    border: 1.5px solid rgba(0, 153, 255, 0.15) !important;
    border-radius: 16px !important;
    padding: 1.25rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  }

  .subcategory-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(180deg, #0099ff 0%, #0066cc 100%) !important;
    transform: scaleY(0) !important;
    transition: transform 0.3s ease !important;
    transform-origin: top !important;
  }

  .subcategory-card:hover {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%) !important;
    border-color: rgba(0, 153, 255, 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0, 153, 255, 0.2) !important;
  }

  .subcategory-card:hover::before {
    transform: scaleY(1) !important;
  }

  /* Subcategory Icon */
  .subcategory-icon {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(0, 153, 255, 0.05) 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
  }

  .subcategory-icon i {
    font-size: 24px !important;
    color: #0099ff !important;
    transition: all 0.3s ease !important;
  }

  .subcategory-card:hover .subcategory-icon {
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%) !important;
    transform: scale(1.1) rotate(5deg) !important;
  }

  .subcategory-card:hover .subcategory-icon i {
    color: #ffffff !important;
    transform: scale(1.1) !important;
  }

  /* Subcategory Link Content */
  .subcategory-link {
    text-decoration: none !important;
    color: inherit !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    flex: 1 !important;
  }

  .subcategory-link h4 {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease !important;
  }

  .subcategory-link p {
    font-size: 13px !important;
    color: #6b7280 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    transition: color 0.3s ease !important;
  }

  .subcategory-card:hover .subcategory-link h4 {
    color: #0099ff !important;
  }

  .subcategory-card:hover .subcategory-link p {
    color: #4a5568 !important;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Focus states for accessibility */
.nav-link:focus,
.start-project-btn:focus,
.category-link:focus,
.subcategory-link:focus {
  outline: 2px solid #0099ff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Hybrid Observability Heading
--------------------------------------------------------------*/
.section-wrapper2 .text-box .hybrid-heading {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 24px 0;
  padding: 0;
  letter-spacing: -0.02em;
  text-align: left;
  color: inherit;
  background: none;
  -webkit-text-fill-color: initial;
}

.section-wrapper2 .text-box .hybrid-heading-part1,
.section-wrapper2 .text-box .hybrid-heading-part2 {
  color: #0a0a23;
}

.section-wrapper2 .text-box .hybrid-heading-accent {
  color: #0047FF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-wrapper2 .text-box .hybrid-heading {
    font-size: clamp(1.75rem, 5vw, 2rem);
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .section-wrapper2 .text-box .hybrid-heading {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
  }
}

/*--------------------------------------------------------------
# About Company Section
--------------------------------------------------------------*/
.sec-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.sec-title .title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 1.28em;
  color: var(--heading-color);
  font-weight: 700;
  padding-bottom: 18px;
  font-family: var(--heading-font);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sec-title h2:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.sec-title .text {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 400;
  margin-top: 35px;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sec-title.light h2 {
  color: #ffffff;
}

.sec-title.text-center h2:before {
  left: 50%;
  margin-left: -25px;
}

.list-style-one {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.list-style-one li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: var(--default-color);
  font-weight: 400;
  padding-left: 35px;
  margin-bottom: 12px;
  list-style: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.list-style-one li:before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: var(--accent-color);
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
  color: var(--accent-color);
}

.btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: var(--contrast-color);
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: var(--accent-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-style-one:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 131, 253, 0.3);
}

/*--------------------------------------------------------------
# About Section - Base Styles
--------------------------------------------------------------*/
.about-section {
  position: relative;
  padding-top: 50px !important;
  padding-bottom: 80px;
  background-color: var(--background-color);
  color: var(--default-color);
}

.about-section .container {
  max-width: 1200px;
}

.about-section .row {
  align-items: center;
}

.about-section .sec-title {
  margin-bottom: 30px;
}

.about-section .sec-title h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
}

.about-section .sec-title h2:before {
  left: 50%;
  margin-left: -25px;
}

/* Left align sec-title for md, lg, xl, xxl breakpoints only */
@media (min-width: 768px) {
  .about-section .sec-title h2 {
    text-align: left;
  }

  .about-section .sec-title h2:before {
    left: 0px;
    margin-left: 0;
  }
}

.about-section .content-column {
  position: relative;
  margin-bottom: 0;
}

.about-section .content-column .about-content-wrapper {
  position: relative;
  padding: 0 15px;
}

.about-section .text {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 400;
}

.about-section .list-style-one {
  margin-bottom: 35px;
  text-align: left !important;
}

.about-section .list-style-one li {
  margin-bottom: 12px;
  text-align: left !important;
}

.about-section .btn-box {
  position: relative;
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: left !important;
}

.about-section .btn-box a {
  padding: 15px 50px;
  font-size: 17px;
}

.about-section .image-column {
  position: relative;
}

.about-section .image-column .text-layer {
  position: absolute;
  right: -110px;
  top: 50%;
  font-size: 325px;
  line-height: 1em;
  color: #ffffff;
  margin-top: -175px;
  font-weight: 500;
  z-index: 0;
  opacity: 0.05;
}

.about-section .image-column .about-image-wrapper {
  position: relative;
  padding-left: 60px;
  padding-bottom: 80px;
  padding-right: 0;
  margin-left: 0;
  text-align: right;
  z-index: 1;
}

.about-section .image-column .about-image-wrapper:before {
  position: absolute;
  left: -75px;
  top: 65px;
  height: 520px;
  width: 520px;
  background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  z-index: -1;
}

.about-section .image-column .image-1 {
  position: relative;
  margin-bottom: 30px;
  text-align: right;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.about-section .image-column .image-1 img {
  width: 100%;
  max-width: 100%;
  height: 500px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  object-fit: cover;
  box-shadow: 0 30px 50px rgba(8, 13, 62, 0.15);
  border-radius: 8px;
}

.about-section .image-column .image-2 {
  position: absolute;
  left: 0;
  margin-left: -40px;
  bottom: 30px;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.about-section .image-column .image-2 img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 30px 50px rgba(8, 13, 62, 0.15);
  transition: transform 0.6s ease, opacity 0.6s ease;
  border-radius: 8px;
}

.about-section .image-column .video-link {
  position: absolute;
  left: 70px;
  top: 170px;
  z-index: 2;
}

.about-section .image-column .video-link .link {
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8, 13, 62, 0.15);
  transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover {
  background-color: #191e34;
  color: #ffffff;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section - Extra Large Screens (1200px and above)
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .about-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-section .row {
    --bs-gutter-x: 3rem;
  }

  .about-section .content-column {
    padding-right: 40px;
  }

  .about-section .image-column {
    padding-left: 40px;
  }

  .about-section .content-column .about-content-wrapper {
    padding: 0 20px;
  }

  .about-section .sec-title h2 {
    font-size: 42px;
  }
}

/*--------------------------------------------------------------
# About Section - Large Screens (992px to 1199px)
--------------------------------------------------------------*/
@media (min-width: 992px) and (max-width: 1199.98px) {
  .about-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-section .row {
    --bs-gutter-x: 2rem;
  }

  .about-section .content-column {
    padding-right: 30px;
  }

  .about-section .image-column {
    padding-left: 30px;
  }

  .about-section .content-column .about-content-wrapper {
    padding: 0 15px;
  }

  .about-section .sec-title h2 {
    font-size: 38px;
  }

  .about-section .image-column .about-image-wrapper {
    padding-left: 50px;
    padding-bottom: 70px;
  }

  .about-section .image-column .about-image-wrapper:before {
    height: 480px;
    width: 480px;
    left: -60px;
  }

  .about-section .image-column .image-1 img {
    height: 480px;
  }

  .about-section .image-column .image-2 img {
    width: 220px;
    height: 220px;
  }
}

/*--------------------------------------------------------------
# About Section - Medium Screens (768px to 991px)
--------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-section .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2rem;
  }

  .about-section .content-column {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
  }

  .about-section .image-column {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-section .content-column .about-content-wrapper {
    padding: 0;
    text-align: left;
  }

  .about-section .sec-title {
    margin-bottom: 25px;
    text-align: left;
  }

  .about-section .sec-title h2 {
    font-size: 32px;
  }

  .about-section .text {
    margin-bottom: 25px;
    font-size: 15px;
  }

  .about-section .list-style-one {
    margin-bottom: 30px;
    text-align: left;
  }

  .about-section .btn-box {
    text-align: left;
  }

  .about-section .image-column .about-image-wrapper {
    padding-left: 0;
    padding-bottom: 0;
    margin-left: 0;
    text-align: center;
  }

  .about-section .image-column .about-image-wrapper:before {
    height: 400px;
    width: 400px;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
  }

  .about-section .image-column .image-1 {
    text-align: center;
    margin-bottom: 25px;
  }

  .about-section .image-column .image-1 img {
    height: 400px;
    max-width: 100%;
  }

  .about-section .image-column .image-2 {
    position: relative;
    left: auto;
    margin-left: 0;
    bottom: auto;
    margin-top: 20px;
    text-align: center;
  }

  .about-section .image-column .image-2 img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .about-section .image-column .video-link {
    display: none;
  }

  .about-section .image-column .text-layer {
    display: none;
  }
}

/*--------------------------------------------------------------
# About Section - Small Screens (576px to 767px)
--------------------------------------------------------------*/
@media (min-width: 576px) and (max-width: 767.98px) {
  .about-section {
    padding-top: 35px;
    padding-bottom: 50px;
  }

  .about-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-section .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 2rem;
    margin-left: 0;
    margin-right: 0;
  }

  .about-section .content-column {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-section .image-column {
    padding-left: 0;
    padding-right: 0;
  }

  .about-section .content-column .about-content-wrapper {
    padding: 0;
    text-align: left !important;
    width: 100%;
  }

  .about-section .sec-title {
    margin-bottom: 20px;
    text-align: left !important;
  }

  .about-section .sec-title h2 {
    font-size: 28px;
  }

  .about-section .text {
    margin-bottom: 25px;
    font-size: 15px;
    text-align: left !important;
  }

  .about-section .list-style-one {
    margin-bottom: 30px;
    text-align: left !important;
  }

  .about-section .list-style-one li {
    text-align: left !important;
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .about-section .btn-box {
    text-align: left !important;
  }

  .about-section .btn-box a {
    margin: 0 !important;
  }

  .about-section .btn-box a {
    padding: 12px 35px;
    font-size: 16px;
  }

  .about-section .image-column .about-image-wrapper {
    padding-left: 0;
    padding-bottom: 0;
    margin-left: 0;
    text-align: center;
  }

  .about-section .image-column .about-image-wrapper:before {
    height: 350px;
    width: 350px;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
  }

  .about-section .image-column .image-1 {
    text-align: center;
    margin-bottom: 20px;
  }

  .about-section .image-column .image-1 img {
    height: 350px;
    width: 100%;
    max-width: 100%;
  }

  .about-section .image-column .image-2 {
    position: relative;
    left: auto;
    margin-left: 0;
    bottom: auto;
    margin-top: 20px;
    text-align: center;
  }

  .about-section .image-column .image-2 img {
    width: 100%;
    max-width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .about-section .image-column .video-link {
    display: none;
  }

  .about-section .image-column .text-layer {
    display: none;
  }
}

/*--------------------------------------------------------------
# About Section - Extra Small Screens (below 576px)
--------------------------------------------------------------*/
@media (max-width: 575.98px) {
  .about-section {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .about-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-section .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .about-section .content-column {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 25px;
  }

  .about-section .image-column {
    padding-left: 0;
    padding-right: 0;
  }

  .about-section .content-column .about-content-wrapper {
    padding: 0;
    text-align: left !important;
    width: 100%;
  }

  .about-section .sec-title {
    margin-bottom: 20px;
    text-align: left !important;
  }

  .about-section .sec-title h2 {
    font-size: 24px;
    line-height: 1.4;
    text-align: left !important;
  }

  .about-section .text {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
    text-align: left !important;
  }

  .about-section .list-style-one {
    margin-bottom: 25px;
    text-align: left !important;
    padding-left: 20px;
  }

  .about-section .list-style-one li {
    margin-bottom: 10px;
    font-size: 14px;
    text-align: left !important;
  }

  .about-section .btn-box {
    text-align: left !important;
  }

  .about-section .btn-box a {
    margin: 0 !important;
  }

  .about-section .btn-box a {
    padding: 12px 30px;
    font-size: 15px;
    display: inline-block;
  }

  .about-section .image-column .about-image-wrapper {
    padding-left: 0;
    padding-bottom: 0;
    margin-left: 0;
    text-align: center;
  }

  .about-section .image-column .about-image-wrapper:before {
    display: none;
  }

  .about-section .image-column .image-1 {
    text-align: center;
    margin-bottom: 15px;
  }

  .about-section .image-column .image-1 img {
    height: 280px;
    width: 100%;
    max-width: 100%;
  }

  .about-section .image-column .image-2 {
    position: relative;
    left: auto;
    margin-left: 0;
    bottom: auto;
    margin-top: 15px;
    text-align: center;
  }

  .about-section .image-column .image-2 img {
    width: 100%;
    max-width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .about-section .image-column .video-link {
    display: none;
  }

  .about-section .image-column .text-layer {
    display: none;
  }
}

/*--------------------------------------------------------------
# Services Section Responsive Styles
--------------------------------------------------------------*/
/* XS screens (max-width: 575.98px) - handled by separate media query below */
/* SM screens (576px - 767.98px) - handled by dedicated media query above */

/* Medium screens (768px - 991px) - Icons centered with better size */
@media (min-width: 768px) and (max-width: 991px) {

  /* Display only one image in about us section for md screens */
  .about-section .image-column .image-2 {
    display: none !important;
  }

  /* Decrease gap between section-title and cards-container in why-choose-us for md screens */
  #why-choose-us .section-title,
  .why-choose-us .section-title {
    margin-bottom: 1rem !important;
  }

  #why-choose-us .cards-container,
  .why-choose-us .cards-container {
    padding-top: 40px !important;
  }

  /* Services section styles are now handled by the dedicated media query above */
}

@media (max-width: 768px) {
  .services.section {
    padding: 50px 0;
  }

  .services .service-card {
    padding: 24px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .services .service-card .d-flex {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }

  .services .service-card .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .services .service-card .service-content {
    text-align: center;
    width: 100%;
  }

  .services .service-card h3 {
    font-size: 20px;
    margin-bottom: 0.75rem;
  }

  .services .service-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
  }

  .services .service-card .read-more {
    font-size: 14px;
    font-weight: 600;
  }
}

@media (max-width: 576px) {
  .services.section {
    padding: 40px 0;
    z-index: 1;
    isolation: isolate;
    position: relative;
  }

  .services .service-card {
    padding: 20px;
    margin-bottom: 1.25rem;
    border-radius: 12px;
  }

  .services .service-card .icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
    border-radius: 10px;
  }

  .services .service-card h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }

  .services .service-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
  }

  .services .service-card .read-more {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Why Choose Us Section Responsive Styles
--------------------------------------------------------------*/

/* Desktop and up (1200px and up) - Center cards */
@media (min-width: 1200px) {

  .why-choose-us,
  #why-choose-us {
    overflow-x: visible !important;
    overflow: visible !important;
  }

  .why-choose-us .container,
  #why-choose-us .container {
    overflow-x: visible;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container,
  .why-choose-us-cards {
    justify-content: flex-start;
    overflow-x: auto !important;
    overflow-y: hidden;
    padding: 20px 40px !important;
    margin: 0;
  }
}

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {

  .why-choose-us,
  #why-choose-us {
    overflow-x: visible !important;
    overflow: visible !important;
  }

  .why-choose-us .container,
  #why-choose-us .container {
    overflow-x: visible;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container {
    gap: 35px;
    padding: 20px 40px !important;
    justify-content: flex-start;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-padding-left: 40px;
    scroll-padding-right: 40px;
    margin: 0;
  }

  .why-choose-us .card,
  #why-choose-us .card {
    width: calc((100% - 80px - 140px) / 5);
    min-width: 280px;
    max-width: 300px;
    height: 420px;
    flex-shrink: 0;
  }

  .why-choose-us .card-title,
  #why-choose-us .card-title {
    font-size: 30px;
  }

  .why-choose-us .card-description,
  #why-choose-us .card-description {
    font-size: 15px;
  }
}

/* Ultra Wide Screens (1600px and up) */
@media (min-width: 1600px) {

  .why-choose-us,
  #why-choose-us {
    overflow-x: visible !important;
    overflow: visible !important;
  }

  .why-choose-us .container,
  #why-choose-us .container {
    overflow-x: visible;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container {
    gap: 40px;
    padding: 20px 40px !important;
    justify-content: flex-start;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-padding-left: 40px;
    scroll-padding-right: 40px;
    margin: 0;
  }

  .why-choose-us .card,
  #why-choose-us .card {
    width: calc((100% - 120px - 160px) / 5);
    min-width: 300px;
    max-width: 320px;
    height: 440px;
    flex-shrink: 0;
  }

  .why-choose-us .card-title,
  #why-choose-us .card-title {
    font-size: 32px;
  }

  .why-choose-us .card-description,
  #why-choose-us .card-description {
    font-size: 16px;
  }
}

/* Large Devices (1200px - 1399px) - Includes 1280x800 */
@media (min-width: 1200px) and (max-width: 1399px) {

  .why-choose-us,
  #why-choose-us {
    padding: 75px 0;
    overflow-x: visible !important;
    overflow: visible !important;
  }

  .why-choose-us .container,
  #why-choose-us .container {
    padding: 0;
    max-width: 100%;
    width: 100%;
    overflow-x: visible;
  }

  .why-choose-us .section-title,
  #why-choose-us .section-title {
    margin-bottom: 2.5rem;
    padding: 0 20px;
  }

  .why-choose-us .section-title h2,
  #why-choose-us .section-title h2 {
    font-size: 2.375rem;
    line-height: 1.3;
    text-align: center;
  }

  .why-choose-us .section-title p,
  #why-choose-us .section-title p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var(--default-font);
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container {
    gap: 28px;
    padding: 20px 40px !important;
    justify-content: flex-start;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 40px;
    scroll-padding-right: 40px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
  }

  .why-choose-us .card,
  #why-choose-us .card {
    width: 270px;
    min-width: 270px;
    max-width: 270px;
    height: 410px;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 270px;
    scroll-snap-align: start;
  }

  .why-choose-us .card-title,
  #why-choose-us .card-title {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .why-choose-us .card-description,
  #why-choose-us .card-description {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .why-choose-us .card-overlay,
  #why-choose-us .card-overlay {
    padding: 28px 25px;
  }

  .why-choose-us .card-arrow,
  #why-choose-us .card-arrow {
    width: 44px;
    height: 44px;
    top: 23px;
    right: 23px;
  }

  .why-choose-us .card-arrow svg,
  #why-choose-us .card-arrow svg {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 1200px) {

  .why-choose-us,
  #why-choose-us {
    padding: 70px 0;
    overflow-x: visible;
  }

  .why-choose-us .container,
  #why-choose-us .container {
    padding: 0 20px;
    overflow-x: visible;
  }

  .why-choose-us .section-title,
  #why-choose-us .section-title {
    margin-bottom: 2rem;
    padding: 0 15px;
  }

  .why-choose-us .section-title h2,
  #why-choose-us .section-title h2 {
    font-size: 2.25rem;
    line-height: 1.3;
  }

  .why-choose-us .section-title p,
  #why-choose-us .section-title p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var(--default-font);
    max-width: 900px;
    margin: 0 auto;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container {
    padding: 30px 40px 20px 40px !important;
    gap: 25px;
    justify-content: flex-start;
    scroll-padding-left: 40px;
    scroll-padding-right: 40px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .why-choose-us .card,
  #why-choose-us .card {
    width: 260px;
    min-width: 240px;
    max-width: 260px;
    height: 380px;
    flex-shrink: 0;
  }

  .why-choose-us .card-title,
  #why-choose-us .card-title {
    font-size: 24px;
  }

  .why-choose-us .card-description,
  #why-choose-us .card-description {
    font-size: 13.5px;
  }
}

/* Medium-Large Devices (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {

  .why-choose-us,
  #why-choose-us {
    overflow-x: visible !important;
    overflow-y: visible !important;
    overflow: visible !important;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container {
    gap: 25px;
    padding: 80px 40px 80px 40px;
    justify-content: flex-start;
    scroll-padding-left: 40px;
    scroll-padding-right: 40px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
  }

  .why-choose-us .card,
  #why-choose-us .card {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    height: 370px;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 250px;
    scroll-snap-align: start;
  }
}

@media (max-width: 992px) {

  .why-choose-us,
  #why-choose-us {
    padding: 60px 0;
    overflow-x: visible !important;
    overflow-y: visible !important;
    overflow: visible !important;
  }

  .why-choose-us .container,
  #why-choose-us .container {
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
  }

  .why-choose-us .section-title,
  #why-choose-us .section-title {
    margin-bottom: 2rem;
    padding: 0 10px;
  }

  .why-choose-us .section-title h2,
  #why-choose-us .section-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
  }

  .why-choose-us .section-title p,
  #why-choose-us .section-title p {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var(--default-font);
    padding: 0 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container {
    padding: 80px 30px 80px 30px !important;
    gap: 20px;
    justify-content: flex-start;
    scroll-padding-left: 30px;
    scroll-padding-right: 30px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

/* Override for medium screens (768px - 991px) - Decrease gap */
@media (min-width: 768px) and (max-width: 991px) {

  .why-choose-us .section-title,
  #why-choose-us .section-title {
    margin-bottom: 1rem !important;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container {
    padding-top: 40px !important;
    padding-bottom: 80px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 769px) {

  /* Decrease gap between section-title and cards-container in why-choose-us for md screens */
  .why-choose-us .section-title,
  #why-choose-us .section-title {
    margin-bottom: 1rem !important;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container {
    gap: 18px;
    padding: 40px 20px 80px 20px !important;
    justify-content: flex-start;
    scroll-padding-left: 20px;
    scroll-padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }

  .why-choose-us .card,
  #why-choose-us .card {
    width: 230px;
    min-width: 210px;
    height: 350px;
  }
}

@media (max-width: 768px) {

  .why-choose-us,
  #why-choose-us {
    padding: 50px 0;
    overflow-x: visible;
  }

  .why-choose-us .container,
  #why-choose-us .container {
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
  }

  .why-choose-us .section-title,
  #why-choose-us .section-title {
    margin-bottom: 2.5rem;
    padding: 0 10px;
  }

  .why-choose-us .section-title h2,
  #why-choose-us .section-title h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    word-wrap: break-word;
    text-align: center;
  }

  .why-choose-us .section-title p,
  #why-choose-us .section-title p {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0;
    word-wrap: break-word;
    text-align: center;
    max-width: 100%;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container,
  .why-choose-us-cards {
    padding: 70px 15px 70px 15px;
    gap: 18px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    scroll-padding-left: 15px;
    scroll-padding-right: 15px;
  }

  .why-choose-us .cards-container::-webkit-scrollbar,
  #why-choose-us .cards-container::-webkit-scrollbar,
  .why-choose-us-cards::-webkit-scrollbar {
    height: 6px;
  }

  .why-choose-us .cards-container::-webkit-scrollbar-track,
  #why-choose-us .cards-container::-webkit-scrollbar-track,
  .why-choose-us-cards::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin: 0 15px;
  }

  .why-choose-us .cards-container::-webkit-scrollbar-thumb,
  #why-choose-us .cards-container::-webkit-scrollbar-thumb,
  .why-choose-us-cards::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }

  .why-choose-us .cards-container::-webkit-scrollbar-thumb:hover,
  #why-choose-us .cards-container::-webkit-scrollbar-thumb:hover,
  .why-choose-us-cards::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
  }

  .why-choose-us .card,
  #why-choose-us .card,
  .why-choose-us-cards .card {
    width: calc(85vw - 30px);
    max-width: 320px;
    min-width: 280px;
    height: 420px;
    scroll-snap-align: start;
    flex: 0 0 auto;
    flex-shrink: 0;
  }

  .why-choose-us .card:hover,
  #why-choose-us .card:hover,
  .why-choose-us-cards .card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: none !important;
  }

  .why-choose-us .card:active,
  #why-choose-us .card:active,
  .why-choose-us-cards .card:active {
    transform: translateY(-5px) scale(1.005);
  }

  .why-choose-us .card-title,
  #why-choose-us .card-title,
  .why-choose-us-cards .card-title {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
  }

  .why-choose-us .card-description,
  #why-choose-us .card-description,
  .why-choose-us-cards .card-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    word-wrap: break-word;
    hyphens: auto;
  }

  .why-choose-us .card-overlay,
  #why-choose-us .card-overlay,
  .why-choose-us-cards .card-overlay {
    padding: 25px 20px;
  }

  .why-choose-us .card-arrow,
  #why-choose-us .card-arrow,
  .why-choose-us-cards .card-arrow {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
  }

  .why-choose-us .card-arrow svg,
  #why-choose-us .card-arrow svg,
  .why-choose-us-cards .card-arrow svg {
    width: 18px;
    height: 18px;
  }

  /* Touch-friendly for mobile */
  .why-choose-us .card:active .card-overlay,
  #why-choose-us .card:active .card-overlay,
  .why-choose-us-cards .card:active .card-overlay {
    transform: translateY(0);
  }

  .why-choose-us .card:active .card-content,
  #why-choose-us .card:active .card-content,
  .why-choose-us-cards .card:active .card-content {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Small Tablets (640px - 767px) */
@media (max-width: 767px) and (min-width: 641px) {
  .why-choose-us .cards-container {
    gap: 16px;
    padding: 60px 18px 60px 18px;
    justify-content: flex-start;
    scroll-padding-left: 18px;
    scroll-padding-right: 18px;
    width: 100%;
    max-width: 100%;
  }

  .why-choose-us .card {
    width: calc(85vw - 36px);
    max-width: 310px;
    min-width: 270px;
    height: 430px;
  }

  .why-choose-us .card-title {
    font-size: 21px;
  }

  .why-choose-us .card-description {
    font-size: 13.5px;
  }
}

/* Mobile Landscape (480px - 639px) */
@media (max-width: 639px) and (min-width: 481px) {

  .why-choose-us .cards-container,
  #why-choose-us .cards-container {
    gap: 15px;
    padding: 60px 12px 60px 12px;
    justify-content: flex-start;
    scroll-padding-left: 12px;
    scroll-padding-right: 12px;
    width: 100%;
    max-width: 100%;
  }

  .why-choose-us .card,
  #why-choose-us .card {
    width: calc(88vw - 24px);
    max-width: 290px;
    min-width: 250px;
    height: 435px;
  }

  .why-choose-us .card-title,
  #why-choose-us .card-title {
    font-size: 19px;
  }

  .why-choose-us .card-description,
  #why-choose-us .card-description {
    font-size: 12.5px;
  }
}

@media (max-width: 576px) {

  .why-choose-us,
  #why-choose-us {
    padding: 40px 0;
    overflow-x: visible;
  }

  .why-choose-us .container,
  #why-choose-us .container {
    padding: 0 10px;
    max-width: 100%;
    width: 100%;
  }

  .why-choose-us .section-title,
  #why-choose-us .section-title {
    margin-bottom: 2rem;
    padding: 0 5px;
  }

  .why-choose-us .section-title h2,
  #why-choose-us .section-title h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    padding-bottom: 15px;
    text-align: center;
  }

  .why-choose-us .section-title p,
  #why-choose-us .section-title p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var(--default-font);
    padding: 0;
    word-wrap: break-word;
    text-align: center;
    max-width: 100%;
  }

  .why-choose-us .cards-container,
  #why-choose-us .cards-container {
    padding: 30px 10px 15px 10px;
    gap: 15px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    scroll-padding-left: 10px;
    scroll-padding-right: 10px;
  }

  .why-choose-us .cards-container::-webkit-scrollbar,
  #why-choose-us .cards-container::-webkit-scrollbar,
  .why-choose-us-cards::-webkit-scrollbar {
    height: 5px;
  }

  .why-choose-us .cards-container::-webkit-scrollbar-track,
  #why-choose-us .cards-container::-webkit-scrollbar-track,
  .why-choose-us-cards::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin: 0 10px;
  }

  .why-choose-us .cards-container::-webkit-scrollbar-thumb,
  #why-choose-us .cards-container::-webkit-scrollbar-thumb,
  .why-choose-us-cards::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }

  .why-choose-us .cards-container::-webkit-scrollbar-thumb:hover,
  #why-choose-us .cards-container::-webkit-scrollbar-thumb:hover,
  .why-choose-us-cards::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
  }

  .why-choose-us .card,
  #why-choose-us .card,
  .why-choose-us-cards .card {
    width: calc(90vw - 20px);
    max-width: 300px;
    min-width: 260px;
    height: 440px;
    scroll-snap-align: start;
    flex: 0 0 auto;
    flex-shrink: 0;
    border-radius: 16px;
  }

  .why-choose-us .card:hover,
  #why-choose-us .card:hover,
  .why-choose-us-cards .card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: none !important;
  }

  .why-choose-us .card:active,
  #why-choose-us .card:active,
  .why-choose-us-cards .card:active {
    transform: translateY(-4px) scale(1.005);
  }

  .why-choose-us .card-title,
  #why-choose-us .card-title,
  .why-choose-us-cards .card-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
  }

  .why-choose-us .card-description,
  #why-choose-us .card-description,
  .why-choose-us-cards .card-description {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
    word-wrap: break-word;
    hyphens: auto;
  }

  .why-choose-us .card-overlay,
  #why-choose-us .card-overlay,
  .why-choose-us-cards .card-overlay {
    padding: 22px 16px;
  }

  .why-choose-us .card-arrow,
  #why-choose-us .card-arrow,
  .why-choose-us-cards .card-arrow {
    width: 36px;
    height: 36px;
    top: 16px;
    right: 16px;
  }

  .why-choose-us .card-arrow svg,
  #why-choose-us .card-arrow svg,
  .why-choose-us-cards .card-arrow svg {
    width: 15px;
    height: 15px;
  }

  /* Touch-friendly for mobile */
  .why-choose-us .card:active .card-overlay,
  #why-choose-us .card:active .card-overlay,
  .why-choose-us-cards .card:active .card-overlay {
    transform: translateY(0);
  }

  .why-choose-us .card:active .card-content,
  #why-choose-us .card:active .card-content,
  .why-choose-us-cards .card:active .card-content {
    opacity: 1;
    transform: translateY(0);
  }

  .why-choose-us .why-item {
    padding: 1.25rem;
  }

  .why-choose-us .why-icon {
    width: 60px;
    height: 60px;
  }

  .why-choose-us .why-item h3 {
    font-size: 18px;
  }

  .why-choose-us .why-item p {
    font-size: 13px;
  }
}

/* Small Mobile (400px - 479px) */
@media (max-width: 479px) and (min-width: 401px) {
  .why-choose-us .cards-container {
    padding: 25px 10px 12px 10px;
    gap: 12px;
    justify-content: flex-start;
    scroll-padding-left: 10px;
    scroll-padding-right: 10px;
    width: 100%;
    max-width: 100%;
  }

  .why-choose-us .card {
    width: calc(90vw - 20px);
    min-width: 250px;
    max-width: 285px;
    height: 425px;
  }

  .why-choose-us .card-title {
    font-size: 17px;
  }
}

/* Extra Small Mobile (360px - 400px) */
@media (max-width: 400px) {
  .why-choose-us {
    padding: 35px 0;
  }

  .why-choose-us .container {
    padding: 0 8px;
    width: 100%;
    max-width: 100%;
  }

  .why-choose-us .section-title {
    margin-bottom: 1.5rem;
    padding: 0;
  }

  .why-choose-us .section-title h2 {
    font-size: 1.375rem;
    line-height: 1.25;
    padding-bottom: 10px;
    text-align: center;
  }

  .why-choose-us .section-title p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: var(--default-font);
    text-align: center;
  }

  .why-choose-us .cards-container {
    padding: 25px 8px 12px 8px;
    gap: 12px;
    justify-content: flex-start;
    scroll-padding-left: 8px;
    scroll-padding-right: 8px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .why-choose-us .cards-container::-webkit-scrollbar {
    height: 4px;
  }

  .why-choose-us .cards-container::-webkit-scrollbar-track {
    margin: 0 8px;
  }

  .why-choose-us .card {
    width: calc(90vw - 16px);
    min-width: 240px;
    max-width: 280px;
    height: 420px;
    border-radius: 14px;
  }

  .why-choose-us .card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .why-choose-us .card-description {
    font-size: 12px;
    line-height: 1.5;
  }

  .why-choose-us .card-overlay {
    padding: 20px 14px;
  }

  .why-choose-us .card-arrow {
    width: 32px;
    height: 32px;
    top: 14px;
    right: 14px;
  }

  .why-choose-us .card-arrow svg {
    width: 14px;
    height: 14px;
  }
}

/* Very Small Mobile (320px - 359px) */
@media (max-width: 359px) {
  .why-choose-us {
    padding: 30px 0;
  }

  .why-choose-us .container {
    padding: 0 5px;
  }

  .why-choose-us .section-title h2 {
    font-size: 1.25rem;
    padding-bottom: 8px;
  }

  .why-choose-us .section-title p {
    font-size: 0.8rem;
  }

  .why-choose-us .cards-container {
    padding: 20px 5px 10px 5px;
    gap: 10px;
    justify-content: flex-start;
    scroll-padding-left: 5px;
    scroll-padding-right: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
  }

  .why-choose-us .cards-container::-webkit-scrollbar {
    height: 3px;
  }

  .why-choose-us .cards-container::-webkit-scrollbar-track {
    margin: 0 5px;
  }

  .why-choose-us .card {
    width: calc(92vw - 10px);
    min-width: 220px;
    max-width: 260px;
    height: 400px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .why-choose-us .card-title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .why-choose-us .card-description {
    font-size: 11px;
    line-height: 1.4;
  }

  .why-choose-us .card-overlay {
    padding: 18px 12px;
  }

  .why-choose-us .card-arrow {
    width: 28px;
    height: 28px;
    top: 12px;
    right: 12px;
  }

  .why-choose-us .card-arrow svg {
    width: 12px;
    height: 12px;
  }
}

/* Orientation-specific styles */
@media (orientation: landscape) and (max-height: 600px) {
  .why-choose-us {
    padding: 30px 0;
  }

  .why-choose-us .card {
    height: 380px;
  }

  .why-choose-us .section-title {
    margin-bottom: 1.5rem;
  }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .why-choose-us .card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }
}

/*--------------------------------------------------------------
# Why Choose Us - Styles Moved from index.html
--------------------------------------------------------------*/

/* Animated Cards Styles - Moved from index.html */
.cards-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  width: 100%;
  justify-content: center;
  overflow-x: auto;
  padding: 20px 0 !important;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Add padding to cards wrapper to center them when they fit */
.cards-container::before {
  content: '';
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc((100% - (280px * 5 + 30px * 4)) / 2);
}

.cards-container::after {
  content: '';
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc((100% - (280px * 5 + 30px * 4)) / 2);
}

/* When cards overflow, remove pseudo-elements for scrolling */
@media (max-width: 1600px) {

  .cards-container::before,
  .cards-container::after {
    display: none;
  }

  .cards-container {
    padding: 20px 40px !important;
    justify-content: flex-start;
  }
}

.cards-container::-webkit-scrollbar {
  height: 8px;
}

.cards-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.cards-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.cards-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.card {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  flex-shrink: 0;
  box-sizing: border-box;
}

.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: white;
  will-change: transform;
}

.card:hover .card-overlay {
  transform: translateY(0);
}

.card-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  will-change: opacity, transform;
}

.card:hover .card-content {
  opacity: 1;
  transform: translateY(0);
}

.card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.card-subtitle {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

.card-arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: none !important;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  will-change: transform;
}

.card-arrow svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-arrow {
  transform: translate(15px, -15px);
}

.card:hover .card-arrow svg {
  transform: rotate(45deg);
}

/* Responsive Design - Moved from index.html */
@media (max-width: 1200px) {
  .card {
    width: 220px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .cards-container {
    gap: 15px;
    padding: 40px 15px 20px 15px;
  }

  .card {
    width: 200px;
    min-width: 180px;
    height: 350px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cards-container {
    gap: 12px;
    padding: 30px 10px 15px 10px;
  }

  .card {
    width: 180px;
    min-width: 160px;
    height: 320px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-subtitle {
    font-size: 12px;
  }

  .card-description {
    font-size: 12px;
  }
}

/* Touch-friendly for mobile - Moved from index.html */
@media (hover: none) {
  .card:active .card-overlay {
    transform: translateY(0);
  }

  .card:active .card-content {
    opacity: 1;
    transform: translateY(0);
  }

  .card:active .card-arrow {
    transform: translate(15px, -15px);
  }

  .card:active .card-arrow svg {
    transform: rotate(45deg);
  }
}

/* Why Choose Us Media Query Styles - Moved from index.html */
/* Large Tablets (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .why-choose-us {
    padding: 80px 0;
  }

  .cards-container {
    gap: 25px;
  }

  .card {
    width: 260px;
    height: 400px;
  }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .why-choose-us {
    padding: 60px 0;
  }

  .why-choose-us .container {
    padding: 0 30px;
  }

  .why-choose-us .section-title {
    margin-bottom: 2.5rem;
  }

  .cards-container {
    gap: 20px;
    padding: 40px 20px 20px 20px;
    justify-content: center;
  }

  .card {
    width: 240px;
    min-width: 220px;
    height: 380px;
  }
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-us .container {
    padding: 0 20px;
  }

  .cards-container {
    gap: 15px;
    padding: 30px 15px 15px 15px;
  }

  .card {
    width: 210px;
    min-width: 190px;
    height: 350px;
  }

  .card-title {
    font-size: 1.1875rem;
  }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-us .container {
    padding: 0 15px;
  }

  .why-choose-us .section-title {
    margin-bottom: 2rem;
  }

  .why-choose-us .section-title h2 {
    font-size: 1.625rem;
    text-align: center;
  }

  .why-choose-us .section-title p {
    font-size: 0.875rem;
    text-align: center;
    padding: 0 10px;
  }

  .cards-container {
    gap: 10px;
    padding: 30px 10px 15px 10px;
    justify-content: flex-start;
  }

  .card {
    width: 180px;
    min-width: 160px;
    height: 320px;
  }

  .card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .card-subtitle {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .card-description {
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
  }

  .card-overlay {
    padding: 20px;
  }

  .card-arrow {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
  }

  .card-arrow svg {
    width: 18px;
    height: 18px;
  }
}

/*--------------------------------------------------------------
# Footer Dropdown Styles
--------------------------------------------------------------*/
/* Footer Chevron - Hidden by default on all screens, shown only on mobile */
.footer-chevron {
  display: none !important;
}

/* Footer Dropdown Content - Always align left */
.footer-dropdown-content {
  text-align: left !important;
}

.footer-dropdown-content li {
  text-align: left !important;
  justify-content: flex-start !important;
}

.footer-dropdown-content a {
  text-align: left !important;
}

/* Mobile Footer Dropdown Styles */
@media (max-width: 991px) {
  .footer-top .row.gy-4 {
    gap: 5px !important;
  }

  .footer-links {
    margin-bottom: 5px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .footer-links h4.footer-dropdown-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    user-select: none;
    padding: 0 10Px !important;
  }

  .footer-links.active .footer-chevron {
    transform: rotate(180deg);
  }

  .footer-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    margin: 0;
    text-align: left !important;
    margin-left: 1rem !important;
  }

  .footer-dropdown-content li {
    text-align: left !important;
    justify-content: flex-start !important;
    display: flex !important;
    align-items: center !important;
  }

  .footer-dropdown-content a {
    text-align: left !important;
    display: inline-block !important;
  }

  .footer-links.active .footer-dropdown-content {
    max-height: 1000px;
    padding-top: 0.5rem;
  }
}

/* Override main.css centering for footer dropdown content on mobile */
@media (max-width: 991px) {
  .footer .footer-links .footer-dropdown-content {
    text-align: left !important;
  }

  .footer .footer-links .footer-dropdown-content li {
    text-align: left !important;
    justify-content: flex-start !important;
    display: flex !important;
    align-items: center !important;
  }

  .footer .footer-links .footer-dropdown-content a {
    text-align: left !important;
    display: inline-block !important;
  }
}

/* Footer Chevron - Show only on sm and md screens */
/* Hide by default */
.footer-chevron {
  display: none !important;
  transition: transform 0.4s ease;
  font-size: 0.875rem;
}

/* Show on mobile and tablet (up to 991px) */
@media (max-width: 991px) {
  .footer-chevron {
    display: inline-block !important;
  }
}

/* Hide chevron on lg screens and above (992px+) */
@media (min-width: 992px) {
  .footer-chevron {
    display: none !important;
  }
}

/* Desktop: Ensure footer chevron is hidden and dropdown content is always visible */
@media (min-width: 992px) {
  .footer-links h4.footer-dropdown-toggle {
    cursor: default;
  }

  .footer-dropdown-content {
    max-height: none !important;
    padding: 0 !important;
    overflow: visible !important;
    text-align: left !important;
    margin-left: 0 !important;
  }

  .footer-dropdown-content li {
    text-align: left !important;
  }

  .footer-dropdown-content a {
    text-align: left !important;
  }
}

@media (max-width: 991px) {

  .nav-menu,
  body .nav-menu,
  html body .nav-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    height: fit-content !important;
    max-height: 100vh !important;
    width: min(420px, 88vw) !important;
    background: #ffffff !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 28px 28px 42px !important;
    transform: translateX(110%) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
    box-shadow: none !important;
    overflow-y: auto !important;
    z-index: 10002 !important;
  }

  .nav-menu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) !important;
    box-shadow: 0 24px 60px rgba(8, 23, 48, 0.25) !important;
  }

  .nav-menu li {
    width: 100% !important;
    border-top: 1px solid #eef2f6;
    list-style: none;
    padding: 0;
  }

  .nav-menu li:first-child {
    border-top: none;
  }

  .nav-menu li+li {
    border-top: 1px solid #eef2f6;
  }

  .nav-menu .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0 !important;
    font-size: 1rem !important;
  }

  .nav-menu-mobile-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e4e9f2;
    border-top: none !important;
  }

  .nav-menu-mobile-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }

  .nav-menu-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c7f92;
  }

  .nav-menu-close {
    border: none;
    background: #f1f5fb;
    color: #0b223f;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-menu-close:hover {
    background: #dfe9f9;
    color: #0054c7;
  }

  .dropdown-menu {
    display: none;
  }

  .dropdown-menu.active {
    display: block;
  }

  .mobile-services-menu {
    display: block;
    width: 100%;
    border: 1px solid #e5ecf6;
    border-radius: 20px;
    padding: 18px 18px 8px;
    margin-top: 16px;
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  }

  .nav-item.dropdown.active .mobile-services-menu {
    display: block;
    animation: fadeInUp 0.4s ease;
  }

  .mobile-services-meta p {
    margin: 0 0 4px 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0b223f;
  }

  .mobile-services-meta span {
    font-size: 0.82rem;
    color: #6c7f92;
  }

  .mobile-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
  }

  .mobile-services-menu .category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid transparent;
    transition: all 0.25s ease;
  }

  .mobile-services-menu .category-item.active {
    border-color: #cfe3ff;
    background: #f1f7ff;
    box-shadow: 0 12px 28px rgba(11, 84, 185, 0.12);
  }

  .mobile-services-menu .category-link {
    font-weight: 600;
    color: #0b223f;
  }

  .mobile-services-menu .category-item.active .category-link {
    color: #006edc;
  }

  .mobile-services-menu .category-toggle {
    border: none;
    background: transparent;
    color: #7c8ca0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
  }

  .mobile-services-menu .category-toggle:hover {
    background: #edf3ff;
    color: #006edc;
  }

  .mobile-services-menu .category-item.active .category-toggle {
    background: #dcecff;
    color: #006edc;
    transform: rotate(90deg);
  }

  .mobile-subcategories-container {
    display: block;
    width: 100%;
    border: 1px solid #e5ecf6;
    border-radius: 20px;
    padding: 18px;
    margin-top: 18px;
    background: #ffffff;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.3s ease, margin 0.3s ease;
    max-height: 560px;
    opacity: 1;
  }

  .mobile-subcategories-container.hidden {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    border-width: 0;
    pointer-events: none;
  }

  .subcategory-grid {
    display: none;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .subcategory-grid.hidden {
    display: none !important;
  }

  .subcategory-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fdfdff;
    border: 1px solid #e0e6f0;
    color: #0b223f;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .subcategory-pill:hover {
    border-color: #0099ff;
    color: #006edc;
    background: #f0f7ff;
  }
}

@media (min-width: 992px) {

  .nav-menu-mobile-header,
  .mobile-services-menu,
  .mobile-subcategories-container {
    display: none !important;
  }
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10001;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

body.mobile-menu-active {
  overflow: hidden;
}

/* Force override for about-section padding-top */
section.about-section {
  padding-top: 50px !important;
}

@media (max-width: 992px) {
  section.about-section {
    padding-top: 40px !important;
  }
}

@media (max-width: 768px) {
  section.about-section {
    padding-top: 35px !important;
  }
}

@media (max-width: 576px) {
  section.about-section {
    padding-top: 30px !important;
  }
}

/*--------------------------------------------------------------
# WhatsApp Branded Widget
# Floating WhatsApp chat bubble and popup for direct customer support engagement.
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
}

.whatsapp-popup {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  overflow: hidden;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.whatsapp-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-header {
  background: #075e54;
  color: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
  /* border: 2px solid red; */
}

.wa-logo-container {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 7px;
  /* Added padding as requested */
}

.wa-logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-header-text {
  display: flex;
  flex-direction: column;
}

.wa-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.wa-status {
  font-size: 11px;
  opacity: 0.8;
}

.wa-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.wa-body {
  padding: 20px;
  background: #e5ddd5;
}

.wa-message {
  background: #fff;
  padding: 10px 15px;
  border-radius: 0 8px 8px 8px;
  position: relative;
  margin-bottom: 20px;
  font-size: 14px;
  color: #333;
}

.wa-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  border-width: 0 8px 8px 0;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

.wa-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.wa-start-btn:hover {
  background: #128c7e;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .scroll-top {
    width: 44px;
    height: 44px;
    right: 15px;
    bottom: -15px;
  }

  .scroll-top.active {
    bottom: 15px;
  }

  .whatsapp-float {
    width: 44px;
    height: 44px;
    bottom: 15px;
    left: 15px;
    font-size: 22px;
  }

  .whatsapp-popup {
    bottom: 70px;
    left: 15px;
    width: calc(100% - 30px);
    max-width: 320px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
# Interactive image grid with hover effects, blur filters, and specific mobile optimizations.
--------------------------------------------------------------*/
.gallery {
  padding: 2rem 0 6rem 0;
}

.img-container {
  width: 100%;
  height: 350px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.img-container:hover .img-content-hover {
  display: block;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-container:hover img {
  transform: scale(1.1);
}

.img-content-hover {
  z-index: 1000;
  position: fixed;
  pointer-events: none;
  white-space: nowrap;
  display: none;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery .title {
  color: #05386e;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.gallery .category {
  font-size: 0.9rem;
  color: #666;
  margin: 4px 0 0 0;
}

/* Static fallback for mobile/touch */
.img-content-static {
  display: none;
  padding: 1rem 0;
}

@media screen and (max-width: 1024px) {
  .img-container img:hover {
    transform: none;
  }

  .img-container {
    height: 280px;
  }

  .img-content-hover {
    display: none !important;
  }

  .img-content-static {
    display: block;
  }

  .img-content-static h3 {
    color: #05386e;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .img-content-static p {
    font-size: 0.9rem;
    color: #666;
  }
}

@media screen and (max-width: 768px) {
  .img-container {
    height: 220px;
  }
}

/* Hide navbar underline specifically on Gallery page */
.gallery-page .nav-link.active::after {
  display: none !important;
}

/*--------------------------------------------------------------
# AI Stats Section
# Visualized statistics for AI development with colored cards, counters, and flexible typography.
--------------------------------------------------------------*/
.ai-stats-section {
  padding: 0;
  /* border: 5px solid red; */
  background: var(--background-color);
}

.ai-stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ai-stats-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--heading-color);
  font-family: var(--heading-font);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.ai-stats-title-2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--heading-color);
  font-family: var(--heading-font);
  text-align: left;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}


.ai-highlight {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 12px;
  border-radius: 4px;
  color: var(--heading-color);
  display: inline-block;
}

.ai-stat-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: none;
}

/* Alternating Backgrounds */
.row.g-4.mt-3>.col-lg-3:nth-child(odd) .ai-stat-card {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-color: #bbdefb;
}

.row.g-4.mt-3>.col-lg-3:nth-child(even) .ai-stat-card {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #e2e8f0;
}

.stat-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-color), #2d465e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--heading-font);
  display: inline-block;
}

.stat-content {
  margin-top: 15px;
}

.stat-text {
  color: var(--default-color);
  font-weight: 700;

  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-family: var(--default-font);
}

/* Responsive AI Stats */
@media (max-width: 768px) {
  .ai-stats-title {
    font-size: 1.5rem;
  }

  .stat-circle {
    width: 80px;
    height: 80px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-text {
    font-size: 0.85rem;
  }

  .ai-stat-card {
    padding: 25px 15px;
  }
}

/*--------------------------------------------------------------
# Service Tiles Section
# Modern tiled layout with expanding hover effects, custom color variants, and icon overlays.
--------------------------------------------------------------*/
.products-tile-container {
  width: 100%;
  display: flex;
  height: clamp(20rem, 40vw, 24rem);
}

.tile {
  --padding-box: calc(3.75rem - 1.25rem);
  width: 100%;
  height: 80%;
  border-radius: 32px;
  padding: var(--padding-box);
  position: relative;
  overflow: hidden;
  flex: 1;
  color: #fff;
  background-color: #000;
  transition: flex-grow 0.4s cubic-bezier(0.38, 0.005, 0.215, 1),
    margin 0.4s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.tile:hover {
  flex: 1.5;
  cursor: pointer;
}

.tile:not(:last-child) {
  margin-right: -10%;
  transition: margin 0.4s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.tile:not(:last-child):hover {
  margin-right: -2%;
}

.tile-title {
  --font-size-h2-sans: 28px;
  max-width: 13rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 600;
  font-size: var(--font-size-h2-sans);
}

.card-text {
  max-width: 250px;
  margin-top: 8px;
}

/* Icon Popup positioned as requested */
.icon-popup {
  font-size: 72px;
  position: absolute;
  bottom: 30px;
  right: 40px;
}

.tile-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color:#ffffff;
  opacity: 0.1;
  transition: opacity 1s ease;
  z-index: -1;
}

.tile:hover .tile-background {
  opacity: 0;
}

/* Tile Colors */
.tile:nth-child(1) {
  --text: #fff;
  --primary: #af3766;
  background-color: var(--primary);
  z-index: 1;
  color: var(--text);
}

.tile:nth-child(2) {
  --text: #fff;
  --primary: #6abde1;
  background-color: var(--primary);
  z-index: 2;
  color: var(--text);
}

.tile:nth-child(3) {
  --text: #fff;
  --primary: #9cbe43;
  background-color: var(--primary);
  z-index: 3;
  color: var(--text);
}

.tile:nth-child(4) {
  --text: #fff;
  --primary: #6610f2;
  background-color: var(--primary);
  z-index: 4;
  color: var(--text);
}

.tile:nth-child(5) {
  --text: #fff;
  --primary: #fd7e14;
  background-color: var(--primary);
  z-index: 5;
  color: var(--text);
}

.tile:nth-child(6) {
  --text: #fff;
  --primary: #20c997;
  background-color: var(--primary);
  z-index: 6;
  color: var(--text);
}

/* Row 2 Colors */
.row-2 .tile:nth-child(1) {
  --text: #fff;
  --primary: #fd7e14;
  background-color: var(--primary);
  z-index: 1;
  color: var(--text);
}

.row-2 .tile:nth-child(2) {
  --text: #fff;
  --primary: #20c997;
  background-color: var(--primary);
  z-index: 2;
  color: var(--text);
}

.row-2 .tile:nth-child(3) {
  --text: #fff;
  --primary: #dc3545;
  background-color: var(--primary);
  z-index: 3;
  color: var(--text);
}

.row-2 .tile:nth-child(4) {
  background: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  z-index: 4;
}

/* Section Title */
.section-title-services {
  width: 100%;
  text-align: center;
}

.section-title-services h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: clamp(30px, 6vw, 60px);
  margin-top: clamp(30px, 6vw, 60px);
  font-weight: 800;
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
}

a.tile {
  text-decoration: none !important;
  color: white !important;
}

/*--------------------------------------------------------------
# Secondary Why Choose Us Section
# Alternative feature layout highlighting service advantages with icons and list items.
--------------------------------------------------------------*/
.why-choose-us-section {
  padding: 80px 0;
}

.why-choose-us-section .section-image img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-us-section .number-box {
  min-width: 50px;
  height: 50px;
  background: rgba(13, 131, 253, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.why-choose-us-section .item-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  text-align: left;
}

.why-choose-us-section .item-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  text-align: left;
}

.why-choose-us-section .section-subtitle {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .why-choose-us-section .text-start {
    text-align: center !important;
  }
}

/* =======================================================
   Services Dropdown Promotional Graphics Section
   ======================================================== */

.promo-section {
  width: auto;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  display: block;
}

.tech-illustration {
  width: 100%;
  display: flex;
  align-items: center;
}

.tech-illustration a {
  flex: 1;
  display: block;
}

.tech-illustration img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: block;
}

.tech-illustration img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for promo section */
@media (max-width: 1199px) {
  .promo-section {
    max-width: 100%;
    min-width: auto;
    flex: 1;
  }

  .tech-illustration {
    gap: 15px !important;
  }
}

@media (max-width: 991px) {

  /* When in the mobile dropdown accordion */
  .mobile-services-menu .promo-section {
    width: 100%;
    margin-top: 20px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    max-width: 100%;
  }

  /* Keep side-by-side on iPad/Tablets, stack on mobile */
  .tech-illustration {
    flex-direction: row;
    gap: 15px !important;
  }
}

@media (max-width: 767px) {
  /* .tech-illustration {
    flex-direction: column;
  } */

  .tech-illustration a {
    width: 100%;
  }

  .promo-section {
    max-width: 100%;
    display: block !important;
  }
}

/* Common Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Dropdown Visibility & Animations */
.dropdown-menu.active .dropdown-container {
  animation: fadeInUp 0.4s ease;
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
}

.nav-item.dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

/* ==========================================================================
   Mobile Services Menu Styles (Restored/Added/Fixed)
   ========================================================================== */

/* General utility for toggling visibility via JS */
.hidden {
  display: none !important;
}

@media (max-width: 991px) {

  /* Container for the mobile accordion */
  .mobile-services-menu {
    display: none;
    /* Hidden by default */
    width: 100%;
    background: #f8f9fa !important;
    /* Force visible background */
    border-radius: 12px;
    padding: 10px;
    margin-top: 15px;
    border: 1px solid #e9ecef;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Reveal the menu when the parent dropdown li is active */
  .nav-item.dropdown.active .mobile-services-menu {
    display: block !important;
    /* REMOVED ANIMATION to prevent visibility issues */
  }

  /* Ensure the list wrapper is visible */
  .mobile-category-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    /* border: 5px solid red; */
  }

  /* Category Items (Accordion Headers) */
  .mobile-category-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 15px !important;
    background: #ffffff !important;
    border: 1px solid #eef0f5 !important;
    border-radius: 8px !important;
    margin-bottom: 8px !important;
    cursor: pointer !important;
    color: #444444 !important;
    /* Force text color */
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mobile-category-item:hover {
    border-color: var(--accent-color);
  }

  .mobile-category-item.active {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #ffffff !important;
  }

  .mobile-category-item .category-link {
    display: block !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    text-align: left !important;
  }

  /* Toggle Icon */
  .category-toggle {
    background: none;
    border: none;
    padding: 0;
    color: inherit !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .category-toggle i {
    font-size: 14px;
    font-weight: bold;
    color: #000;
  }

  .mobile-category-item.active .category-toggle {
    transform: rotate(90deg);

  }

  /* Subcategories Container */
  .mobile-subcategories-container {
    display: block;
    background: #ffffff !important;
    border-left: 2px solid var(--accent-color);
    margin-left: 10px;
    padding-left: 0;
    overflow: hidden;
    width: calc(100% - 10px);
  }

  .mobile-subcategories-container.hidden {
    display: none !important;
  }

  .mobile-subcategories-container .subcategory-grid {
    display: flex !important;
    flex-direction: column !important;
    padding: 10px !important;
  }

  /* Subcategory Links */
  .mobile-subcategory-link {
    display: block !important;
    padding: 10px 0 !important;
    color: #555555 !important;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px dotted #eeeeee;
  }

  .mobile-subcategory-link:last-child {
    border-bottom: none;
  }

  .mobile-subcategory-link:hover {
    color: var(--accent-color) !important;
    padding-left: 5px;
  }

  /* Explicitly hide the Desktop Mega Menu on Mobile */
  #services-dropdown,
  .dropdown-menu#services-dropdown {
    display: none !important;
  }
}

/* Ensure Desktop styles don't pick up the mobile menu */
@media (min-width: 992px) {
  .mobile-services-menu {
    display: none !important;
  }
}

/* Navbar Overrides from index.html for Global consistency */
.dropdown-menu.active {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

.nav-item.dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
}

.dropdown-menu.active .dropdown-container {
  animation: fadeInUp 0.4s ease;
}

/* Navigation Improvements */
@media (max-width: 991px) {
  .navbar {
    padding: 10px 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    border-radius: 0 !important;
    height: auto !important;
    min-height: 60px !important;
    max-height: none !important;
    margin: 0 !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .nav-container {
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: auto !important;
  }

  .nav-logo {
    display: flex !important;
    align-items: center !important;
    margin-right: auto !important;
  }

  .nav-logo .logo-image {
    max-height: 40px !important;
    height: auto !important;
    min-width: auto !important;
    display: block !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 42px !important;
    height: 42px !important;
    background: #0d83fd !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin-left: auto !important;
    box-shadow: 0 4px 12px rgba(13, 131, 253, 0.2) !important;
  }

  .mobile-menu-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
  }
}

@media (max-width: 575px) {
  .navbar {
    padding: 8px 0 !important;
  }

  .nav-container {
    padding: 0 15px !important;
  }

  .nav-logo .logo-image {
    max-height: 35px !important;
  }

  .mobile-menu-toggle {
    width: 38px !important;
    height: 38px !important;
    gap: 4px !important;
  }

  .mobile-menu-toggle span {
    width: 18px !important;
  }
}