/* Author: UIdeck - Modified for Unisend */

/*===========================
    COMMON css 
===========================*/

/* Unisend Color Variables */
:root {
  --primary-purple: #8B5CF6;
  --primary-blue: #3B82F6;
  --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  --gradient-secondary: linear-gradient(135deg, #A855F7 0%, #06B6D4 100%);
  --email-color: #8B5CF6;
  --whatsapp-color: #10B981;
  --sms-color: #EC4899;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
}
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: rgba(0, 0, 0, 0.88);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:hover {
  color: #234FEB;
}

a {
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
a:hover {
  text-decoration: none;
}

*:focus {
  outline: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  margin: 0px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 36px;
}

.section-title span {
  font-size: 24px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.64);
}

@media (max-width: 767px) {
  .section-title span {
    font-size: 20px;
  }
}

.section-title h1 {
  font-size: 36px;
  line-height: 45px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .section-title h1 {
    font-size: 30px;
    line-height: 40px;
  }
}

.section-title h1 span {
  font-weight: 700;
  text-transform: none;
  font-size: inherit;
  color: inherit;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 0px;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.gray-bg-1 {
  background-color: #fafafa;
}

.gray-bg-2 {
  background-color: #f2f2f2;
}

.error {
  color: orangered;
}

.success {
  color: green;
}

@media (max-width: 767px) {
  .container {
    padding: 0 30px;
  }
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding: 12px 25px;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  text-transform: uppercase;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all .4s ease-in-out;
  border: 2px solid transparent;
  background: var(--gradient-primary);
  overflow: hidden;
  letter-spacing: 0.08em;
  position: relative;
}

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

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

.main-btn:hover {
  color: #fff;
}

/* Mobile navbar Sign in button hover */
.navbar-collapse .nav-item .main-btn:hover {
  color: #fff !important;
}

.d-lg-none .main-btn:hover {
  color: #fff !important;
}

.main-btn.border-btn {
  border: 2px solid var(--primary-purple);
  background: transparent;
  color: var(--primary-purple);
}

.btn-hover {
  position: relative;
  overflow: hidden;
}

.btn-hover::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  padding: 50%;
  z-index: -1;
  transition: all 0.3s ease-out 0s;
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.btn-hover:hover::after {
  transform: translate3d(-50%, -50%, 0) scale(1.3);
}

.scroll-top {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}

.scroll-top:hover {
  color: #fff;
  background: var(--gradient-secondary);
  transform: translateY(-2px);
}

@keyframes animation1 {
  0% {
    transform: translateY(30px);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(30px);
  }
}

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

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

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  z-index: 3;
}

.hero-image-container img {
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.2));
}


/* Animated Background Elements */
.animated-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* Curved Lines Animation */
.curved-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.curved-line-1,
.curved-line-2,
.curved-line-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: curvedLineMove 8s ease-in-out infinite;
}

.curved-line-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.curved-line-2 {
  top: 40%;
  left: -5%;
  animation-delay: 2s;
}

.curved-line-3 {
  top: 60%;
  left: 0%;
  animation-delay: 4s;
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.shape-1 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10B981, #34D399);
  top: 15%;
  right: 20%;
  animation: shapeFloat1 6s ease-in-out infinite;
}

.shape-2 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3B82F6, #60A5FA);
  top: 35%;
  right: 10%;
  animation: shapeFloat2 8s ease-in-out infinite;
  animation-delay: 1s;
}

.shape-3 {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
  top: 55%;
  right: 25%;
  animation: shapeFloat3 7s ease-in-out infinite;
  animation-delay: 2s;
}

.shape-4 {
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #EC4899, #F472B6);
  top: 25%;
  right: 35%;
  animation: shapeFloat4 9s ease-in-out infinite;
  animation-delay: 3s;
}

.shape-5 {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  top: 45%;
  right: 5%;
  animation: shapeFloat5 5s ease-in-out infinite;
  animation-delay: 4s;
}

/* Floating Dots */
.floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.4);
}

.dot-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 10%;
  animation: dotFloat1 4s ease-in-out infinite;
}

.dot-2 {
  width: 6px;
  height: 6px;
  top: 30%;
  left: 20%;
  animation: dotFloat2 5s ease-in-out infinite;
  animation-delay: 1s;
}

.dot-3 {
  width: 10px;
  height: 10px;
  top: 50%;
  left: 15%;
  animation: dotFloat3 6s ease-in-out infinite;
  animation-delay: 2s;
}

.dot-4 {
  width: 7px;
  height: 7px;
  top: 70%;
  left: 25%;
  animation: dotFloat4 4.5s ease-in-out infinite;
  animation-delay: 3s;
}

.dot-5 {
  width: 5px;
  height: 5px;
  top: 40%;
  left: 5%;
  animation: dotFloat5 5.5s ease-in-out infinite;
  animation-delay: 4s;
}

.dot-6 {
  width: 9px;
  height: 9px;
  top: 60%;
  left: 8%;
  animation: dotFloat6 7s ease-in-out infinite;
  animation-delay: 5s;
}

/* Animations */
@keyframes curvedLineMove {
  0%, 100% {
    transform: translateX(0) translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateX(20px) translateY(-10px) rotate(2deg);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-10px) translateY(15px) rotate(-1deg);
    opacity: 0.4;
  }
  75% {
    transform: translateX(15px) translateY(-5px) rotate(1deg);
    opacity: 0.5;
  }
}

@keyframes shapeFloat1 {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  33% {
    transform: translateY(-20px) translateX(10px) scale(1.1);
  }
  66% {
    transform: translateY(10px) translateX(-15px) scale(0.9);
  }
}

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

@keyframes shapeFloat3 {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  25% {
    transform: translateY(-10px) translateX(-10px) scale(1.2);
  }
  75% {
    transform: translateY(15px) translateX(10px) scale(0.8);
  }
}

@keyframes shapeFloat4 {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) translateX(-5px) rotate(90deg);
  }
}

@keyframes shapeFloat5 {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-12px) translateX(15px) scale(1.3);
  }
}

@keyframes dotFloat1 {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-15px) translateX(8px);
    opacity: 0.8;
  }
}

@keyframes dotFloat2 {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-10px) translateX(-12px);
    opacity: 0.7;
  }
}

@keyframes dotFloat3 {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) translateX(5px);
    opacity: 0.9;
  }
}

@keyframes dotFloat4 {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-8px) translateX(-8px);
    opacity: 0.6;
  }
}

@keyframes dotFloat5 {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-12px) translateX(10px);
    opacity: 0.8;
  }
}

@keyframes dotFloat6 {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-18px) translateX(-6px);
    opacity: 0.9;
  }
}

.icon-style {
  animation: pulse 4s ease-in-out infinite;
}

/*===== All Preloader Style =====*/
/* Preloader styles moved to optimized section below */

/* Language Selector Styles */
.language-selector {
  position: relative;
  margin-right: 15px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 8px;
  min-width: 120px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sticky .language-selector {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
}

.lang-select {
  appearance: none;
  width: 100%;
  padding: 8px 35px 8px 40px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  font-family: "Rubik", sans-serif;
}

.sticky .lang-select {
  color: #333;
}

.lang-select option {
  color: #333;
  background: #fff;
  padding: 10px;
}

.language-selector::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}

.language-selector[data-selected="id"]::before {
  background-image: url('../images/flags/id.svg');
}

.language-selector[data-selected="en"]::before {
  background-image: url('../images/flags/en.svg');
}

.language-selector::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
  pointer-events: none;
}

.sticky .language-selector::after {
  color: #333;
}

@media (max-width: 767px) {
  .language-selector {
    margin-bottom: 15px;
  }
  
  .lang-btn {
    padding: 8px 16px;
  }
}

/* Preloader styles moved to optimized section below */

.logo-icon {
  position: relative;
  width: 60px;
  height: 60px;
  z-index: 10;
  animation: logoFloat 1.5s ease-in-out infinite;
}

.logo-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: logoGlow 1.2s ease-in-out infinite alternate;
  z-index: -1;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.2));
}

/* Circular Loading Animation - Wrapping the Logo */
.loading-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.circle-ring {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  animation: circleRotate 1.5s linear infinite;
}

.circle-ring:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-color: var(--primary-purple);
  animation-delay: 0s;
}

.circle-ring:nth-child(2) {
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-top-color: var(--primary-blue);
  animation-delay: 0.5s;
}

.circle-ring:nth-child(3) {
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-top-color: rgba(139, 92, 246, 0.6);
  animation-delay: 1s;
}

/* Responsive Preloader */
@media (max-width: 768px) {
  .logo-container {
    width: 100px;
    height: 100px;
  }
  
  .logo-icon {
    width: 50px;
    height: 50px;
  }
  
  .circle-ring {
    border-width: 1.5px;
  }
  
  .circle-ring:nth-child(2) {
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
  
  .circle-ring:nth-child(3) {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }
}

@media (max-width: 480px) {
  .logo-container {
    width: 80px;
    height: 80px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .circle-ring {
    border-width: 1px;
  }
  
  .circle-ring:nth-child(2) {
    top: 6px;
    left: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }
  
  .circle-ring:nth-child(3) {
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  }
}

/* Preloader Animations - Optimized for faster loading */

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.03);
  }
}

@keyframes logoGlow {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes circleRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Faster preloader animation */
@keyframes preloaderFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.preloader.fade-out {
  animation: preloaderFadeOut 0.2s ease-out forwards;
}

/* Optimized preloader for faster loading */
.preloader {
  transition: opacity 0.2s ease-out;
}

/* Preloader performance optimization */
.preloader .logo-icon {
  will-change: transform;
}

.preloader .circle-ring {
  will-change: transform;
}

/* Preloader smooth animation */
.preloader .logo-glow {
  will-change: transform, opacity;
}

/* Preloader smooth transition */
.preloader .loading-circle {
  will-change: transform;
}

/* Preloader smooth animation */
.preloader .logo-container {
  will-change: transform;
}

/* Preloader smooth transition */
.preloader .unisend-logo-preloader {
  will-change: transform;
}

/* Preloader smooth animation */
.preloader .loader {
  will-change: transform;
}

/* Preloader smooth transition */
.preloader .logo-img {
  will-change: transform;
}

/* Preloader smooth animation */
.preloader .logo-glow {
  will-change: transform, opacity;
}

/* Preloader styles - restored to smooth version */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* Unisend Logo Preloader */
.unisend-logo-preloader {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
}

/* Preloader styles moved to optimized section below */

/*=========================== 
    PRICING SECTION CSS 
============================= */
.pricing-section {
  background: #f8fafc;
}

/* Add more breathing room around title and tabs */
.pricing-section .section-title {
  margin-bottom: 28px;
}

.pricing-tabs {
  margin-top: 10px;
  margin-bottom: 64px;
}

.pricing-tabs .nav-pills {
  background: #fff;
  border-radius: 50px;
  padding: 12px; /* increased from 8px */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.pricing-tabs .nav-pills .nav-link {
  border: none;
  background: transparent;
  color: var(--primary-purple);
  font-weight: 600;
  padding: 14px 32px; /* a bit more padding */
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 6px; /* add horizontal gap between pills */
}

.pricing-tabs .nav-pills .nav-link.active {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.pricing-tabs .nav-pills .nav-link:hover:not(.active) {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-purple);
}

.single-pricing {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px; /* reduced from 44px 32px */
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  margin-bottom: 40px; /* was 0, add more bottom space for tighter grids */
}

.single-pricing:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.single-pricing.popular {
  border-color: var(--primary-purple);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
  transform: scale(1.05);
}

.single-pricing.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.popular-badge i {
  font-size: 12px;
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

.pricing-header p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 12px;
}

.pricing-header .plan-subtitle {
  margin-bottom: 10px;
  font-size: 14px;
  color: #94a3b8;
  font-weight: 400;
  font-style: italic;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.price .currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-purple);
}

.price .amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-purple);
  line-height: 1;
}

.price .period {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
}

.pricing-features {
  margin-bottom: 20px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 14px;
}

.pricing-features ul li:last-child {
  border-bottom: none;
}

.pricing-features ul li i {
  color: var(--primary-purple);
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.pricing-features ul li.feature-enabled {
  color: #10B981;
}

.pricing-features ul li.feature-enabled i {
  color: #10B981;
}

.pricing-features ul li.feature-disabled {
  color: #94a3b8;
  text-decoration: line-through;
}

.pricing-features ul li.feature-disabled i {
  color: #ef4444;
}

.discount-badge {
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: center;
}

.discount-badge span {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Coming Soon Section */
.coming-soon-section {
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f1f5f9;
}

.coming-soon-icon {
  margin-bottom: 30px;
}

.coming-soon-icon i {
  font-size: 80px;
  color: var(--primary-purple);
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}

.coming-soon-section p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.6;
}

.coming-soon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid var(--primary-purple);
}

.feature-item i {
  color: #10B981;
  font-size: 18px;
}

.feature-item span {
  color: #475569;
  font-weight: 500;
  font-size: 15px;
}

.coming-soon-cta {
  margin-top: 30px;
}

/* Responsive Coming Soon */
@media (max-width: 768px) {
  .coming-soon-section {
    padding: 40px 30px;
  }
  
  .coming-soon-icon i {
    font-size: 60px;
  }
  
  .coming-soon-section h2 {
    font-size: 28px;
  }
  
  .coming-soon-section p {
    font-size: 16px;
  }
  
  .coming-soon-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .coming-soon-section {
    padding: 30px 20px;
  }
  
  .coming-soon-icon i {
    font-size: 50px;
  }
  
  .coming-soon-section h2 {
    font-size: 24px;
  }
}

.pricing-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-footer .main-btn {
  width: 100%;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.pricing-footer .main-btn.border-btn {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
}

.pricing-footer .main-btn.border-btn:hover {
  background: var(--primary-purple);
  color: #fff;
  transform: translateY(-2px);
}

.pricing-footer .main-btn:not(.border-btn) {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
}

.pricing-footer .main-btn:not(.border-btn):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Responsive Pricing */
@media (max-width: 1200px) {
  .single-pricing.popular {
    transform: scale(1.02);
  }
  
  .single-pricing.popular:hover {
    transform: scale(1.02) translateY(-10px);
  }
}

@media (max-width: 768px) {
  .pricing-tabs .nav-pills .nav-link {
    padding: 12px 22px;
    margin: 4px 4px;
  }
  
  .pricing-tabs {
    margin-bottom: 48px;
  }
  
  .single-pricing {
    padding: 28px 20px;
    margin-bottom: 28px;
  }
  
  .single-pricing.popular {
    transform: none;
  }
  
  .single-pricing.popular:hover {
    transform: translateY(-10px);
  }
  
  .pricing-header h3 {
    font-size: 20px;
  }
  
  .price .amount {
    font-size: 28px;
  }
  
  .popular-badge {
    top: -12px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .pricing-tabs .nav-pills {
    padding: 10px;
  }
  
  .single-pricing {
    padding: 24px 16px;
    margin-bottom: 24px;
  }
  
  .pricing-tabs .nav-pills .nav-link {
    width: 100%;
    text-align: center;
  }
  
  .pricing-header h3 {
    font-size: 18px;
  }
  
  .price .amount {
    font-size: 24px;
  }
  
  .pricing-features ul li {
    font-size: 14px;
    padding: 10px 0;
  }
}

/*=========================== 
    NAVBAR CSS 
============================= */
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
  border-radius: 0 0 20px 20px;
  margin: 0 10px;
  width: calc(100% - 20px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky .navbar {
  padding: 16px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky {
    margin: 0 8px;
    width: calc(100% - 16px);
    border-radius: 0 0 18px 18px;
  }
  
  .sticky .navbar {
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  .sticky {
    margin: 0 5px;
    width: calc(100% - 10px);
    border-radius: 0 0 15px 15px;
  }
  
  .sticky .navbar {
    padding: 8px 0;
  }
  
  .navbar {
    padding: 12px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky {
    margin: 0 8px;
    width: calc(100% - 16px);
    border-radius: 0 0 18px 18px;
  }
  
  .sticky .navbar {
    padding: 10px 0;
  }
}

.sticky .navbar .navbar-nav .nav-item a {
  color: rgba(0, 0, 0, 0.88);
}

.sticky .navbar .navbar-nav .nav-item a.active, .sticky .navbar .navbar-nav .nav-item a:hover {
  color: var(--primary-purple);
}

.sticky .navbar .navbar-nav .nav-item a.active::before, .sticky .navbar .navbar-nav .nav-item a:hover::before {
  background: var(--primary-purple);
}

.sticky .navbar .navbar-nav .nav-item a.main-btn {
  color: #fff;
}

.sticky .navbar .navbar-toggler .toggler-icon {
  background: rgba(0, 0, 0, 0.88);
}

.sticky .header-btn ul li a.main-btn {
  background: var(--gradient-primary);
  color: #fff;
}

.sticky .header-btn ul li a.border-btn {
  background-color: transparent;
  color: var(--primary-purple);
}

.sticky .header-btn ul li a.border-btn::after {
  background-color: rgba(35, 79, 235, 0.1);
}

/* Enhanced sticky navbar hover effects */
.sticky:hover {
  box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  will-change: transform, box-shadow;
}

/* Smooth animation for sticky navbar appearance */
@keyframes stickySlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sticky {
  animation: stickySlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

/* Sticky animation is now handled by the main .sticky class above */

/* Font rendering optimizations removed to restore smooth UI */

.navbar {
  padding: 0;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-out 0s;
  padding: 16px 0;
}

.navbar-brand {
  padding: 0;
  margin-right: 35px;
}

.navbar-brand img {
  max-width: 180px;
}

/* Unisend Logo Styling */
.unisend-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.unisend-logo:hover {
  transform: scale(1.05);
}

/* Logo Icon Container */
.logo-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Animated Glow Effect */
.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: logoGlow 3s ease-in-out infinite;
  pointer-events: none;
}

/* Logo Text Styling */
.logo-text {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

/* Hover Effects */
.unisend-logo:hover .logo-img {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
}

.unisend-logo:hover .logo-glow {
  opacity: 1;
  animation-duration: 1.5s;
}

.unisend-logo:hover .logo-text {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.unisend-logo:hover .logo-text::after {
  width: 100%;
}

/* Footer Logo Styling */
.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
}

.footer-logo .logo-text {
  color: #fff;
  font-size: 28px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo .logo-text::after {
  background: linear-gradient(135deg, #fff 0%, #3B82F6 100%);
}

.footer-logo:hover .logo-text {
  background: linear-gradient(135deg, #fff 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
@keyframes logoGlow {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

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

/* Continuous floating animation for logo */
.logo-icon {
  animation: logoFloat 4s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 767px) {
  .unisend-logo {
    gap: 8px;
  }
  
  .logo-icon {
    width: 35px;
    height: 35px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .footer-logo .logo-icon {
    width: 45px;
    height: 45px;
  }
  
  .footer-logo .logo-text {
    font-size: 24px;
  }
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-toggler {
    position: absolute;
    right: 0;
  }
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.88);
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  padding: 8px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
    padding-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:first-child {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:last-child {
    margin-bottom: 20px;
  }
}

.navbar-nav .nav-item a {
  color: rgba(0, 0, 0, 0.88);
  transition: all 0.3s ease-out 0s;
  padding: 8px 17px;
  position: relative;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a {
    padding: 8px 14px;
    font-weight: 500;
    letter-spacing: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 8px 0px;
    color: rgba(0, 0, 0, 0.64);
  }
}

.navbar-nav .nav-item a:hover, .navbar-nav .nav-item a.active {
  color: var(--primary-purple);
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

.navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .nav-item .sub-menu li {
  display: block;
}

.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: rgba(0, 0, 0, 0.88);
}

.navbar-nav .nav-item .sub-menu li a.active, .navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #234FEB;
}

.navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: rgba(0, 0, 0, 0.88);
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.88);
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-btn {
    padding-right: 80px;
  }
}

@media (max-width: 767px) {
  .header-btn {
    display: none;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .header-btn {
    display: block;
  }
}

.header-btn ul li {
  margin-left: 8px;
}

.header-btn ul li a {
  font-size: 16px;
  padding: 8px 24px;
  font-weight: 600;
}

.header-btn ul li a.border-btn {
  background: transparent;
  color: #fff;
}

.header-btn ul li a.border-btn::after {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .header-btn ul li a.border-btn {
    display: none;
  }
}

/* ====================
		HERO CSS
======================= */
.hero-section {
  height: 720px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  background-image: url("../images/hero-bg.svg");
  background-position: left bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.05;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section {
    height: auto;
    padding-top: 120px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: auto;
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 70px;
  }
  
  .hero-section .hero-content {
    margin-top: 0;
  }
  
  .hero-section .hero-content span {
    margin-bottom: 8px;
  }
  
  .hero-section .hero-content h1 {
    margin-bottom: 16px;
  }
  
  .hero-section .hero-content p {
    margin-bottom: 24px;
  }
}

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

.hero-section .hero-content span.hero-subtitle {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--primary-purple);
  opacity: 0.9;
  display: block;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: -0.02em;
}

.hero-section .hero-content h1 {
  font-family: "Rubik", sans-serif;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  letter-spacing: -0.03em;
}

.hero-section .hero-content h1 .highlight {
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: 4.5rem;
  margin: 0.5rem 0;
}

@media (max-width: 1200px) {
  .hero-section .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero-section .hero-content h1 .highlight {
    font-size: 4rem;
  }
  .hero-section .hero-content span.hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .hero-section .hero-content h1 {
    font-size: 3rem;
  }
  .hero-section .hero-content h1 .highlight {
    font-size: 3.5rem;
  }
  .hero-section .hero-content span.hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-section .hero-content h1 .highlight {
    font-size: 3rem;
  }
  .hero-section .hero-content span.hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section .hero-content h1 {
    font-size: 2rem;
  }
  .hero-section .hero-content h1 .highlight {
    font-size: 2.5rem;
  }
  .hero-section .hero-content span.hero-subtitle {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-content h1 {
    font-size: 48px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 35px;
    line-height: 44px;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 42px;
    line-height: 50px;
  }
}

.hero-section .hero-content p {
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.88);
}

@media (max-width: 767px) {
  .hero-section .hero-content p {
    font-size: 18px;
  }
}

.hero-section .hero-image {
  padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .hero-image {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-image {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-image img {
    max-width: 100%;
  }
  
  /* Adjust animated background for mobile */
  .animated-background {
    opacity: 0.7;
  }
  
  .shape {
    transform: scale(0.8);
  }
  
  .dot {
    transform: scale(0.8);
  }
  
  .curved-line-1,
  .curved-line-2,
  .curved-line-3 {
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .animated-background {
    opacity: 0.5;
  }
  
  .shape {
    transform: scale(0.6);
  }
  
  .dot {
    transform: scale(0.6);
  }
}

.download-buttons {
  text-align: left;
}

.download-buttons ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 4px;
  gap: 12px;
}

.download-buttons ul li {
  margin: 0;
}

.download-buttons ul li a {
  display: inline-block;
  transition: all 0.3s ease;
}

.download-buttons ul li a:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.download-buttons ul li img {
  height: 60px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.download-buttons ul li img:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .download-buttons {
    text-align: center;
  }
  
  .download-buttons ul {
    justify-content: center;
  }
  
  .download-buttons ul li img {
    height: 50px;
  }
}

form.get-started-form {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

form.get-started-form label {
  position: absolute;
  left: 0;
  top: 4px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

form.get-started-form input {
  min-width: 275px;
  padding: 15px 0 15px 45px;
  border: none;
  border-bottom: 2px solid #234FEB;
  margin-right: 5px;
  margin-bottom: 16px;
  background: transparent;
}

form.get-started-form button {
  margin-bottom: 16px;
}

/* =======================================
		ACHIEVEMENT-SECTION CSS
========================================== */
.clients-section {
  position: relative;
  margin-top: -65px;
  z-index: 1;
}

/* Centered background highlight behind Trusted by box */
.clients-section { position: relative; }
.clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 120% at 50% 50%, rgba(139, 92, 246, 0.06) 0%, rgba(59, 130, 246, 0.05) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.clients-section .clients-logo-active-wrapper { position: relative; z-index: 1; }

.clients-section .clients-logo-active-wrapper {
  background: #fafafa;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 32px 20px 37px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Add subtle animated background to trusted by section */
.clients-section .clients-logo-active-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.02) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
  animation: subtleFloat 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes subtleFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@media (max-width: 767px) {
  .clients-section .clients-logo-active-wrapper {
    padding: 32px 25px;
  }
}

.clients-section .clients-logo-active-wrapper .section-title {
  margin-bottom: 22px;
}

.clients-section .clients-logo-active-wrapper .section-title span {
  text-transform: none;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.clients-section .clients-logo-active-wrapper .section-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  border-radius: 1px;
}

.clients-section .clients-logo-active-wrapper .tns-controls {
  position: absolute;
  z-index: 2;
  width: calc(100% - 60px);
  display: flex;
  justify-content: space-between;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .clients-section .clients-logo-active-wrapper .tns-controls {
    width: calc(100% - 30px);
    left: 15px;
  }
}

.clients-section .clients-logo-active-wrapper .tns-controls button {
  width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: none;
  color: #234feb;
}

/* Client Logo Styling */
.single-client {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  min-height: 100px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
}

/* Ensure perfect vertical alignment for all logos */
.single-client::before {
  content: '';
  display: inline-block;
  height: 50px;
  vertical-align: middle;
}

.single-client img {
  max-height: 50px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(60%) sepia(15%) hue-rotate(250deg) saturate(0.4) opacity(0.8) brightness(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  position: relative;
}

/* Special handling for SVG logos to ensure consistent styling */
.single-client img[src*=".svg"] {
  filter: grayscale(60%) sepia(15%) hue-rotate(250deg) saturate(0.4) opacity(0.8) brightness(0.95);
}

.single-client img[src*="simpays"] {
  filter: grayscale(92%) sepia(10%) hue-rotate(250deg) saturate(0.25) opacity(0.45) brightness(1.06) contrast(0.85);
  max-height: 45px;
  max-width: 110px;
  vertical-align: baseline;
  transform: translateY(2px);
}

/* Tone down Payuni logo to harmonize */
.single-client img[alt="Payuni"],
.single-client img[src*="payuni.co.id"] {
  filter: grayscale(80%) sepia(12%) hue-rotate(250deg) saturate(0.35) opacity(0.65) brightness(0.9) contrast(0.95);
}

/* Add subtle glow effect to logos */
.single-client img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.single-client:hover img {
  filter: grayscale(0%) sepia(0%) hue-rotate(0deg) saturate(1) opacity(1) brightness(1.05) contrast(1.05);
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.15);
}

/* Ensure hover effects work consistently for all logo types */
.single-client:hover img[src*=".svg"],
.single-client:hover img[alt="Payuni"],
.single-client:hover img[src*="payuni.co.id"],
.single-client:hover img[src*="simpays"] {
  filter: grayscale(0%) sepia(0%) hue-rotate(0deg) saturate(1) opacity(1) brightness(1.05) contrast(1.05);
}

/* Enhanced hover effect for logo container */
.single-client:hover {
  transform: translateY(-2px);
  background: rgba(139, 92, 246, 0.02);
  border-radius: 12px;
}

.single-client:hover img::after {
  opacity: 0.3;
}

/* Clients Logo Active Container */
.clients-logo-active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.clients-logo-active .single-client {
  flex: 1;
  min-width: 0;
  margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .single-client {
    padding: 12px 15px;
    min-height: 90px;
  }
  
  .single-client img {
    max-height: 45px;
    max-width: 110px;
  }
}

@media (max-width: 992px) {
  .single-client {
    padding: 10px 12px;
    min-height: 80px;
  }
  
  .single-client img {
    max-height: 40px;
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .single-client {
    padding: 8px 10px;
    min-height: 70px;
  }
  
  .single-client img {
    max-height: 35px;
    max-width: 90px;
  }
}

@media (max-width: 576px) {
  .single-client {
    padding: 6px 8px;
    min-height: 60px;
  }
  
  .single-client img {
    max-height: 30px;
    max-width: 80px;
  }
}

/* =====================
    STATS SECTION CSS
======================== */
.stats-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

/* animated gradient layer */
.stats-section::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(40% 40% at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 60%),
              radial-gradient(35% 35% at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 60%),
              radial-gradient(30% 30% at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 60%);
  mix-blend-mode: screen;
  animation: floatBlobs 18s ease-in-out infinite alternate;
}

/* soft grain/shine overlay */
.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  pointer-events: none;
}

/* additional vector ornaments layered above gradient */
.stats-wrapper::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 520px;
  height: 520px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='520' viewBox='0 0 520 520'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%238B5CF6' stop-opacity='0.35'/%3E%3Cstop stop-color='%233B82F6' stop-opacity='0.15' offset='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='260' cy='260' r='240' fill='none' stroke='url(%23g)' stroke-width='6'/%3E%3Ccircle cx='260' cy='260' r='200' fill='none' stroke='url(%23g)' stroke-width='4'/%3E%3Cpath d='M60,300 C180,200 340,420 480,280' fill='none' stroke='%23ffffff' stroke-opacity='0.18' stroke-width='3'/%3E%3C/svg%3E") no-repeat center/contain;
  filter: blur(0.2px);
  opacity: 0.7;
  animation: rotateRings 30s linear infinite;
  pointer-events: none;
}

.stats-wrapper::after {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 360px;
  height: 360px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360' viewBox='0 0 360 360'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.12'%3E%3Cpath d='M0 320 H360'/%3E%3Cpath d='M0 300 H360'/%3E%3Cpath d='M0 280 H360'/%3E%3Cpath d='M0 260 H360'/%3E%3Cpath d='M0 240 H360'/%3E%3Cpath d='M0 220 H360'/%3E%3Cpath d='M0 200 H360'/%3E%3C/g%3E%3C/svg%3E") no-repeat center/contain;
  opacity: 0.6;
  animation: floatGrid 12s ease-in-out infinite alternate;
  pointer-events: none;
}

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

.stats-section .section-title h1 {
  color: #fff;
  font-weight: 700;
}

.single-stat {
  position: relative;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* subtle per-card corner accent */
.single-stat::before {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), rgba(255,255,255,0));
  transform: rotate(0deg);
}
.single-stat:nth-child(1)::before { background: radial-gradient(circle, rgba(167,139,250,0.28), rgba(167,139,250,0)); }
.single-stat:nth-child(2)::before { background: radial-gradient(circle, rgba(52,211,153,0.24), rgba(52,211,153,0)); }
.single-stat:nth-child(3)::before { background: radial-gradient(circle, rgba(244,114,182,0.24), rgba(244,114,182,0)); }

.single-stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-content h3 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.stat-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  border-radius: 10px;
  position: relative;
  animation: progressAnimation 2s ease-out;
}

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

.email-progress { background: linear-gradient(90deg, #a78bfa, #8b5cf6); width: 85%; }
.whatsapp-progress { background: linear-gradient(90deg, #34d399, #10b981); width: 70%; }
.sms-progress { background: linear-gradient(90deg, #f472b6, #ec4899); width: 60%; }

@keyframes progressAnimation { 0% { width: 0%; } 100% { width: var(--progress-width, 85%); } }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes floatBlobs { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-2%, -2%) scale(1.05); } }
@keyframes rotateRings { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes floatGrid { 0% { transform: translate(0,0); } 100% { transform: translate(10px,-8px); } }

/* =====================
    WORK PROCESS SECTION CSS
======================== */
.work-process-section .single-process {
  border-radius: 16px;
  background: #fff;
  padding: 32px;
  margin-bottom: 30px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
  text-align: center;
}

.work-process-section .single-process:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 40px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.2);
}

@media only screen and (min-width: 1400px) {
  .work-process-section .single-process {
    padding: 40px 45px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .work-process-section .single-process {
    padding: 32px 28px;
  }
}

.work-process-section .single-process .icon-style {
  font-size: 90px;
  width: 104px;
  height: 104px;
  margin: 0 auto 16px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-process-section .single-process .content h3 {
  margin-bottom: 8px;
}

.work-process-section .single-process .content p {
  margin-bottom: 26px;
}

.work-process-section .single-process .content a {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-purple);
}

.icon-style {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-style::after {
  content: '';
  position: absolute;
  background: #D9BEFE;
  opacity: .24;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 120px 8px;
}

.icon-style.-rotate-90::after {
  transform: rotate(-90deg);
}

.icon-style.-rotate-180::after {
  transform: rotate(-180deg);
}

.icon-style i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================
    FEATURE SECTION ONE CSS
======================================== */
.feature-section-1 .feature-image-1 img {
  max-width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .feature-section-1 .feature-content-wrapper {
    margin-bottom: 100px;
  }
}

.feature-section-1 .feature-content-wrapper .single-feature {
  display: flex;
  margin-bottom: 28px;
}

.feature-section-1 .feature-content-wrapper .single-feature .content h4 {
  margin-bottom: 8px;
}

.feature-icon {
  max-width: 65px;
  width: 100%;
  height: 65px;
  font-size: 48px;
  margin-right: 20px;
  margin-bottom: 20px;
}

/* =====================================
    FEATURE SECTION TWO CSS
======================================== */
.feature-section-2 {
  background: rgba(255, 255, 255, 0.64);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .feature-section-2 .feature-content-wrapper {
    margin-bottom: 100px;
  }
}

.feature-section-2 .feature-content-wrapper .section-title {
  padding-right: 75px;
}

.feature-section-2 .feature-content-wrapper .single-feature {
  display: flex;
  margin-bottom: 30px;
}

.feature-section-2 .feature-content-wrapper .single-feature .content h4 {
  margin-bottom: 8px;
  margin-right: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .feature-section-2 .feature-image-2 {
    margin-bottom: 50px;
  }
}

.feature-section-2 .feature-image-2 img {
  max-width: 100%;
}

/* =====================================
    FEATURE SECTION THREE CSS
======================================== */
.feature-section-3 {
  background-color: #f7f7f7;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .feature-section-3 .section-title {
    padding-left: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .feature-section-3 .feature-image-3 {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .feature-section-3 .feature-image-3 img {
    width: 100%;
  }
}

/* =====================================
    FEATURE SECTION FOUR CSS
======================================== */
.feature-section-4 {
  background-color: #0026D8;
}

.feature-section-4 .feature-image-4 {
  text-align: center;
}

.feature-section-4 .feature-image-4 img {
  max-width: 100%;
}

.feature-section-4 .feature-content-wrapper .section-title h1 {
  color: #fff;
}

.feature-section-4 .feature-content-wrapper .section-title p {
  color: #fff;
  font-size: 20px;
}

/* ========================
		TESTIMONIAL CSS
=========================== */
.testimonial-section {
  padding-top: 0;   /* remove top space */
  padding-bottom: 0;/* remove bottom space */
  position: relative;
  margin-bottom: -24px;
}

/* tighten title spacing inside testimonial section */
.testimonial-section .section-title { margin-bottom: 8px !important; }

/* Remove any top padding/margins on container/title */
.testimonial-section .container { padding-top: 0 !important; }
.testimonial-section .section-title { margin-top: 0 !important; padding-top: 0 !important; }
.testimonial-section .section-title h1 { margin-top: 0 !important; }

@media (max-width: 992px) {
  .testimonial-section { padding-top: 0; padding-bottom: 0; margin-bottom: -16px; }
  .testimonial-section .section-title { margin-bottom: 8px !important; }
}

.testimonial-section .testimonial-active-wrapper .tns-nav {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

@media (max-width: 767px) {
  .testimonial-section .testimonial-active-wrapper .tns-nav {
    top: auto;
    transform: translate(-50%, 0);
    bottom: 100px;
    right: auto;
    left: 50%;
  }
}

.testimonial-section .testimonial-active-wrapper .tns-nav button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.38);
  display: block;
  margin: 4px 0;
}

@media (max-width: 767px) {
  .testimonial-section .testimonial-active-wrapper .tns-nav button {
    display: inline-block;
    margin: 4px;
  }
}

.testimonial-section .testimonial-active-wrapper .tns-nav button.tns-nav-active {
  background: #234FEB;
}

.testimonial-section .testimonial-active-wrapper .section-title h1 {
  font-weight: 700;
}

@media only screen and (min-width: 1400px) {
  .testimonial-section .testimonial-active-wrapper .single-testimonial {
    padding-right: 132px;
  }
}

.testimonial-section .testimonial-active-wrapper .single-testimonial .content p {
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .testimonial-section .testimonial-active-wrapper .single-testimonial .content p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .testimonial-section .testimonial-active-wrapper .single-testimonial .content p {
    font-size: 24px;
    line-height: 34px;
  }
}

.testimonial-section .testimonial-active-wrapper .single-testimonial .info {
  margin-bottom: 25px;
}

.testimonial-section .testimonial-active-wrapper .single-testimonial .info h6 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}

.testimonial-section .testimonial-active-wrapper .single-testimonial .info p {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.64);
}

.testimonial-section .testimonial-active-wrapper .single-testimonial .video-btn a {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #234FEB;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
}

.testimonial-section .testimonial-active-wrapper .single-testimonial .video-btn a i {
  margin-right: 5px;
}

.testimonial-section .testimonial-image {
  position: absolute;
  right: 10%;
  top: 50%; /* center vertically with content */
  transform: translateY(-50%);
  width: clamp(320px, 42vw, 560px);
  max-width: unset;
  aspect-ratio: 4 / 3;
  overflow: visible;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.testimonial-image::after { content: none !important; }

.testimonial-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 800ms ease-in-out, transform 800ms ease-in-out;
  opacity: 0;
  -webkit-mask-image: radial-gradient(85% 85% at 60% 40%, #000 72%, rgba(0,0,0,0.4) 86%, transparent 100%);
  mask-image: radial-gradient(85% 85% at 60% 40%, #000 72%, rgba(0,0,0,0.4) 86%, transparent 100%);
}

.testimonial-hero.visible { opacity: 1; }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .testimonial-section .testimonial-image {
    display: none;
  }
}

.testimonial-section .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 1200px) {
  .testimonial-image { right: 6%; width: clamp(300px, 48vw, 520px); }
}
@media (max-width: 992px) {
  .testimonial-section { padding-top: 6px; padding-bottom: 10px; }
  .testimonial-image { position: relative; right: auto; top: auto; transform: none; margin: 16px auto 0; width: min(520px, 80vw); }
}

/* ==========================
    FOOTER CSS
============================= */
.footer .cta-section {
  position: relative;
  z-index: 1;
  margin-bottom: -350px;
}

.footer .cta-section .cta-wrapper {
  background-image: url("../images/cta-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 72px 30px 97px;
  border-radius: 32px;
}

.footer .cta-section .cta-wrapper .cta-content-wrapper .section-title span {
  font-weight: 500;
  font-size: 44px;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 767px) {
  .footer .cta-section .cta-wrapper .cta-content-wrapper .section-title span {
    font-size: 22px;
  }
}

.footer .cta-section .cta-wrapper .cta-content-wrapper .section-title h1 {
  font-weight: bold;
  font-size: 52px;
  line-height: 65px;
  color: #fff;
}

@media (max-width: 767px) {
  .footer .cta-section .cta-wrapper .cta-content-wrapper .section-title h1 {
    font-size: 32px;
    line-height: 42px;
  }
}

.footer .cta-section .cta-wrapper .cta-content-wrapper .section-title p {
  color: #fff;
  font-size: 20px;
  line-height: 28px;
}

@media (max-width: 767px) {
  .footer .cta-section .cta-wrapper .cta-content-wrapper .section-title p {
    font-size: 16px;
    line-height: 24px;
  }
}

.footer .footer-content {
  background-image: url("../images/footer-bg.svg");
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 450px;
}

.footer .footer-content .widget-wrapper {
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .footer .footer-content .widget-wrapper {
    padding-bottom: 20px;
  }
}

.footer .footer-content .widget-wrapper .footer-widget {
  margin-bottom: 50px;
}

@media only screen and (min-width: 1400px) {
  .footer .footer-content .widget-wrapper .footer-widget.widget-info {
    padding-right: 70px;
  }
}

.footer .footer-content .widget-wrapper .footer-widget .logo {
  margin-bottom: 35px;
}

.footer .footer-content .widget-wrapper .footer-widget h3 {
  font-weight: 300;
  color: #fff;
  margin-bottom: 10px;
}

.footer .footer-content .widget-wrapper .footer-widget p {
  color: #fff;
}

.footer .footer-content .widget-wrapper .footer-widget h6 {
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #fff;
}

.footer .footer-content .widget-wrapper .footer-widget a {
  color: #fff;
}

.footer .footer-content .widget-wrapper .footer-widget .links li a {
  margin-bottom: 12px;
}

.footer .footer-content .widget-wrapper .footer-widget .socials {
  display: flex;
}

.footer .footer-content .widget-wrapper .footer-widget .socials li a {
  color: rgba(255, 255, 255, 0.64);
  width: 32px;
  height: 32px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px;
}

.footer .footer-content .widget-wrapper .footer-widget .socials li a:hover {
  color: #fff;
}

.footer .copyright-wrapper {
  padding: 35px 0px;
  text-align: center;
}

.footer .copyright-wrapper p {
  color: #fff;
}

.footer .copyright-wrapper p a {
  color: inherit;
}

.footer .copyright-wrapper p a:hover {
  color: #234FEB;
}

/* ======================
    DEFAULT CSS
========================= */
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

/* Professional feature icons */
.pro-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(60% 60% at 50% 50%, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.06) 100%);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.15);
}

.pro-icon svg {
  width: 100%;
  height: 100%;
}

.pro-icon .draw {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: drawLine 1s ease forwards;
}

.pro-icon .draw.delay-1 {
  animation-delay: 0.25s;
}

.single-process:hover .pro-icon {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(139, 92, 246, 0.25);
  transition: all 0.3s ease;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* Pricing buttons - modern pill */
.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
  border-radius: 14px;
  padding: 14px 22px;
  text-transform: none;
}

/* solid variant inherits .main-btn default gradient; refine */
.pricing-footer .main-btn:not(.border-btn).pricing-btn {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  box-shadow: 0 10px 24px rgba(77, 124, 255, 0.25);
}

/* border variant */
.pricing-footer .main-btn.border-btn.pricing-btn {
  border-width: 2px;
  border-color: rgba(139, 92, 246, 0.9);
  color: rgba(76, 29, 149, 0.95);
  background: transparent;
}

/* arrow animation */
.pricing-btn .btn-arrow {
  display: inline-block;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform: translateX(0);
}

.pricing-btn:hover .btn-arrow {
  transform: translateX(4px);
  opacity: 0.9;
}

/* hover lift */
.pricing-btn:hover {
  transform: translateY(-2px);
}

/* full-width on small screens for legibility */
@media (max-width: 576px) {
  .pricing-footer .main-btn.pricing-btn {
    width: 100%;
  }
}

/* Footer refinements */
.footer .footer-widget h6 {
  color: rgba(255, 255, 255, 0.95);
}

.footer .footer-widget .links li,
.footer .footer-widget .links li a {
  color: rgba(255, 255, 255, 0.85);
}

.footer .footer-widget .links li strong {
  color: rgba(255, 255, 255, 0.95);
}

/* keep company name in one line where space allows */
.footer .footer-widget .links .company-name {
  white-space: nowrap;
}

/* force single line for specific entries */
.footer .footer-widget .links .no-wrap {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .footer .footer-widget .links .company-name {
    white-space: normal; /* allow wrap on very small screens */
  }
  .footer .footer-widget .links .no-wrap {
    white-space: normal; /* avoid overflow on extra small devices */
  }
}

/* Animated message send bursts in hero */
.animated-background .message-bursts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.animated-background .message-bursts .msg {
  position: absolute;
  width: 22px; /* enlarged */
  height: 22px; /* enlarged */
  border-radius: 6px;
  display: block;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  animation: msgFlyLeft 6s linear infinite;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* base positions moved to the left/upper area */
.animated-background .message-bursts .msg { top: 38%; left: 42%; }
.animated-background .message-bursts .msg.email { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }
.animated-background .message-bursts .msg.whatsapp { background: linear-gradient(135deg, #34d399, #10b981); border-radius: 50%; }
.animated-background .message-bursts .msg.sms { background: linear-gradient(135deg, #f472b6, #ec4899); }

/* staggered duplicates around the same area */
.animated-background .message-bursts .delay-1 { animation-delay: 1.2s; top: 36%; left: 40%; }
.animated-background .message-bursts .delay-2 { animation-delay: 2.4s; top: 41%; left: 44%; }
.animated-background .message-bursts .delay-3 { animation-delay: 3.6s; top: 39%; left: 46%; }

@keyframes msgFlyLeft {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  10% { opacity: 1; }
  60% { opacity: 1; }
  100% { opacity: 0; transform: translate(-260px, -180px) scale(1.15); }
}

/* icon overlays */
.animated-background .message-bursts .msg.email::after {
  content: '\2709';
  position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 12px;
}
.animated-background .message-bursts .msg.whatsapp::after {
  content: '\f232';
  position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 12px; font-family: 'Font Awesome 5 Brands', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.animated-background .message-bursts .msg.sms::after {
  content: '\1F4AC';
  position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 12px;
}

/* Responsive placement for Android/mobile view */
@media (max-width: 767px) {
  .animated-background .message-bursts { z-index: 1; }
  .animated-background .message-bursts .msg {
    width: 18px;
    height: 18px;
    animation-duration: 5.5s;
  }
  /* Start nearer to center-top of phone on mobile */
  .animated-background .message-bursts .msg { top: 52%; left: 58%; }
  .animated-background .message-bursts .delay-1 { top: 50%; left: 55%; }
  .animated-background .message-bursts .delay-2 { top: 55%; left: 60%; }
  .animated-background .message-bursts .delay-3 { top: 53%; left: 62%; }
  @keyframes msgFlyLeft {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
    12% { opacity: 1; }
    60% { opacity: 1; }
    100% { opacity: 0; transform: translate(-160px, -120px) scale(1.05); }
  }
}

/* Testimonial images soft mask */
.testimonial-face {
  width: 56px; /* standardized small avatar size */
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.95) contrast(0.95) brightness(1);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  position: relative;
}

/* Ensure slider doesn't upscale avatars */
.testimonial-active .single-testimonial .image {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonial-active .single-testimonial .image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 56px;
  max-height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

@media (min-width: 1200px) {
  .testimonial-face,
  .testimonial-active .single-testimonial .image,
  .testimonial-active .single-testimonial .image img {
    width: 64px;
    height: 64px;
    max-width: 64px;
    max-height: 64px;
  }
}

/* Decorative curved gradient at bottom to hide residual gap */
.testimonial-section { position: relative; overflow: hidden; border-top: 1px solid rgba(0,0,0,0.06); }
.testimonial-image { z-index: 1; }
.testimonial-section::after {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 320px;
  /* Lighter, smoother gradient curve */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23C7B8FB' stop-opacity='0.16'/%3E%3Cstop offset='1' stop-color='%2399B9FF' stop-opacity='0.10'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0,240 C280,200 560,280 820,230 C1060,190 1260,210 1440,220 L1440,320 L0,320 Z' fill='url(%23g)'/%3E%3C/svg%3E") no-repeat bottom center/cover;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 992px) {
  .testimonial-section::after { height: 220px; }
}
