/* :root {
  --theme-color-0: rgb(156, 82, 253);
  --theme-color-1: rgb(255, 255, 255);
  --theme-color-2: rgb(44, 73, 100);
  --theme-color-3: rgb(123, 39, 216);
  --theme-color-4: rgb(68, 68, 68);
  --theme-color-5: rgb(133, 119, 251);
  --theme-color-6: rgb(85, 78, 110);
  --theme-color-7: rgb(0, 0, 0);
  --theme-color-8: rgb(95, 84, 137);
  --theme-color-9: rgb(196, 48, 43);
} */

:root {
  --theme-color-0: 59, 130, 246;
  /* Modern blue - primary */
  --theme-color-1: 255, 255, 255;
  /* White - backgrounds */
  --theme-color-2: 51, 65, 85;
  /* Slate dark - text */
  --theme-color-3: 37, 99, 235;
  /* Deep blue - accent */
  --theme-color-4: 71, 85, 105;
  /* Slate gray - secondary text */
  --theme-color-5: 30, 64, 175;
  /* Deep blue - hover states */
  --theme-color-6: 148, 163, 184;
  /* Light slate - borders */
  --theme-color-7: 15, 23, 42;
  /* Almost black - dark text */
  --theme-color-8: 100, 116, 139;
  /* Medium slate - muted text */
  --theme-color-9: 239, 68, 68;
  /* Red - error/accent */
}

body {
  font-family: "Open Sans", sans-serif;
  color: rgba(var(--theme-color-4), 1);
}

a {
  color: rgba(var(--theme-color-0), 1);
  text-decoration: none;
}

a.mail {
  color: rgba(var(--theme-color-1), 1);
}

a.mail:hover {
  color: rgba(var(--theme-color-7), 1);
}

a:hover {
  color: rgba(var(--theme-color-5), 1);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button - Enhanced & Attractive
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  display: none !important;
  z-index: 996;
  background: linear-gradient(135deg,
      #3b82f6 0%,
      #2563eb 50%,
      #1d4ed8 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
  cursor: pointer;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.9);
}

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

.back-to-top:hover::before {
  left: 100%;
}

.back-to-top i {
  font-size: 26px;
  color: #000000;
  line-height: 0;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.back-to-top:hover {
  background: linear-gradient(135deg,
      #1e40af 0%,
      #1e3a8a 50%,
      #1d4ed8 100%);
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.7);
  border-color: rgba(255, 255, 255, 1);
}

.back-to-top:hover i {
  transform: translateY(-3px);
  color: #000000;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.back-to-top:active {
  transform: translateY(-3px) scale(1.05);
  transition: transform 0.1s ease;
}

/* Animated ring around the button */
.back-to-top::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 50%;
  border: 2px solid transparent;
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  animation: rotateRing 3s linear infinite;
  transition: all 0.3s ease;
}

.back-to-top:hover::after {
  border-top-color: #fff;
  border-right-color: rgba(255, 255, 255, 0.9);
  animation-duration: 1s;
}

/* Pulse animation when visible */
.back-to-top.active {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    pulseGlow 2s ease-in-out infinite 1s;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.1) rotate(180deg);
  }

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

@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
  }

  50% {
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.8),
      0 0 0 10px rgba(59, 130, 246, 0.1);
  }
}

/* Pulse animation when visible */
.back-to-top.active::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid rgba(var(--theme-color-0), 0.6);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(180deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.05) rotate(90deg);
  }

  70% {
    transform: scale(0.9) rotate(45deg);
  }

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

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  80% {
    transform: scale(1.4);
    opacity: 0;
  }

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

/* Progress circle effect */
.back-to-top.with-progress {
  background: conic-gradient(rgba(var(--theme-color-0), 1) var(--progress, 0%),
      rgba(255, 255, 255, 0.2) var(--progress, 0%));
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .back-to-top {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
  }

  .back-to-top i {
    font-size: 22px;
  }
}

/* Accessibility improvements */
.back-to-top:focus {
  outline: 2px solid rgba(var(--theme-color-1), 0.8);
  outline-offset: 2px;
}

/* Smooth scroll indicator */
.back-to-top.scrolling {
  animation: scrollPulse 0.3s ease-out;
}

@keyframes scrollPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgba(var(--theme-color-1), 1);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid rgba(var(--theme-color-0), 1);
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  overflow: visible;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  background: rgba(var(--theme-color-2), 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(var(--theme-color-0), 1);
  padding: 5px 0;
  border-bottom: none;
}

/* Specific styles for header at top of page */
#header:not(.header-scrolled):not(.header-inner-pages) {
  background: rgba(var(--theme-color-2), 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#header:not(.header-scrolled):not(.header-inner-pages) .navbar a {
  color: rgba(var(--theme-color-1), 1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* #header:not(.header-scrolled):not(.header-inner-pages) .logo {
  filter: invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

#header:not(.header-scrolled):not(.header-inner-pages) .logo img {
  filter: invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
} */

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* filter: invert(1); */
  max-width: 42px;
}

#header .logo a {
  color: rgba(var(--theme-color-1), 1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/**
* Desktop Navigation 
*/

.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar>ul>li {
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(var(--theme-color-1), 0.9);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: rgba(var(--theme-color-1), 1);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: rgba(var(--theme-color-1), 1);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 5px;
  color: rgba(var(--theme-color-1), 1);
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(var(--theme-color-6), 0.5);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: rgba(var(--theme-color-1), 1);
  border-color: rgba(var(--theme-color-1), 1);
}

.navbar .getstarted:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(var(--theme-color-1), 1);
  box-shadow: 0px 0px 30px rgb(var(--theme-color-6));
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: rgba(var(--theme-color-2), 1);
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: rgba(var(--theme-color-0), 1);
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation - Modern Design
*/

.mobile-nav-toggle {
  color: rgba(var(--theme-color-1), 1);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1001;
  padding: 5px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar.navbar-mobile ul {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg,
        rgba(var(--theme-color-0), 0.95) 0%,
        rgba(var(--theme-color-3), 0.98) 50%,
        rgba(var(--theme-color-2), 0.95) 100%);
    backdrop-filter: blur(20px);
  }

  .navbar.navbar-mobile.active ul {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .navbar.navbar-mobile.active li {
    margin: 20px 0;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out forwards;
  }

  .navbar.navbar-mobile.active li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .navbar.navbar-mobile.active li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .navbar.navbar-mobile.active li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .navbar.navbar-mobile.active li:nth-child(4) {
    animation-delay: 0.4s;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.navbar.navbar-mobile.active a {
  display: block;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 18px 40px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  min-width: 280px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.navbar.navbar-mobile.active a:hover::before {
  left: 100%;
}

.navbar.navbar-mobile.active a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar.navbar-mobile.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: linear-gradient(135deg,
      rgba(var(--theme-color-0), 0.95) 0%,
      rgba(var(--theme-color-3), 0.98) 50%,
      rgba(var(--theme-color-2), 0.95) 100%);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar.navbar-mobile.active .mobile-nav-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1001;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.navbar.navbar-mobile.active .mobile-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Modern Load More Button Styles
--------------------------------------------------------------*/

.load-more-section {
  margin: 40px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-load-more-new {
  background: linear-gradient(135deg,
      rgba(var(--theme-color-0), 1) 0%,
      rgba(var(--theme-color-3), 1) 50%,
      rgba(var(--theme-color-5), 1) 100%);
  border: none;
  border-radius: 50px;
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  min-width: 280px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin: 0 auto;
}

.btn-load-more-new:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-load-more-new:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: white;
  text-align: center;
  z-index: 2;
  position: relative;
}

.btn-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.btn-counter {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

.btn-subtitle {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 0.3px;
}

.btn-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 24px;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  position: relative;
}

.btn-load-more-new:hover .btn-icon {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.btn-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 100%);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn-load-more-new:hover .btn-bg {
  left: 100%;
}

.btn-show-less-new {
  background: linear-gradient(135deg,
      rgba(var(--theme-color-4), 1) 0%,
      rgba(var(--theme-color-8), 1) 50%,
      rgba(var(--theme-color-2), 1) 100%);
  box-shadow: 0 10px 30px rgba(71, 85, 105, 0.3);
}

.btn-show-less-new:hover {
  box-shadow: 0 15px 40px rgba(71, 85, 105, 0.4);
}

.btn-show-less-new:hover .btn-icon {
  transform: scale(1.1) rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btn-load-more-new {
    min-width: 260px;
    height: 56px;
  }

  .btn-text {
    font-size: 15px;
  }

  .btn-counter,
  .btn-subtitle {
    font-size: 11px;
  }

  .btn-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .btn-load-more-new {
    min-width: 240px;
    height: 52px;
  }

  .btn-text {
    font-size: 14px;
  }

  .btn-counter,
  .btn-subtitle {
    font-size: 10px;
  }

  .btn-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}

/* Animation for button state changes */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.btn-load-more-new.loading {
  animation: pulse 1.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-load-more-new.loading .btn-icon {
  animation: spin 1s linear infinite;
}

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

  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg,
      rgba(var(--theme-color-5), 0.9) 0%,
      rgba(var(--theme-color-3), 0.9) 100%),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

#hero .container,
#hero .container-fluid {
  padding-top: 84px;
}

#hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 64px;
  color: rgba(var(--theme-color-1), 1);
}

#hero h2 {
  color: rgba(var(--theme-color-1), 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: rgba(var(--theme-color-1), 1);
  border: 2px solid rgba(var(--theme-color-1), 1);
}

#hero .btn-get-started:hover {
  background: rgba(var(--theme-color-1), 1);
  color: rgba(var(--theme-color-0), 1);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 575px),
(max-height: 600px) {
  #hero {
    height: auto;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

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

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: rgba(var(--theme-color-0), 1);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

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

.about {
  padding: 120px 0;
}

.about .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: rgba(var(--theme-color-2), 1);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: rgba(var(--theme-color-0), 1);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  color: rgba(var(--theme-color-1), 1);
  background: linear-gradient(45deg,
      rgba(var(--theme-color-0), 1) 0%,
      rgba(var(--theme-color-3), 1) 100%);
  position: relative;
}

.about .content .read-more:hover {
  background: linear-gradient(180deg,
      rgba(var(--theme-color-0), 1) 0%,
      rgba(var(--theme-color-3), 1) 100%);
}

.about .content .read-more i {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 12px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
  background: linear-gradient(45deg,
      rgba(var(--theme-color-5), 0.9) 0%,
      rgba(var(--theme-color-3), 0.9) 100%),
    url("../img/counts-bg.png") center center no-repeat;
  padding: 80px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: rgba(var(--theme-color-1), 1);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: rgba(var(--theme-color-1), 0.8);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: rgba(var(--theme-color-1), 1);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: rgba(var(--theme-color-2), 1);
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: rgba(var(--theme-color-1), 1);
  box-shadow: 0px 0 25px 0 rgba(var(--theme-color-7), 0.1);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: rgba(var(--theme-color-1), 1);
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: rgba(var(--theme-color-1), 1);
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: rgba(var(--theme-color-1), 1);
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: rgba(var(--theme-color-1), 1);
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: rgba(var(--theme-color-1), 1);
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: rgba(var(--theme-color-1), 1);
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

.services .iconbox-purple i {
  color: #9c52fd;
}

.services .iconbox-purple:hover .icon i {
  color: rgba(var(--theme-color-1), 1);
}

.services .iconbox-purple:hover .icon path {
  fill: #9c52fd;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: rgba(var(--theme-color-0), 1);
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

#portfolio {
  background: linear-gradient(42deg,
      rgba(var(--theme-color-0), 1) 0%,
      rgba(var(--theme-color-3), 1) 100%);
}

.portfolio .section-title h2,
.portfolio .section-title p {
  color: rgba(var(--theme-color-1), 1);
}

.portfolio .section-title h2::after {
  background: rgba(var(--theme-color-1), 0.6);
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-filters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(var(--theme-color-7), 1);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-filters li:hover,
.portfolio #portfolio-filters li.filter-active {
  color: rgba(var(--theme-color-1), 1);
  background: rgba(var(--theme-color-0), 1);
}

.portfolio #portfolio-filters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(var(--theme-color-0), 0.8);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: rgba(var(--theme-color-1), 1);
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(var(--theme-color-1), 1);
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
  z-index: 3;
  font-size: 28px;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(var(--theme-color-1), 0.6);
  margin: 0 2px;
  font-size: 32px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover,
.portfolio .portfolio-wrap .portfolio-info a:hover {
  color: rgba(var(--theme-color-2), 1) !important;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(var(--theme-color-1), 1);
  opacity: 1;
  border: 1px solid rgba(var(--theme-color-0), 1);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(var(--theme-color-0), 1);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(var(--theme-color-2), 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Services & Promotional Cards Centering
--------------------------------------------------------------*/

/* Center service cards on desktop and tablet */
@media (min-width: 768px) {
  .services .row {
    justify-content: center;
  }

  .services .row.gy-4 {
    max-width: 1000px;
    margin: 0 auto;
  }

  /* For 6 cards layout - center them properly */
  .services .col-lg-4:nth-child(5),
  .services .col-lg-4:nth-child(6) {
    max-width: 33.333333%;
    flex: 0 0 33.333333%;
  }
}

/* Center promotional cards on desktop and tablet */
@media (min-width: 768px) {
  .pricing .row {
    justify-content: center;
  }

  .pricing .offers-container .row {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Ensure proper spacing for promotional cards */
  .pricing .offer-item {
    display: flex;
    justify-content: center;
  }

  .pricing .box {
    width: 100%;
    max-width: 280px;
  }
}

/* Special handling for services with 6 cards */
@media (min-width: 992px) {
  .services .row.gy-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .services .col-lg-4 {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    max-width: 350px;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  .services .row.gy-4 {
    justify-content: center;
  }

  .services .col-md-6 {
    max-width: 350px;
    flex: 0 0 auto;
    width: 48%;
    margin-bottom: 20px;
  }

  .services .col-lg-4.col-md-6 {
    max-width: 350px;
    flex: 0 0 auto;
    width: 48%;
    margin-bottom: 20px;
  }

  .pricing .col-md-6 {
    max-width: 300px;
    flex: 0 0 auto;
  }
}

/* Mobile services cards fix */
@media (max-width: 767px) {
  .services .col-lg-4.col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
  }

  .services .icon-box {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px 50px 20px;
  }
}

/* Tablet services cards fix */
@media (min-width: 768px) and (max-width: 991px) {
  .services .col-lg-4.col-md-6 {
    max-width: 48%;
    flex: 0 0 48%;
    width: 48%;
    margin-bottom: 20px;
  }

  .services .icon-box {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 15px 50px 15px;
  }
}

/* Small tablets and large phones */
@media (min-width: 576px) and (max-width: 767px) {
  .services .col-lg-4.col-md-6 {
    max-width: 90%;
    flex: 0 0 90%;
    width: 90%;
    margin: 0 auto 20px auto;
  }

  .services .icon-box {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px 50px 20px;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
  padding: 25px;
  background: rgba(var(--theme-color-1), 1);
  text-align: center;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(var(--theme-color-7), 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(var(--theme-color-7), 0.15);
  border-color: rgba(var(--theme-color-0), 0.2);
}

.pricing .offer-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, rgba(var(--theme-color-9), 1) 0%, #ff6b6b 100%);
  color: rgba(var(--theme-color-1), 1);
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  z-index: 3;
  animation: pulse 2s infinite;
  box-shadow: 0 3px 10px rgba(var(--theme-color-9), 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 3px 10px rgba(var(--theme-color-9), 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(var(--theme-color-9), 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 3px 10px rgba(var(--theme-color-9), 0.4);
  }
}

.pricing .offer-description {
  font-size: 12px;
  color: rgba(var(--theme-color-4), 0.9);
  margin: 15px 0 20px 0;
  line-height: 1.5;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-style: italic;
}

.pricing .compact-list {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.pricing .compact-list li {
  padding-bottom: 10px;
  font-size: 13px;
  text-align: left;
  line-height: 1.4;
}

.pricing .compact-list i {
  margin-right: 10px;
  font-size: 14px;
  color: rgba(var(--theme-color-0), 1);
}

.pricing h3 {
  font-weight: 600;
  margin: -25px -25px 20px -25px;
  padding: 20px 15px;
  font-size: 16px;
  color: rgba(var(--theme-color-2), 1);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px 15px 0 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing h4 {
  color: rgba(var(--theme-color-0), 1);
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  font-size: 28px;
}

.pricing h4 sup {
  font-size: 18px;
  top: -12px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 14px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: rgba(var(--theme-color-4), 1);
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: rgba(var(--theme-color-0), 1);
  font-size: 16px;
  padding-right: 8px;
}

.pricing .btn-wrap {
  margin: 20px -25px -25px -25px;
  padding: 25px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
  border-radius: 0 0 15px 15px;
}

.pricing .btn-buy {
  background: linear-gradient(135deg, rgba(var(--theme-color-0), 1) 0%, rgba(var(--theme-color-3), 1) 100%);
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  color: rgba(var(--theme-color-1), 1);
  font-size: 14px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(var(--theme-color-0), 0.3);
  position: relative;
  overflow: hidden;
}

.pricing .btn-buy: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.5s;
}

.pricing .btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--theme-color-0), 0.4);
  background: linear-gradient(135deg, rgba(var(--theme-color-3), 1) 0%, rgba(var(--theme-color-0), 1) 100%);
}

.pricing .btn-buy:hover:before {
  left: 100%;
}

.pricing .btn-buy:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(var(--theme-color-0), 0.3);
}

.pricing .featured {
  transform: scale(1.05);
  z-index: 1;
}

.pricing .featured h3 {
  color: rgba(var(--theme-color-1), 1);
  background: linear-gradient(135deg, rgba(var(--theme-color-0), 1) 0%, rgba(var(--theme-color-3), 1) 100%);
}

.pricing .featured .btn-buy {
  background: linear-gradient(135deg, rgba(var(--theme-color-9), 1) 0%, #ff6b6b 100%);
  box-shadow: 0 4px 15px rgba(var(--theme-color-9), 0.3);
}

/* Responsive adjustments for promotional cards */
@media (max-width: 992px) {
  .pricing .col-lg-3 {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .pricing .offer-description {
    min-height: auto;
    margin: 8px 0 12px 0;
  }

  .pricing .compact-list {
    min-height: auto;
  }

  .pricing h3 {
    min-height: auto;
    font-size: 14px;
  }

  .pricing h4 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq {
  background: linear-gradient(42deg,
      rgba(var(--theme-color-0), 1) 0%,
      rgba(var(--theme-color-3), 1) 100%);
}

.faq .section-title h2,
.faq .section-title p {
  color: rgba(var(--theme-color-1), 1);
}

.faq .section-title h2::after {
  background: rgba(var(--theme-color-1), 0.6);
}

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 30px;
  background: rgba(var(--theme-color-1), 1);
  border-radius: 5px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: rgba(var(--theme-color-5), 1);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: rgba(var(--theme-color-2), 1);
}

.faq .faq-list a.collapsed:hover {
  color: rgba(var(--theme-color-0), 1);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-box {
  color: rgba(var(--theme-color-4), 1);
  text-align: center;
  box-shadow: 0 0 30px rgba(var(--theme-color-1), 0.6);
  padding: 20px 0 30px 0;
  background: rgba(var(--theme-color-1), 1);
}

.contact .info-box i {
  font-size: 32px;
  color: rgba(var(--theme-color-0), 1);
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: rgba(var(--theme-color-2), 1);
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .contact-form {
  box-shadow: 0 0 30px rgba(var(--theme-color-1), 0.6);
  padding: 30px;
  background: rgba(var(--theme-color-1), 1);
}

.contact .contact-form .error-message {
  display: none;
  color: rgba(var(--theme-color-1), 1);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .contact-form .error-message br+br {
  margin-top: 25px;
}

.contact .contact-form .sent-message {
  display: none;
  color: rgba(var(--theme-color-1), 1);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .contact-form .loading {
  display: none;
  background: rgba(var(--theme-color-1), 1);
  text-align: center;
  padding: 30px;
  position: relative;
  border-radius: 10px;
  min-height: 80px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.contact .contact-form .loading[style*="block"] {
  display: flex;
}

.contact .contact-form .loading:before {
  content: "" !important;
  display: inline-block !important;
  border-radius: 50% !important;
  width: 24px !important;
  height: 24px !important;
  margin: 0 10px -6px 0 !important;
  border: 3px solid #18d26e !important;
  border-top-color: #eee !important;
  -webkit-animation: animate-loading 1s linear infinite !important;
  animation: animate-loading 1s linear infinite !important;
}

.contact .contact-form input,
.contact .contact-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: rgba(var(--theme-color-0), 1);
}

.contact .contact-form input {
  padding: 10px 15px;
}

.contact .contact-form textarea {
  padding: 12px 15px;
}

.contact .contact-form button {
  background: rgba(var(--theme-color-0), 1);
  border: 0;
  padding: 10px 24px;
  color: rgba(var(--theme-color-1), 1);
  transition: 0.4s;
  border-radius: 5px;
}

.contact .contact-form button:hover {
  background: rgba(var(--theme-color-3), 1);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
  padding: 15px 0;
  background: #f2f6f9;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 56px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c6387;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.contact-footer {
  margin-bottom: 5rem;
}

.footer {
  color: rgba(var(--theme-color-1), 1);
  font-size: 14px;
  background: linear-gradient(45deg,
      rgba(var(--theme-color-5), 0.9) 0%,
      rgba(var(--theme-color-3), 0.9) 100%),
    url("../img/footer-bg.jpg") center center no-repeat;
  background-size: cover;
}

.footer-main {
  margin-top: 5rem;
}

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

.footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

.footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: rgba(var(--theme-color-1), 1);
  font-size: 18px;
  line-height: 1;
}

.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

.footer .footer-top .footer-links ul a {
  color: rgba(var(--theme-color-1), 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: rgba(var(--theme-color-1), 1);
}

.footer .footer-newsletter {
  font-size: 15px;
}

.footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-newsletter form {
  margin-top: 30px;
  background: rgba(var(--theme-color-1), 1);
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid rgba(var(--theme-color-1), 0.7);
}

.footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

.footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgba(var(--theme-color-3), 0.8);
  color: rgba(var(--theme-color-1), 1);
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(var(--theme-color-7), 0.1);
}

.footer .footer-newsletter form input[type="submit"]:hover {
  background: rgba(var(--theme-color-0), 1);
}

.footer .copyright-wrap {
  border-top: 1px solid rgba(var(--theme-color-5), 1);
}

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

.footer .credits a {
  color: rgba(var(--theme-color-1), 1);
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--theme-color-1), 0.1);
  color: rgba(var(--theme-color-1), 1);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: rgba(var(--theme-color-1), 0.2);
  color: rgba(var(--theme-color-1), 1);
  text-decoration: none;
}

.responsive-panel i:hover {
  color: rgb(var(--theme-color-0)) !important;
  cursor: pointer;
}

#template-container {
  position: relative !important;
  overflow: scroll;
  display: grid;
  justify-items: center;
  scrollbar-width: none !important;
  /* Firefox */
  -ms-overflow-style: none !important;
  /* IE 10+ */
}

#template-container::-webkit-scrollbar {
  background: transparent !important;
  /* Chrome/Safari/Webkit */
  width: 0px !important;
}

#template {
  position: absolute !important;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  margin: 10px;
  scrollbar-width: none !important;
  /* Firefox */
  -ms-overflow-style: none !important;
  /* IE 10+ */
}

#template::-webkit-scrollbar {
  background: transparent !important;
  /* Chrome/Safari/Webkit */
  width: 0px !important;
}


/* Slider */

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  border: 0.2px solid black;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

header {
  min-width: 100vw !important;
}

header>div {
  min-width: 100% !important;
  padding: 0 3rem !important;
}

/*--------------------------------------------------------------
# Mobile Offers Progressive Loading
--------------------------------------------------------------*/
/* Hidden offer groups on mobile */
@media (max-width: 767px) {

  .offer-item[data-group="2"],
  .offer-item[data-group="3"] {
    display: none !important;
  }

  .offer-item.offer-visible {
    display: block !important;
    animation: fadeInUp 0.5s ease-in-out;
  }

  /* Ensure mobile uses full width */
  .offers-container .offer-item {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .pricing .box {
    margin: 0 auto;
    max-width: 350px;
  }
}

/* Show all items on desktop */
@media (min-width: 768px) {
  .offer-item {
    display: block !important;
  }
}

/* Enhanced mobile menu visual effects */
.navbar.navbar-mobile.active ul::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 70%);
  animation: rotateGradient 20s linear infinite;
  pointer-events: none;
}

.navbar.navbar-mobile.active ul::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-10%) scaleX(1);
  }

  50% {
    opacity: 0.8;
    transform: translateX(-10%) scaleX(1.2);
  }
}

/* Mobile menu active state animation */
.navbar.navbar-mobile.active {
  animation: fadeInBackground 0.4s ease-out;
}

@keyframes fadeInBackground {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }

  to {
    opacity: 1;
    backdrop-filter: blur(20px);
  }
}

/* Prevent text selection and improve touch interaction */
.navbar.navbar-mobile * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
  .navbar.navbar-mobile.active a {
    min-width: 260px;
    padding: 16px 35px;
    font-size: 17px;
  }

  .navbar.navbar-mobile.active .mobile-nav-toggle {
    top: 25px;
    right: 25px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

/* Ensure mobile menu breaks out of container constraints */
.navbar.navbar-mobile {
  overflow: visible;
}

#header.mobile-menu-active {
  overflow: visible;
}


#header .logo img {
  filter: invert(1) !important;
  /* filter: invert(1); */
  max-height: 60px;
}

/*--------------------------------------------------------------
# Services Section - Fix card sizes on tablets and mobile
--------------------------------------------------------------*/

/* Ensure all service cards have consistent sizing */
@media (max-width: 991px) and (min-width: 768px) {
  #services .service-box {
    height: auto;
    min-height: 320px;
    max-width: 100%;
  }

  #services .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  #services .service-box .icon {
    margin-bottom: 20px;
  }

  #services .service-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  #services .service-box p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Mobile devices - ensure cards are full width and consistent */
@media (max-width: 767px) {
  #services .service-box {
    height: auto;
    min-height: 280px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  #services .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #services .service-box .icon {
    margin-bottom: 15px;
  }

  #services .service-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  #services .service-box p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  #services .service-box {
    min-height: 260px;
    padding: 30px 20px;
  }

  #services .service-box h4 {
    font-size: 18px;
  }

  #services .service-box p {
    font-size: 13px;
  }
}

/* Fix for specific services cards sizing issues */
@media (max-width: 991px) {
  .services .col-lg-4.col-md-6 {
    margin-bottom: 20px;
  }

  .services .icon-box {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px 50px 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .services .col-lg-4.col-md-6 {
    max-width: 48%;
    flex: 0 0 48%;
    width: 48%;
  }
}

@media (max-width: 767px) {
  .services .col-lg-4.col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Clickable Service Cards
--------------------------------------------------------------*/

.services .clickable-card {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .clickable-card:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.services .clickable-card:focus {
  outline: 2px solid rgba(var(--theme-color-0), 0.5);
  outline-offset: 2px;
}

.services .clickable-card h4 {
  color: rgba(var(--theme-color-2), 1);
  transition: color 0.3s ease;
}

.services .clickable-card:hover h4 {
  color: rgba(var(--theme-color-0), 1);
}

/* Maintain original icon-box styling */
.services .clickable-card.icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  background: rgba(var(--theme-color-1), 1);
  border-radius: 10px;
  cursor: pointer;
}

/* Enhanced hover effects for different card types */
.services .clickable-card.iconbox-blue:hover {
  background: linear-gradient(135deg, #47aeff15, #47aeff08);
}

.services .clickable-card.iconbox-orange:hover {
  background: linear-gradient(135deg, #ffa76e15, #ffa76e08);
}

.services .clickable-card.iconbox-pink:hover {
  background: linear-gradient(135deg, #e8036815, #e8036808);
}

.services .clickable-card.iconbox-yellow:hover {
  background: linear-gradient(135deg, #ffbb2c15, #ffbb2c08);
}

.services .clickable-card.iconbox-purple:hover {
  background: linear-gradient(135deg, #9c52fd15, #9c52fd08);
}

.services .clickable-card.iconbox-teal:hover {
  background: linear-gradient(135deg, #11dbcf15, #11dbcf08);
}

/* Accessibility improvements */
.services .clickable-card:focus-visible {
  outline: 3px solid rgba(var(--theme-color-0), 0.7);
  outline-offset: 3px;
}

.services .clickable-card:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile touch improvements */
@media (max-width: 768px) {
  .services .clickable-card {
    -webkit-tap-highlight-color: rgba(var(--theme-color-0), 0.1);
    touch-action: manipulation;
  }
  
  .services .clickable-card:hover {
    transform: translateY(-3px);
  }
  
  .services .clickable-card:active {
    transform: translateY(-1px);

  }
  #lastName {
    margin-top: 17px;
  }
}
