/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", 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: "Poppins", 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: #28a745; /* 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: #28a745; /* 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: #28a745; /* 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: #f0f8f0;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #28a745;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #34ce57;
  --contrast-color: #ffffff;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 36px;
  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;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Mobile view - revert to solid background */
@media (max-width: 1200px) {
  .header .header-container {
    background: var(--surface-color);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .scrolled .header .header-container {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    position: relative;
    color: var(--nav-color);
    padding: 12px 22px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
    z-index: 1;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .navmenu li:hover > a,
  .navmenu a.active,
  .navmenu a:focus.active {
    background: rgba(40, 167, 69, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--contrast-color) !important;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
  }
  .navmenu li:hover > a i,
  .navmenu a.active i {
    color: var(--contrast-color) !important;
  }

  /* .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: -100%;
    visibility: visible;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: #212529;
  color: #ffffff;
  padding: 60px 0 20px 0;
}

.footer .sitename {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 600;
}

.footer h4 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer .footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer .footer-contact i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  font-size: 1rem;
}

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

.footer .footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
}

.footer .copyright p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer .copyright strong {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px 0;
  }
  
  .footer .footer-top {
    text-align: center;
  }
  
  .footer .footer-contact p {
    justify-content: center;
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  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: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

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

.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: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Update the hero section styles in your main.css file */
.hero {
  position: relative;
  padding-top: 160px;
  background: linear-gradient(112deg, 
    color-mix(in srgb, var(--accent-color), transparent 95%) 0%, 
    color-mix(in srgb, var(--accent-color), transparent 98%) 25%, 
    #28a74500 50%,
    #28a74500 50%
  );
  overflow: hidden;
}

.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;
  z-index: 1;
}

/* Animated gradient background for right half */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    45deg,
    #28a745,
    #34ce57,
    #20c997,
    #17a2b8,
    #42c192,
    #3eaae8,
    #4be83d,
    #07a0ff,
    #28a745
  );
  background-size: 300% 300%;
  animation: gradient-animation 8s ease infinite;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
  pointer-events: none;
}

/* Ensure content stays above the animated background */
.hero .hero-content,
.hero .hero-image,
.hero .stats-row {
  position: relative;
  z-index: 2;
}

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

@media (max-width: 992px) {
  .hero::after {
    width: 100%;
    clip-path: polygon(0% 70%, 100% 60%, 100% 100%, 0% 100%);
  }
  
  .hero .hero-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
}

@media (max-width: 768px) {
  .hero::after {
    clip-path: polygon(0% 80%, 100% 70%, 100% 100%, 0% 100%);
  }
}

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

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.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: 1.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero .btn-primary::after {
  content: '\f285'; /* Bootstrap icon arrow-right */
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: normal;
}

.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%);
  padding-right: 3.5rem;
}

.hero .btn-primary:hover::after {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  right: 1.5rem;
}

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

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.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: 20px;
  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);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/* Add this to your main.css file */
.about {
  position: relative;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask2342%26quot%3b)' fill='none'%3e%3cpath d='M645.07 148.63 a120.8 120.8 0 1 0 241.6 0 a120.8 120.8 0 1 0 -241.6 0z' fill='rgba(29%2c 142%2c 28%2c 0.2)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M368.807%2c287.748C409.431%2c286.709%2c438.998%2c255.27%2c460.97%2c221.085C485.62%2c182.735%2c511.934%2c137.804%2c491.322%2c97.141C469.435%2c53.963%2c417.211%2c38.629%2c368.807%2c39.267C321.652%2c39.889%2c274.146%2c58.79%2c251.762%2c100.298C230.264%2c140.164%2c244.108%2c187.6%2c268.097%2c226.019C290.448%2c261.815%2c326.62%2c288.827%2c368.807%2c287.748' fill='rgba(29%2c 142%2c 28%2c 0.2)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M285.169710003296 507.93944755953817L206.5999871729034 360.171290457493 58.831830070858274 438.7410132878856 137.40155290125088 586.5091703899308z' fill='rgba(29%2c 142%2c 28%2c 0.2)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M829.4 371.41 a106.06 106.06 0 1 0 212.12 0 a106.06 106.06 0 1 0 -212.12 0z' fill='rgba(29%2c 142%2c 0.2)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M663.1859875737268 260.6181912899683L585.018211297546 215.48800461496091 618.0558008987194 338.7859675661491z' fill='rgba(29%2c 142%2c 28%2c 0.2)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M-93.14825486660415 293.25904969494724L15.974843649222748 418.7908147256203 141.5066086798958 309.6677162097934 32.38351016406891 184.13595117912035z' fill='rgba(29%2c 142%2c 28%2c 0.2)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M271.05091799236027-63.0099236749046L304.37949624384254 93.78870907312714 427.84955074039203-96.33850192638684z' fill='rgba(29%2c 142%2c 28%2c 0.2)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M910.8354549504121 386.6034572481628L1046.1230267009992 288.3112828607846 947.830852313621 153.0237111101976 812.5432805630339 251.31588549757578z' fill='rgba(29%2c 142%2c 28%2c 0.2)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M39.15 218.49 a103.99 103.99 0 1 0 207.98 0 a103.99 103.99 0 1 0 -207.98 0z' fill='rgba(29%2c 142%2c 28%2c 0.2)' class='triangle-float3'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask2342'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Add shadow to video for better visibility */
.about .images video {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.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
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  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-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.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: 0;
  margin: 0;
}

@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: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

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

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.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: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #d4edda;
}

.features-cards .feature-box.blue i {
  color: #28a745;
}

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

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.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 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .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;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Testimonials Carousel
--------------------------------------------------------------*/
.testimonials-carousel-wrapper {
  position: relative;
  padding: 2rem 0;
}

.testimonials-swiper {
  padding: 2rem 0 4rem 0;
  overflow: hidden;
  position: relative;
}

/* Add fade masks on both edges */
.testimonials-swiper::before,
.testimonials-swiper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}

.testimonials-swiper::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--background-color) 0%,
    rgba(255, 255, 255, 0.8) 40%,
    transparent 100%
  );
}

.testimonials-swiper::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--background-color) 0%,
    rgba(255, 255, 255, 0.8) 40%,
    transparent 100%
  );
}

/* For light-background sections */
.light-background .testimonials-swiper::before {
  background: linear-gradient(
    to right,
    #f0f8f0 0%,
    rgba(240, 248, 240, 0.8) 40%,
    transparent 100%
  );
}

.light-background .testimonials-swiper::after {
  background: linear-gradient(
    to left,
    #f0f8f0 0%,
    rgba(240, 248, 240, 0.8) 40%,
    transparent 100%
  );
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
  padding: 30px;
  position: relative;
  height: 100%;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.testimonials .testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(40, 167, 69, 0.3);
}

.testimonials .testimonial-item .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  float: left;
  margin: 0 15px 15px 0;
  object-fit: cover;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 5px 0;
  color: var(--heading-color);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: var(--accent-color);
  margin: 0 0 15px 0;
  font-weight: 500;
}

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

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 2px;
  font-size: 16px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 24px;
  line-height: 0;
  opacity: 0.6;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 20px 0 0 0;
  padding: 0;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  clear: both;
}

/* Swiper Navigation Buttons - Position them outside the fade area */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  opacity: 0.8;
  z-index: 15; /* Above the fade masks */
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  opacity: 1;
  transform: scale(1.1);
  background: color-mix(in srgb, var(--accent-color), black 15%);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination {
  bottom: 10px;
  text-align: center;
  z-index: 15; /* Above the fade masks */
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.3);
}

/* Custom Controls */
.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  position: relative;
  z-index: 15; /* Above the fade masks */
}

.testimonials-controls .control-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 2px solid transparent;
}

.testimonials-controls .control-item:hover {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.3);
  transform: translateY(-2px);
}

.testimonials-controls .control-item i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.testimonials-controls .control-item:hover i {
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 20px;
    text-align: center;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
  }
  
  .testimonials-controls {
    gap: 1.5rem;
  }
  
  .testimonials-controls .control-item {
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
  }
  
  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  
  .testimonials-swiper .swiper-button-next::after,
  .testimonials-swiper .swiper-button-prev::after {
    font-size: 14px;
  }
  
  /* Reduce fade width on mobile */
  .testimonials-swiper::before,
  .testimonials-swiper::after {
    width: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials-swiper {
    padding: 1rem 0 3rem 0;
  }
  
  .testimonials .testimonial-item {
    padding: 15px;
  }
  
  .testimonials-controls {
    display: none; /* Hide custom controls on very small screens */
  }
  
  /* Hide navigation arrows on very small screens and reduce fade */
  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    display: none;
  }
  
  .testimonials-swiper::before,
  .testimonials-swiper::after {
    width: 20px;
  }
}

/* Animation for testimonial items */
@keyframes testimonial-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials .testimonial-item {
  animation: testimonial-fade-in 0.6s ease-out;
}

/* Autoplay pause on hover */
.testimonials-swiper:hover .swiper-slide {
  animation-play-state: paused;
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

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

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

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

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

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

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

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.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
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/* Update the sitename styling for better elegance */
.sitename {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  font-size: 1.75rem;
  color: #222;
}

/* Add this CSS to your main.css file */
.features-cards .feature-box {
  height: 100%;
  padding: 30px 20px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid rgba(40, 167, 69, 0.1);
}

.features-cards .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.3);
}

.features-cards .feature-box .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.features-cards .feature-box:hover .feature-icon {
  background: rgba(40, 167, 69, 0.2);
  transform: scale(1.1);
}

.features-cards .feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2d465e;
}

.features-cards .feature-box p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
}

.features-cards .feature-box .job-count {
  font-size: 13px;
  font-weight: 600;
  color: #28a745;
  background: rgba(40, 167, 69, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
}

@media (max-width: 768px) {
  .features-cards .feature-box {
    margin-bottom: 30px;
  }
}

/* Add this CSS to your main.css file */
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Animated abstract shapes */
.contact .info-box .abstract-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
}

.contact .info-box .abstract-shape svg {
  width: 100%;
  height: 100%;
}

.contact .info-box .abstract-shape svg path {
  fill: var(--contrast-color);
}

.contact .info-box .shape-1 {
  width: 120px;
  height: 120px;
  top: -20px;
  right: -30px;
  animation: float-shape-1 6s ease-in-out infinite;
}

.contact .info-box .shape-2 {
  width: 80px;
  height: 80px;
  bottom: -10px;
  left: -20px;
  animation: float-shape-2 8s ease-in-out infinite;
}

.contact .info-box .shape-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 20px;
  animation: float-shape-3 5s ease-in-out infinite;
}

.contact .info-box .shape-4 {
  width: 40px;
  height: 40px;
  top: 20%;
  left: 10px;
  animation: float-shape-4 7s ease-in-out infinite;
}

/* Ensure content is above shapes */
.contact .info-box h3,
.contact .info-box p,
.contact .info-box .info-item {
  position: relative;
  z-index: 2;
}

@keyframes float-shape-1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(90deg);
  }
  50% {
    transform: translate(-5px, -25px) rotate(180deg);
  }
  75% {
    transform: translate(-15px, -10px) rotate(270deg);
  }
}

@keyframes float-shape-2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(15px, -10px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translate(-10px, -20px) rotate(240deg) scale(0.9);
  }
}

@keyframes float-shape-3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-20px, 15px) rotate(180deg);
  }
}

@keyframes float-shape-4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(5px, -8px) rotate(45deg) scale(1.2);
  }
  50% {
    transform: translate(-8px, -15px) rotate(90deg) scale(0.8);
  }
  75% {
    transform: translate(-12px, -5px) rotate(135deg) scale(1.1);
  }
}

@media (max-width: 768px) {
  .contact .info-box .abstract-shape {
    opacity: 0.05;
  }
}

/* Add this CSS to your main.css file */
.contact .contact-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 600px;
}

@media (max-width: 992px) {
  .contact .contact-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

/* Info Section (Left Side) */
.contact .info-section {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 992px) {
  .contact .info-section {
    padding: 2rem;
  }
}

/* Animated abstract shapes */
.contact .info-section .abstract-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
}

.contact .info-section .abstract-shape svg {
  width: 100%;
  height: 100%;
}

.contact .info-section .abstract-shape svg path,
.contact .info-section .abstract-shape svg circle,
.contact .info-section .abstract-shape svg polygon,
.contact .info-section .abstract-shape svg rect {
  fill: var(--contrast-color);
}

.contact .info-section .shape-1 {
  width: 120px;
  height: 120px;
  top: -20px;
  right: -30px;
  animation: float-shape-1 6s ease-in-out infinite;
}

.contact .info-section .shape-2 {
  width: 80px;
  height: 80px;
  bottom: -10px;
  left: -20px;
  animation: float-shape-2 8s ease-in-out infinite;
}

.contact .info-section .shape-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 20px;
  animation: float-shape-3 5s ease-in-out infinite;
}

.contact .info-section .shape-4 {
  width: 40px;
  height: 40px;
  top: 20%;
  left: 10px;
  animation: float-shape-4 7s ease-in-out infinite;
}

/* Ensure content is above shapes */
.contact .info-section h3,
.contact .info-section p,
.contact .info-section .info-item {
  position: relative;
  z-index: 2;
}

.contact .info-section h3 {
  color: var(--contrast-color);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact .info-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact .info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.contact .info-item .icon-box {
  width: 3rem;
  height: 3rem;
  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.25rem;
  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.1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact .info-item .content p {
  margin-bottom: 0.15rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Form Section (Right Side) */
.contact .form-section {
  padding: 3rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 992px) {
  .contact .form-section {
    padding: 2rem;
  }
}

.contact .form-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.contact .form-section p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact .form-section .form-control {
  padding: 1rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 0.75rem;
  background-color: #f8f9fa;
  color: var(--default-color);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.contact .form-section .form-control:focus {
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
  border-color: var(--accent-color);
  background-color: #ffffff;
}

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

.contact .form-section .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact .form-section .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
}

/*--------------------------------------------------------------
# Partner Section
--------------------------------------------------------------*/
.partner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(248, 249, 250, 1) 50%, rgba(25, 135, 84, 0.05) 100%);
}

.partner-content {
  padding-right: 30px;
}

@media (max-width: 991.98px) {
  .partner-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.partner-content h3 {
  color: var(--heading-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.partner-content .lead {
  font-size: 1.1rem;
  color: var(--default-color);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Trust Indicators */
.trust-indicators {
  margin-top: 30px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.trust-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: linear-gradient(135deg, var(--accent-color), #0056b3);
  color: white;
}

.trust-icon i {
  font-size: 1.5rem;
}

.trust-content h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.trust-content p {
  color: var(--default-color);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Partner Animation */
.partner-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.partnership-svg {
  width: 100%;
  height: auto;
  max-width: 600px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.partnership-svg .bg-circle {
  filter: blur(1px);
}

.partnership-svg .data-packet {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.partnership-svg .growth-arrow {
  stroke-dasharray: 5,5;
}

/* Company building animation */
.company-building rect:first-child {
  animation: building-glow 3s ease-in-out infinite alternate;
}

@keyframes building-glow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.1) drop-shadow(0 0 10px rgba(13, 110, 253, 0.3)); }
}

/* TaskMasters hub animation */
.taskmasters-hub circle {
  animation: hub-pulse 2s ease-in-out infinite;
}

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

/* Virtual assistants hover effect */
.virtual-assistants g:hover circle {
  filter: brightness(1.2) drop-shadow(0 0 10px currentColor);
}

/* Comparison Tables */
.comparison-table {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.comparison-table:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table.competitors {
  background: rgba(248, 249, 250, 0.9);
}

.table-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.table-header h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.table-header i {
  font-size: 1.3rem;
}

.comparison-table .table-header i.bi-check-circle-fill {
  color: #198754;
}

.comparison-table.competitors .table-header i.bi-x-circle {
  color: #dc3545;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-row:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
}

.feature-row.missing:hover {
  background: rgba(248, 249, 250, 0.8);
}

.feature-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.feature-row .feature-icon i.bi-check-circle-fill {
  color: #198754;
  font-size: 1.5rem;
}

.feature-row.missing .feature-icon i.bi-x-circle-fill {
  color: #dc3545;
  font-size: 1.5rem;
}

.feature-text strong {
  display: block;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-text span {
  color: var(--default-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
  background: rgba(255, 255, 255, 0.6);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

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

.testimonial-content {
  margin-bottom: 20px;
}

.quote-icon {
  margin-bottom: 15px;
}

.quote-icon i {
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.7;
}

.testimonial-content p {
  color: var(--default-color);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-info h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.author-info span {
  color: var(--default-color);
  font-size: 0.9rem;
}

.company-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #0056b3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.company-logo i {
  font-size: 1.2rem;
}

/* CTA Section */
.partner-cta {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.95), rgba(25, 135, 84, 0.95));
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.partner-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
  animation: bg-move 20s linear infinite;
}

@keyframes bg-move {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(60px) translateY(60px); }
}

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

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-actions .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.cta-actions .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-outline-primary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-actions .btn-outline-primary:hover {
  background: white;
  color: var(--accent-color);
  transform: translateY(-3px);
}

.cta-guarantees {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}

.guarantee-item i {
  font-size: 1.2rem;
  color: #ffc107;
}

.guarantee-item span {
  font-weight: 500;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float-shapes 6s ease-in-out infinite;
}

.bg-shape.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.bg-shape.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.bg-shape.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float-shapes {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .partner-animation {
    margin-top: 40px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .cta-guarantees {
    gap: 20px;
  }
  
  .cta-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .partner {
    padding: 60px 0;
  }
  
  .comparison-table {
    margin-bottom: 30px;
  }
  
  .feature-row {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 10px;
    align-self: center;
  }
  
  .partner-cta {
    padding: 40px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .guarantee-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}


/* Large industry cards styling */
.features-cards .feature-box.large-card {
  height: 100%;
  padding: 40px 30px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.12);
  transition: all 0.4s ease;
  text-align: center;
  border: 2px solid rgba(40, 167, 69, 0.1);
  min-height: 500px;
}

.features-cards .feature-box.large-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.18);
  border-color: rgba(40, 167, 69, 0.3);
}

.features-cards .feature-box.large-card .feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px auto;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.features-cards .feature-box.large-card:hover .feature-icon {
  background: rgba(40, 167, 69, 0.2);
  transform: scale(1.1);
}

.features-cards .feature-box.large-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2d465e;
}

.features-cards .feature-box.large-card p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #666;
  line-height: 1.7;
}

.features-cards .feature-box.large-card .industry-features {
  margin-top: 30px;
}

.features-cards .feature-box.large-card .industry-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.features-cards .feature-box.large-card .industry-features ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
}

.features-cards .feature-box.large-card .industry-features ul li i {
  color: #28a745;
  margin-right: 10px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .features-cards .feature-box.large-card {
    margin-bottom: 40px;
    min-height: auto;
    padding: 30px 20px;
  }
}

/* Enhanced About Section Styling */
.about .about-content p {
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
}

.about .mission-statement {
  /* background: var(--accent-color); */
  /* border-left: 4px solid var(--accent-color); */
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  position: relative;
}

.about .mission-statement i {
  font-size: 2rem;
  color: var(--accent-color);
  position: absolute;
  top: 10px;
  right: 15px;
}

.about .mission-statement p {
  margin: 0;
  font-style: italic;
  color: var(--accent-color);
}

.mission-attribution {
  text-align: right;
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}

/* Founders Section */
.about .founders-section {
  padding: 2rem;
  border-radius: 20px;
  position: relative;
}

.about .founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .about .founders-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.about .founder-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.about .founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about .founder-image {
  position: relative;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .founder-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 4px solid var(--accent-color);
}

.about .founder-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}

.about .founder-info h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.about .founder-role {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.75rem;
}

.about .founder-info p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.about .founder-highlights {
  display: flex;
  justify-content: center;
}

.about .highlight-item {
  background: rgba(40, 167, 69, 0.1);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.about .highlight-item i {
  font-size: 0.9rem;
}

/* Partnership Visual */
.about .partnership-visual {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  position: relative;
}

.about .partnership-line {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent, var(--accent-color));
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .partnership-icon {
  background: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.about .partnership-text {
  margin: 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .partnership-text strong {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .about .founders-section {
    margin-top: 2rem;
  }
}

/* Enhanced About Section Styling - Better Readability */
.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about .about-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.about .about-content p {
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.7;
  font-size: 1rem;
}

.about .about-content p:last-of-type {
  margin-bottom: 2rem;
}

/* Mission statement styling update */
.about .mission-statement {
  /* background: var(--accent-color); */
  /* border-left: 4px solid var(--accent-color); */
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  position: relative;
  /* box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3); */
}

.about .mission-statement i {
  font-size: 2rem;
  color: var(--accent-color);
  position: absolute;
  top: 10px;
  right: 15px;
  opacity: 0.8;
}

.about .mission-statement p {
  margin: 0;
  font-style: italic;
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 500;
}

/* About meta styling */
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  background: rgba(40, 167, 69, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Enhanced CTA Button Styles */
.btn-cta-highlight {
  background: linear-gradient(135deg, var(--accent-color) 0%, #20c997 100%);
  border: none;
  color: var(--contrast-color);
  padding: 1.5rem 3.5rem; /* Increased from 1rem 2.5rem */
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem; /* Increased from 1.1rem */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4); /* Increased shadow */
  animation: pulse-glow 2s ease-in-out infinite;
  z-index: 1;
  min-width: 300px; /* Ensure minimum width */
}

.btn-cta-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

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

.btn-cta-highlight:hover {
  background: linear-gradient(135deg, #20c997 0%, var(--accent-color) 100%);
  transform: translateY(-5px) scale(1.08); /* Increased scale and movement */
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.6); /* Bigger shadow on hover */
  color: var(--contrast-color);
}

.btn-cta-highlight:active {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

/* Pulse glow animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4), 0 0 0 0 rgba(40, 167, 69, 0.4);
  }
  50% {
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4), 0 0 0 15px rgba(40, 167, 69, 0); /* Bigger glow */
  }
  100% {
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4), 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* Icons inside the button - make them bigger too */
.btn-cta-highlight i {
  font-size: 1.4rem; /* Bigger icons */
}

/* Make the button more prominent on mobile */
@media (max-width: 768px) {
  .btn-cta-highlight {
    padding: 1.75rem 2.5rem; /* Bigger on mobile too */
    font-size: 1.2rem;
    width: 100%;
    max-width: 350px; /* Increased max-width */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: unset; /* Remove min-width on mobile */
  }
  
  .hero .hero-buttons {
    text-align: center;
  }
}

/* Additional visual emphasis for the CTA section */
.hero .hero-buttons {
  position: relative;
  margin-top: 2.5rem; /* More space above button */
}

.hero .hero-buttons::before {
  content: 'Start Your Journey Today!';
  position: absolute;
  top: -2.5rem; /* Adjusted for bigger button */
  left: 0;
  font-size: 1rem; /* Slightly bigger indicator text */
  color: var(--accent-color);
  font-weight: 600;
  animation: bounce-text 2s ease-in-out infinite;
}

@keyframes bounce-text {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px); /* Bigger bounce */
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Focus states for accessibility - bigger focus ring */
.btn-cta-highlight:focus {
  outline: 4px solid rgba(40, 167, 69, 0.5); /* Bigger outline */
  outline-offset: 3px;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4), 0 0 0 4px rgba(40, 167, 69, 0.3);
}

/* Hero section enhancements to accommodate bigger button */
.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2.5rem;
}

/* Add urgent messaging */
.hero .cta-urgency {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px; /* Bigger border radius */
  padding: 1.25rem; /* More padding */
  margin-bottom: 2rem; /* More margin */
  text-align: center;
}

.hero .cta-urgency p {
  margin: 0;
  color: #856404;
  font-weight: 600;
  font-size: 1rem; /* Slightly bigger text */
}

.hero .cta-urgency i {
  color: #ffc107;
  margin-right: 0.5rem;
  font-size: 1.2rem; /* Bigger icon */
}

.hero .hero-buttons {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 992px) {
  .hero .hero-buttons {
    justify-content: center;
    text-align: center;
  }
}

/* Client Testimonials - Specific Styling */
#client-testimonials.testimonials {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.03) 0%, rgba(248, 249, 250, 1) 50%, rgba(0, 123, 255, 0.03) 100%);
}

/* Client Testimonials Swiper Container */
.client-testimonials-swiper {
  padding: 2rem 0 4rem 0;
  overflow: hidden;
  position: relative;
}

/* Add fade masks for client testimonials */
.client-testimonials-swiper::before,
.client-testimonials-swiper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}

.client-testimonials-swiper::before {
  left: 0;
  background: linear-gradient(90deg, var(--background-color) 0%, transparent 100%);
}

.client-testimonials-swiper::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--background-color) 100%);
}

.client-testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Client Testimonial Item - Enhanced Styling */
.client-testimonial-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.12);
  border: 1px solid rgba(0, 123, 255, 0.1);
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.client-testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.3);
}

/* Client Badge */
.client-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Client Avatar with Initials */
.client-testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid rgba(0, 123, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

/* Client Testimonial Image */
.client-testimonial-item .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid rgba(0, 123, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

/* Client Name */
.client-testimonial-item h3 {
  color: #007bff;
  font-weight: 700;
  font-size: 18px;
  margin: 10px 0 5px 0;
}

/* Client Position */
.client-testimonial-item h4 {
  color: #6c757d;
  font-style: italic;
  font-size: 14px;
  margin: 0 0 15px 0;
  font-weight: 500;
}

/* Stars for Client Testimonials */
.client-testimonial-item .stars {
  margin: 15px 0;
}

.client-testimonial-item .stars i {
  color: #ffc107;
  margin: 0 2px;
  font-size: 16px;
}

/* Quote Icons for Client Testimonials */
.client-testimonial-item .quote-icon-left,
.client-testimonial-item .quote-icon-right {
  color: #007bff;
  font-size: 24px;
  line-height: 0;
  opacity: 0.6;
}

.client-testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
  margin-right: 10px;
}

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

/* Client Testimonial Content */
.client-testimonial-item p {
  font-style: italic;
  margin: 20px 0 0 0;
  padding: 0;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  clear: both;
}

/* Client Testimonial Date */
.client-testimonial-item .testimonial-date {
  margin-top: 1rem;
  color: #6c757d;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

/* Client Testimonials Swiper Navigation */
.client-testimonials-swiper .swiper-button-next,
.client-testimonials-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #007bff;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  opacity: 0.8;
  z-index: 15;
}

.client-testimonials-swiper .swiper-button-next:hover,
.client-testimonials-swiper .swiper-button-prev:hover {
  opacity: 1;
  transform: scale(1.1);
  background: color-mix(in srgb, #007bff, black 15%);
}

.client-testimonials-swiper .swiper-button-next::after,
.client-testimonials-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

/* Client Testimonials Swiper Pagination */
.client-testimonials-swiper .swiper-pagination {
  bottom: 10px;
  text-align: center;
  z-index: 15;
}

.client-testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, #007bff, transparent 60%);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.client-testimonials-swiper .swiper-pagination-bullet-active {
  background: #007bff;
  transform: scale(1.3);
}

/* Client Testimonials Controls */
#client-testimonials .testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  position: relative;
  z-index: 15;
}

#client-testimonials .testimonials-controls .control-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #007bff;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 2px solid transparent;
}

#client-testimonials .testimonials-controls .control-item:hover {
  background: rgba(0, 123, 255, 0.1);
  border-color: rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

#client-testimonials .testimonials-controls .control-item i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

#client-testimonials .testimonials-controls .control-item:hover i {
  transform: scale(1.2);
}

/* Responsive Design for Client Testimonials */
@media (max-width: 768px) {
  .client-testimonial-item {
    padding: 1.5rem;
    margin: 0 10px;
  }
  
  .client-testimonial-item .testimonial-img,
  .client-testimonial-avatar {
    width: 60px;
    height: 60px;
  }
  
  .client-testimonial-avatar {
    font-size: 18px;
  }
  
  #client-testimonials .testimonials-controls {
    gap: 1.5rem;
  }
  
  #client-testimonials .testimonials-controls .control-item {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .client-testimonials-swiper .swiper-button-next,
  .client-testimonials-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .client-testimonials-swiper .swiper-button-next::after,
  .client-testimonials-swiper .swiper-button-prev::after {
    font-size: 14px;
  }
  
  /* Reduce fade width on mobile */
  .client-testimonials-swiper::before,
  .client-testimonials-swiper::after {
    width: 30px;
  }
}

@media (max-width: 576px) {
  .client-testimonials-swiper {
    padding: 1.5rem 0 3rem 0;
  }
  
  .client-testimonial-item {
    padding: 1.25rem;
  }
  
  #client-testimonials .testimonials-controls {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  /* Hide navigation arrows on very small screens */
  .client-testimonials-swiper .swiper-button-next,
  .client-testimonials-swiper .swiper-button-prev {
    display: none;
  }
  
  .client-testimonials-swiper::before,
  .client-testimonials-swiper::after {
    width: 20px;
  }
}

/* Animation for client testimonial items */
@keyframes client-testimonial-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-testimonial-item {
  animation: client-testimonial-fade-in 0.6s ease-out;
}

/* Autoplay pause on hover for client testimonials */
.client-testimonials-swiper:hover .swiper-slide {
  animation-play-state: paused;
}