/* Move all @import rules to the top of the file

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: linear-gradient(135deg, #fff3e6 0%, #ffb380 50%, #ff751a 100%); /* More intense orange gradient */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #663300; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff6600; /* Accent color changed to orange */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections */
  --contrast-color: #ffffff; /* Contrast color for text */
}

/* 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: #ff6600; /* Changed to orange */
  --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: #ff6600; /* Changed to orange */
}

/* 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: rgba(255, 230, 204, 0.8); /* Warmer orange tint */
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: rgba(255, 102, 0, 0.95); /* More solid orange */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #ff8533; /* Lighter orange */
  --contrast-color: #ffffff;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scroll-snap-type: y proximity;
}

body {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background: var(--background-color);
  font-family: var(--default-font);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure headings use the correct font */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

/* Navigation font */
.navbar, .navmenu {
  font-family: var(--nav-font);
  font-weight: 500;
}

section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  background: rgba(255, 245, 238, 0.4); /* Lighter, more transparent section background */
}

section.light-background {
  background: var(--background-color);
}

section.dark-background {
  background: var(--background-color);
}

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

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

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

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

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

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

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

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

.header.sticked {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .logo:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header .logo .logo-img {
  height: 60px !important;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.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: 8px;
  transition: 0.3s;
  padding: 8px 20px;
  margin-left: 20px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 146, 72, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 146, 72, 0.2);
  position: relative;
  overflow: hidden;
  animation: subtleGlow 4s ease-in-out infinite;
}

.header .btn-getstarted::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.8s ease;
}

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

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: rgba(255, 146, 72, 1);
  box-shadow: 0 8px 20px rgba(255, 146, 72, 0.3);
  transform: translateY(-1px);
  animation: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.header .btn-getstarted:active {
  transform: translateY(0px);
  transition: all 0.1s ease;
}

@keyframes subtleGlow {
  0%, 100% {
    box-shadow: 0 5px 15px rgba(255, 146, 72, 0.2);
  }
  50% {
    box-shadow: 0 5px 20px rgba(255, 146, 72, 0.3);
  }
}

@keyframes btnFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
    position: relative;
  }

  /* Show 'Book Demo' on small screens */
  @media (max-width: 991px) {
    .header .btn-getstarted::after {
      content: 'Book Demo';
      display: inline-block;
    }
    
    .header .btn-getstarted span {
      display: none;
    }
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 575px) {
  .header .logo .logo-img {
    height: 30px;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0);
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #ff9248;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

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

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

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

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

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

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

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

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

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

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--default-color);
    font-size: 26px;
    line-height: 1;
    margin-right: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 146, 72, 0.2);
    z-index: 10001;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav-toggle:hover {
    background: rgba(255, 146, 72, 0.15);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(255, 146, 72, 0.3);
  }

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 380px);
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12), -2px 0 8px rgba(0, 0, 0, 0.08);
    padding: 90px 0 30px 0;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    z-index: 10000;
    border-left: 4px solid transparent;
    border-image: linear-gradient(135deg, var(--accent-color), #ffb347) 1;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    padding: 18px 30px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    letter-spacing: 0.3px;
    line-height: 1.4;
  }

  .navmenu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, rgba(255, 146, 72, 0.1) 0%, rgba(255, 179, 71, 0.05) 100%);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
  }

  .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(--accent-color);
    padding-left: 34px;
    transform: translateX(4px);
    font-weight: 600;
  }

  .navmenu a:hover::before,
  .navmenu .active::before {
    width: 100%;
  }

  .navmenu a:hover::after,
  .navmenu .active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(135deg, var(--accent-color), #ffb347);
    border-radius: 0 3px 3px 0;
  }

  .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: var(--accent-color);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent-color);
    transform: scale(1.1);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    z-index: 9999;
  }

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

  /* Mobile menu close button */
  .mobile-nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: rgba(255, 146, 72, 0.1);
    border: 2px solid rgba(255, 146, 72, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10001;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(255, 146, 72, 0.2);
  }

  .mobile-nav-close:hover {
    background: linear-gradient(135deg, var(--accent-color), #ffb347);
    color: white;
    transform: rotate(90deg) scale(1.1);
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(255, 146, 72, 0.4);
  }

  /* Mobile demo button inside menu */
  .mobile-demo-btn {
    margin: 30px 0 20px 0;
    padding: 0 25px;
  }

  .btn-getstarted-mobile {
    display: block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffb347 100%);
    color: white;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(255, 146, 72, 0.25);
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }

  .btn-getstarted-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
  }

  .btn-getstarted-mobile:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 146, 72, 0.4);
    color: white;
  }

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

  .btn-getstarted-mobile:active {
    transform: translateY(-1px) scale(0.98);
  }

  /* Additional responsive breakpoints */
  @media (max-width: 480px) {
    .navmenu ul {
      width: 90vw;
      padding: 80px 0 30px 0;
    }

    .navmenu a,
    .navmenu a:focus {
      padding: 16px 25px;
      font-size: 16px;
    }

    .mobile-nav-close {
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      font-size: 20px;
    }

    .mobile-demo-btn {
      padding: 0 20px;
    }

    .btn-getstarted-mobile {
      padding: 14px 24px;
      font-size: 15px;
    }
  }

  @media (max-width: 360px) {
    .navmenu ul {
      width: 95vw;
    }

    .navmenu a,
    .navmenu a:focus {
      padding: 14px 20px;
      font-size: 15px;
    }

    .mobile-demo-btn {
      padding: 0 15px;
    }
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
  font-size: 14px;
  position: relative;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.footer .footer-top {
  padding: 60px 0 40px 0;
  position: relative;
}

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

.footer .footer-about .logo img {
  max-height: 50px;
  margin-right: 8px;
  filter: brightness(1.2);
}

.footer .footer-about .logo span {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer .footer-about p {
  font-size: 15px;
  font-family: var(--heading-font);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.footer .social-links a:hover {
  color: #ffffff;
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.footer h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  color: #ffffff;
  margin-bottom: 25px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

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

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

.footer .footer-links ul i {
  padding-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

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

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  line-height: 1;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.footer .footer-contact p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
}

.footer .footer-contact p i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 16px;
}

.footer .copyright {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
}

.footer .copyright p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
@keyframes heroOrangeToLight {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 260px 0 60px 0; /* Increased top padding for more space below navbar */
  background: linear-gradient(270deg, #ff9248 0%, #fff3e0 100%);
  background-size: 200% 200%;
  animation: heroOrangeToLight 8s ease-in-out infinite;
}

/* Pattern Overlay */
.hero:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.5;
  z-index: 1;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  }
  100% {
    background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px;
  }
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 146, 72, 0.3) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 30%, transparent 70%);
  width: 100%;
  height: 100%;
  transform: rotate(-15deg);
  animation: shine 10s linear infinite;
  z-index: 2;
}

/* Ensure content stays above patterns */
.hero .container {
  position: relative;
  z-index: 3;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 2rem;
}

/* Add subtle floating animation to the hero image */
.hero .hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: float 6s ease-in-out infinite;
  margin-top: -3rem;
}

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

.hero .capsule-logo {
  max-width: 100%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 2rem 0;
}

/* Add subtle shine effect */
.hero:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    transparent 70%
  );
  transform: rotate(-15deg);
  animation: shine 10s linear infinite;
  z-index: 2;
}

@keyframes shine {
  0% {
    transform: rotate(-15deg) translateY(0);
  }
  50% {
    transform: rotate(-15deg) translateY(-10%);
  }
  100% {
    transform: rotate(-15deg) translateY(0);
  }
}

/* Make text more visible against the gradient */
.hero .hero-content h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero .hero-content .accent-text {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.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 {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 500;
  backdrop-filter: blur(5px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.hero .hero-image img:hover {
  transform: translateY(-10px);
}

.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: -6rem !important;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.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: 1.5px 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: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# 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 !important;
  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: 1 !important;
  filter: none !important;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  filter: none !important;
  opacity: 1 !important;
}

.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 {
  text-align: center;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ff8533);
  transition: left 0.6s ease;
}

.testimonials .testimonial-item:hover::before {
  left: 0;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 102, 0, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.testimonials .testimonial-item .testimonial-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 120px;
  margin: 0 auto 15px auto;
  display: block;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.testimonials .testimonial-item:hover .testimonial-img {
  transform: none;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.testimonials .testimonial-item:hover h3 {
  color: var(--accent-color);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  transition: color 0.3s ease;
}

.testimonials .testimonial-item:hover h4 {
  color: #ff8533;
}

.testimonials .testimonial-item .stars {
  color: #ffc107;
  margin: 10px 0;
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .stars {
  transform: scale(1.1);
  color: #ff6600;
}

.testimonials .testimonial-item .stars i {
  font-size: 18px;
  margin: 0 2px;
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .stars i {
  animation: starPulse 0.6s ease-in-out;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 26px;
  line-height: 0;
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .quote-icon-left,
.testimonials .testimonial-item:hover .quote-icon-right {
  color: #ff8533;
  transform: scale(1.2);
}

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover p {
  color: #333;
  font-weight: 500;
}

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

.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;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact .info-item .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products .product-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 50px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 2px solid var(--accent-color);
  opacity: 0.1;
  pointer-events: none;
}

.products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.products .product-card:hover::before {
  opacity: 0.2;
}

.products .product-logo {
  margin-bottom: 20px;
  text-align: center;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products .product-logo img {
  max-height: 400px;
  max-width: 400px;
  object-fit: contain;
}

.products .product-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.products .product-card p {
  font-size: 15px;
  margin-bottom: 20px;
  color: var(--default-color);
  line-height: 1.5;
  flex-grow: 1;
  padding: 0 15px;
}

.products .product-card .btn-getstarted {
  align-self: center;
  margin-top: auto;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.products .product-card .btn-getstarted:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.view-more-btn {
  background: #ff9248;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 146, 72, 0.2);
  position: relative;
  overflow: hidden;
}

.view-more-btn:hover {
  background: #ff7a1f;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 146, 72, 0.3);
}

.view-more-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 146, 72, 0.2);
}

.view-more-btn i {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.view-more-btn:hover i {
  transform: translateY(4px);
}

/* Products section highlight animation */
@keyframes highlightSection {
  0% {
    background-color: transparent;
  }
  20% {
    background-color: rgba(255, 146, 72, 0.1);
  }
  100% {
    background-color: transparent;
  }
}

.highlight-section {
  animation: highlightSection 1.5s ease-out;
}

/* Smooth scroll behavior for entire page */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Adjust based on your header height */
}

/* Add more space above the View More Products button */
.hero .view-more-products-container {
  margin-top: 2rem !important;
}

.products .product-card:first-child p {
  margin-top: 32px;
}

.products .product-card:first-child .product-logo img {
  max-height: 200px;
  max-width: 200px;
}

.hero .hero-content {
  margin-top: -6rem;
}

.products .product-logo img[src$="our-staff.png"] {
  max-width: 70px !important;
  max-height: 70px !important;
}

.products .product-logo img[src$="howhappy.png"] {
  max-width: 70px !important;
  max-height: 70px !important;
}

/* Custom: Make hero badge and main heading navy blue */
.hero .company-badge {
  color: #001f4d !important;
}
.hero .hero-content h1 {
  color: #001f4d !important;
}

/* Custom: Increase Product 2 (BeautifulYou) logo size */
.products .product-logo img[src*="beautifulyoutoday-logo.png"] {
  max-width: 300px !important;
  max-height: 300px !important;
}

/* Modern Feature Cards Styling */
.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ff8533, var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff8533 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.feature-card:hover .feature-icon::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.feature-icon i {
  font-size: 32px;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.feature-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
}

.feature-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.feature-list li:hover {
  transform: translateX(5px);
  color: var(--accent-color);
}

.feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-card {
    padding: 25px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 28px;
  }
  
  .feature-content h4 {
    font-size: 20px;
  }
}

/* Advanced Capability Cards Styling */
.capability-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff8533 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.capability-card:hover::before {
  opacity: 0.05;
}

.capability-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.capability-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff8533 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.capability-card:hover .capability-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}

.capability-icon i {
  font-size: 36px;
  color: #ffffff;
}

.capability-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.capability-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.capability-stats {
  position: relative;
  z-index: 2;
}

.capability-stats .stat {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 5px;
}

.capability-stats .stat-label {
  font-size: 12px;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Mobile Features Styling */
.mobile-feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mobile-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), #ff8533);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.mobile-feature-item:hover::before {
  transform: scaleX(1);
}

.mobile-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.3);
}

.mobile-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff8533 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mobile-feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.mobile-feature-item:hover .mobile-feature-icon::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.mobile-feature-icon i {
  font-size: 24px;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.mobile-feature-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
}

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

/* Enhanced phone mockup styling */
.features-2 .phone-mockup {
  position: relative;
  padding: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.features-2 .phone-mockup img {
  max-width: 400px !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  display: block !important;
  margin: 0 auto !important;
  object-fit: contain;
  background: transparent !important;
}

.features-2 .phone-mockup:hover img {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
  .features-2 .phone-mockup img {
    max-width: 300px !important;
    width: 100% !important;
  }
  
  .features-2 .phone-mockup {
    padding: 20px;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .features-2 .phone-mockup img {
    max-width: 250px !important;
    width: 100% !important;
  }
  
  .features-2 .phone-mockup {
    padding: 15px;
    margin-top: 20px;
    min-height: 250px;
  }
}

/* Responsive adjustments for other sections */
@media (max-width: 768px) {
  .capability-card {
    padding: 25px 20px;
  }
  
  .capability-icon {
    width: 60px;
    height: 60px;
  }
  
  .capability-icon i {
    font-size: 28px;
  }
  
  .capability-stats .stat {
    font-size: 28px;
  }
  
  .mobile-feature-item {
    padding: 20px;
  }
  
  .mobile-feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .mobile-feature-icon i {
    font-size: 20px;
  }
}

/* Modern Mobile Features Styling */
.mobile-feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ff8533);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.mobile-feature-card:hover::before {
  transform: scaleX(1);
}

.mobile-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 102, 0, 0.3);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff8533 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.testimonials.section {
  background: #ffd6ad; /* Darker light orange */
}

/* Logo Highlight Section Styles */
.logo-highlight-section {
  position: relative;
  overflow: hidden;
}

.logo-highlight-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shine-effect 3s infinite;
}

@keyframes shine-effect {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.logo-highlight-section .logo-item {
  position: relative;
  padding: 15px;
  border-radius: 15px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.logo-highlight-section .logo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: left 0.6s ease;
}

.logo-highlight-section .logo-item:hover::before {
  left: 100%;
}

.logo-highlight-section .logo-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.4);
}

.logo-highlight-section .logo-item img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.logo-highlight-section .logo-item:hover img {
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.2)) brightness(1.1) contrast(1.15);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .logo-highlight-section {
    padding: 25px 0;
  }
  
  .logo-highlight-section h3 {
    font-size: 1.2rem !important;
    margin-bottom: 20px !important;
  }
  
  .logo-highlight-section .d-flex {
    gap: 25px !important;
    padding: 15px !important;
  }
  
  .logo-highlight-section .logo-item img {
    height: 80px !important;
    max-width: 250px !important;
  }
}

@media (max-width: 576px) {
  .logo-highlight-section .d-flex {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .logo-highlight-section .logo-item img {
    height: 70px !important;
    max-width: 220px !important;
  }
}

/* Web App Showcase styling */
.web-app-showcase {
  position: relative;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  overflow: visible;
}

.web-app-showcase img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  background: transparent !important;
  display: block !important;
  margin: 0 auto !important;
  object-fit: contain;
}

/* Enhanced Clients Section */
.clients.section {
  background: #ffffff !important;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.client-logo {
  max-height: 80px;
  max-width: 160px;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .clients-grid {
    gap: 30px;
  }
  
  .client-logo {
    max-height: 60px;
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .clients-grid {
    gap: 20px;
  }
  
  .client-logo {
    max-height: 50px;
    max-width: 100px;
  }
}

/* Enhanced Clients Section with Slider */
.clients.section {
  background: #ffffff !important;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.clients-slider {
  position: relative;
  padding: 20px 0 50px 0;
}

.clients-slider .swiper-wrapper {
  align-items: center;
}

.clients-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.clients-slider .swiper-slide img {
  max-height: 80px;
  max-width: 160px;
  transition: all 0.3s ease;
  opacity: 1;
  cursor: pointer;
}

.clients-slider .swiper-slide:hover img {
  transform: scale(1.1);
}

/* Swiper Navigation */
.clients-slider .swiper-button-next,
.clients-slider .swiper-button-prev {
  color: #ff6600;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.clients-slider .swiper-button-next:hover,
.clients-slider .swiper-button-prev:hover {
  background: #ff6600;
  color: white;
  transform: scale(1.1);
}

.clients-slider .swiper-button-next::after,
.clients-slider .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Swiper Pagination */
.clients-slider .swiper-pagination {
  position: relative;
  bottom: -30px;
}

.clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #ff6600;
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .clients-slider .swiper-slide img {
    max-height: 60px;
    max-width: 120px;
  }
  .clients-slider .swiper-button-next,
  .clients-slider .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  .clients-slider .swiper-button-next::after,
  .clients-slider .swiper-button-prev::after {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .clients-slider .swiper-slide img {
    max-height: 50px;
    max-width: 100px;
  }
}

.innovative-badge {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 14px 32px 14px 24px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  animation: badge-glow 2.5s infinite alternate;
}

@keyframes badge-glow {
  0% {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  }
  100% {
    box-shadow: 0 0 32px 8px rgba(0, 204, 255, 0.18);
  }
}

.pulse-icon {
  color: #ff3366;
  font-size: 1.6em;
  margin-right: 10px;
  animation: pulse-heart 1.2s infinite;
}

@keyframes pulse-heart {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 #ff3366);
  }
  50% {
    transform: scale(1.18);
    filter: drop-shadow(0 0 8px #ff3366);
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 #ff3366);
  }
}
/* committed by Manav Arya Singh */

.demo-form-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f3f6fb 100%);
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
}
.demo-form-card {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.demo-form-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff6600;
  background: #fff6f0;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid #ff6600;
  box-shadow: 0 2px 8px rgba(255,102,0,0.04);
  letter-spacing: 0.5px;
}
.demo-form-floating {
  position: relative;
  margin-bottom: 1.5rem;
}
.demo-form-floating input,
.demo-form-floating select {
  border-radius: 12px;
  border: 1.5px solid #e0e0e0;
  background: #f9f9fb;
  box-shadow: none;
  padding: 1.25rem 1.25rem 1.25rem 2.8rem;
  font-size: 1.08rem;
  transition: border-color 0.2s, background 0.2s;
}
.demo-form-floating input:focus,
.demo-form-floating select:focus {
  border-color: #ff6600;
  background: #fff;
}
.demo-form-floating label {
  position: absolute;
  top: 50%;
  left: 2.8rem;
  transform: translateY(-50%);
  color: #888;
  font-size: 1.08rem;
  pointer-events: none;
  transition: 0.2s;
  background: transparent;
  padding: 0 0.25rem;
}
.demo-form-floating input:not(:placeholder-shown) + label,
.demo-form-floating input:focus + label,
.demo-form-floating select:focus + label,
.demo-form-floating select:not([value=""]):not(:focus) + label {
  top: 0.3rem;
  left: 2.5rem;
  font-size: 0.92rem;
  color: #ff6600;
  background: #fff6f0;
  border-radius: 6px;
  padding: 0 0.3rem;
}
.demo-form-icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: #ff6600;
  font-size: 1.25rem;
  pointer-events: none;
  opacity: 0.85;
}
.demo-form-check-label {
  font-weight: 400;
  color: #444;
  margin-left: 0.5rem;
}
.demo-form-btn {
  background: linear-gradient(90deg, #ff6600 0%, #ffb347 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.85rem 2.7rem;
  font-size: 1.13rem;
  box-shadow: 0 2px 12px rgba(255, 102, 0, 0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  position: relative;
  overflow: hidden;
}
.demo-form-btn:active {
  transform: scale(0.97);
}
.demo-form-btn:hover {
  background: linear-gradient(90deg, #ffb347 0%, #ff6600 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.16);
}
.demo-form-divider {
  height: 2px;
  background: linear-gradient(90deg, #ff6600 0%, #ffb347 100%);
  border: none;
  margin: 2.5rem 0 2rem 0;
  border-radius: 2px;
  opacity: 0.18;
}
@media (max-width: 768px) {
  .demo-form-card .card-body {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .demo-form-section-title {
    font-size: 1.08rem;
    padding: 0.6rem 0.7rem;
  }
}
/* committed by Manav Arya Singh */

/* Abstract background blob */
.demo-form-bg-blob {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 340px;
  background: radial-gradient(circle at 60% 40%, #ffb347 0%, #ff6600 60%, transparent 100%);
  opacity: 0.18;
  z-index: 0;
  filter: blur(24px);
  pointer-events: none;
}

/* Section fade-in animation */
.demo-form-fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.39,.575,.565,1), transform 0.7s cubic-bezier(.39,.575,.565,1);
}
.demo-form-fadein.visible {
  opacity: 1;
  transform: none;
}

/* Custom checkboxes/radios */
.demo-form-check-label {
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  user-select: none;
}
.demo-form-check-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.demo-form-check-label:before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 6px;
  background: #f9f9fb;
  border: 2px solid #ffb347;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,102,0,0.07);
}
.demo-form-check-input:checked + .demo-form-check-label:before {
  border-color: #ff6600;
  background: linear-gradient(90deg, #ffb347 0%, #ff6600 100%);
}
.demo-form-check-label:after {
  content: '';
  position: absolute;
  left: 0.55rem;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 3px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}
.demo-form-check-input:checked + .demo-form-check-label:after {
  opacity: 1;
}
/* Custom radio */
.demo-form-check-input[type="radio"] + .demo-form-check-label:before {
  border-radius: 50%;
}
.demo-form-check-input[type="radio"] + .demo-form-check-label:after {
  border-radius: 50%;
}

/* Button ripple effect */
.demo-form-btn {
  position: relative;
  overflow: hidden;
}
.demo-form-btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  background: rgba(255,255,255,0.5);
  pointer-events: none;
}
@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Real-time validation feedback */
.demo-form-input:valid {
  border-color: #3ecf8e;
  background: #f6fff9;
}
.demo-form-input:invalid:focus {
  border-color: #ff3366;
  background: #fff6f8;
}
.demo-form-input:valid ~ .valid-feedback {
  display: block;
}
.demo-form-input:invalid:focus ~ .invalid-feedback {
  display: block;
}
.valid-feedback, .invalid-feedback {
  display: none;
  font-size: 0.95em;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
}
.valid-feedback {
  color: #3ecf8e;
}
.invalid-feedback {
  color: #ff3366;
}
/* committed by Manav Arya Singh */

/* Progress Bar Styles */
.progress-container {
  margin-bottom: 2rem;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
}

.step-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: linear-gradient(90deg, #ff6600 0%, #ffb347 100%);
  color: white;
  border-color: #ff6600;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.progress-step.active .step-label {
  color: #ff6600;
  font-weight: 600;
}

.progress-bar-wrapper {
  position: relative;
  margin-top: 1rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6600 0%, #ffb347 100%);
  border-radius: 4px;
  width: 0%;
  transition: width 0.6s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-text {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

@media (max-width: 768px) {
  .progress-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .progress-steps::before {
    display: none;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  .step-label {
    font-size: 11px;
  }
}

.sketchy-input .form-control.demo-form-input {
  border: 2.5px solid #222;
  border-radius: 18px;
  font-size: 1.35rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  background: #fff;
  box-shadow: none;
  padding: 1.1rem 1.5rem 1.1rem 1.5rem;
  margin-bottom: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sketchy-input .form-control.demo-form-input:focus {
  border-color: #ff6600;
  box-shadow: 0 0 0 2px #ffb34744;
  background: #fffef8;
}

.sketchy-label {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
  text-transform: none;
  padding-left: 0.1rem;
}

.sketchy-input label {
  left: 1.5rem;
  top: 0.2rem;
  transform: none;
  background: transparent;
  pointer-events: none;
  padding: 0;
}

@media (max-width: 768px) {
  .sketchy-label {
    font-size: 1.05rem;
  }
  .sketchy-input .form-control.demo-form-input {
    font-size: 1.05rem;
    padding: 0.8rem 1rem 0.8rem 1rem;
  }
  .sketchy-input label {
    left: 1rem;
  }
}

input.no-spinner::-webkit-outer-spin-button,
input.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.no-spinner[type=number] {
  -moz-appearance: textfield;
}

.country-phone-group {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.country-phone-group .form-select.country-code-select {
  max-width: 80px !important;
  min-width: 70px;
  font-size: 1.08rem;
  font-family: inherit;
  padding-right: 0.5rem;
  background-position-x: 95%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.country-phone-group .country-phone-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
  border-color: #ced4da;
  background: #fff;
  height: 100%;
  box-shadow: none;
  z-index: 2;
}

.country-phone-group .form-select.country-code-select:focus,
.country-phone-group .country-phone-input:focus {
  border-color: #ff6600;
  box-shadow: 0 0 0 2px #ffb34744;
  background: #fffef8;
}

.country-phone-group label[for="preferredContact"] {
  left: 1.2rem;
  top: -0.7rem;
  background: #fff;
  padding: 0 0.4rem;
  font-size: 1rem;
  color: #888;
  z-index: 3;
  position: absolute;
  pointer-events: none;
  transition: 0.2s;
}

.country-phone-group:focus-within label[for="preferredContact"] {
  color: #ff6600;
}

@media (max-width: 600px) {
  .country-phone-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .country-phone-group .form-select.country-code-select,
  .country-phone-group .country-phone-input {
    border-radius: 8px !important;
    border: 1px solid #ced4da;
    margin-bottom: 0.3rem;
  }
  .country-phone-group .form-select.country-code-select {
    border-bottom-right-radius: 8px !important;
    border-top-right-radius: 8px !important;
    border-right: 1px solid #ced4da;
  }
  .country-phone-group .country-phone-input {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
    border-left: 1px solid #ced4da;
  }
  .country-phone-group label[for="preferredContact"] {
    left: 1.2rem;
    top: -0.7rem;
  }
}

.country-code-select option {
  font-size: 1.08rem;
  font-family: inherit;
}

.country-phone-group.demo-form-floating label[for="preferredContact"] {
  position: absolute;
  left: 110px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  padding: 0 0.4rem;
  font-size: 1.08rem;
  color: #888;
  z-index: 3;
  pointer-events: none;
  transition: 0.2s;
  width: auto;
  max-width: 90%;
}

.country-phone-group.demo-form-floating input:focus + label[for="preferredContact"],
.country-phone-group.demo-form-floating input:not(:placeholder-shown) + label[for="preferredContact"] {
  top: -0.7rem;
  left: 1.2rem;
  background: #fff;
  font-size: 0.95rem;
  color: #ff6600;
  padding: 0 0.4rem;
  transform: none;
}

.country-phone-input {
  padding-left: 1rem;
}

@media (max-width: 600px) {
  .country-phone-group.demo-form-floating label[for="preferredContact"] {
    left: 1.2rem;
    top: 50%;
    max-width: 95%;
    transform: translateY(-50%);
  }
  .country-phone-group.demo-form-floating input:focus + label[for="preferredContact"],
  .country-phone-group.demo-form-floating input:not(:placeholder-shown) + label[for="preferredContact"] {
    top: -0.7rem;
    left: 1.2rem;
    background: #fff;
    font-size: 0.95rem;
    color: #ff6600;
    padding: 0 0.4rem;
    transform: none;
  }
}

.country-phone-group.demo-form-floating input:focus + label[for="preferredContact"],
.country-phone-group.demo-form-floating input:not(:placeholder-shown) + label[for="preferredContact"] {
  top: -0.7rem;
  left: 120px;
  background: #fff;
  font-size: 0.95rem;
  color: #ff6600;
  padding: 0 0.6rem;
  transform: none;
  z-index: 5;
}
@media (max-width: 600px) {
  .country-phone-group.demo-form-floating input:focus + label[for="preferredContact"],
  .country-phone-group.demo-form-floating input:not(:placeholder-shown) + label[for="preferredContact"] {
    left: 90px;
    padding: 0 0.5rem;
  }
}

@media (max-width: 768px) {
  .demo-form-section .row.demo-form-fadein {
    padding: 1.2rem 0.5rem;
    row-gap: 1rem;
  }
  .demo-form-floating input,
  .demo-form-floating label,
  .demo-form-floating .demo-form-icon {
    font-size: 1.08em;
    min-height: 48px;
  }
  .demo-form-btn {
    font-size: 1.1em;
    padding: 0.9em 2.2em;
    min-height: 48px;
  }
  .country-phone-group .country-phone-input {
    min-height: 48px;
    font-size: 1.08em;
  }
}

.demo-form-bg-flow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #fff 0%, #fff3e6 30%, #ffb347 70%, #ff6600 100%);
  overflow: hidden;
}
.demo-form-bg-flow svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 180px;
  display: block;
}
.demo-form-section {
  position: relative;
  z-index: 1;
}
.demo-form-bg-flow svg .wave1 {
  animation: waveMove1 8s linear infinite;
}
.demo-form-bg-flow svg .wave2 {
  animation: waveMove2 12s linear infinite;
}
@keyframes waveMove1 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-120px); }
}
@keyframes waveMove2 {
  0% { transform: translateX(0); }
  100% { transform: translateX(120px); }
}

.capability-card:active {
  transform: scale(0.97) translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.18);
}

.capability-card:hover {
  transform: translateY(-18px) scale(1.04);
  box-shadow: 0 30px 60px rgba(255, 102, 0, 0.18), 0 2px 8px rgba(0,0,0,0.08);
  border-color: #ffb347;
}

.capability-card .capability-icon {
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}

.capability-card:hover .capability-icon {
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 18px 36px rgba(255, 179, 71, 0.18);
}

/* Ripple effect for capability cards */
.capability-card .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  background: rgba(255,179,71,0.18);
  pointer-events: none;
  z-index: 10;
}
@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.icon-box-clickable {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: border-color 0.2s, background 0.2s;
  padding: 0;
}
.icon-box-clickable i {
  font-size: 22px;
  color: var(--accent-color);
}
.icon-box-clickable:focus, .icon-box-clickable:hover {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.leader-img {
  border: none !important;
  border-radius: 0 !important;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.bio-modal-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  width: 180px;
  margin: 0 auto 18px auto;
  background: #fff6f0;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(255, 102, 0, 0.10), 0 1.5px 8px rgba(20, 33, 61, 0.08);
  position: relative;
}
.bio-modal-photo img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  background: #ffe5cc;
  box-shadow: 0 2px 12px rgba(255, 102, 0, 0.08);
  display: block;
}

.contact .info-item:last-child > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  height: 3.5rem;
}
.contact .info-item:last-child .content {
  justify-content: center;
}
