/*-----------------------------------------------------------------------------------

    Template Name: Appi - Bootstrap 5 Creative App and Software Landing Page
    Author: UIdeck

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. Header
    03. Hero
	04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
    01.COMMON css 
===========================*/
/* Import new brand fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Common CSS - Updated with new Chatwiser branding */
/* Color updates: #052CFF -> #052CFF, #0ADCC7 -> #0ADCC7, #052CFF -> #052CFF */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #505478;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #120132;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 45px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #505478;
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gradient-1 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4354e2), to(#6ca3f3));
  background-image: linear-gradient(#4354e2 0%, #6ca3f3 100%);
  color: #fff;
}

.gradient-2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#052CFF), to(#0ADCC7));
  background-image: linear-gradient(#052CFF 0%, #0ADCC7 100%);
  color: #fff;
}

.gradient-3 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2cc590), to(#75eb92));
  background-image: linear-gradient(#2cc590 0%, #75eb92 100%);
  color: #fff;
}

.gradient-4 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#a866d1), to(#f9a4d7));
  background-image: linear-gradient(#a866d1 0%, #f9a4d7 100%);
  color: #fff;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  padding: 17px 30px;
  margin-bottom: 20px;
  color: #868AAA;
  -webkit-box-shadow: 0px 0px 51px rgba(180, 180, 180, 0.16);
  box-shadow: 0px 0px 51px rgba(180, 180, 180, 0.16);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border: 1px solid transparent;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  opacity: 1;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
}

input:focus,
textarea:focus {
  border-color: #052CFF;
}

.back-to-top {
  width: 45px;
  height: 45px;
  background: #052CFF;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.back-to-top.btn-hover {
  position: fixed;
  z-index: 999;
}

.back-to-top:hover {
  color: #fff;
}

*:focus {
  outline: none;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 20px 35px;
  font-size: 18px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: linear-gradient(45deg, #0441E6, #09C4B8);
}

.main-btn:hover {
  color: #fff;
}

.btn-hover {
  position: relative;
  z-index: 1;
}

.btn-hover::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.1);
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.btn-hover:hover::after {
  width: 100%;
}

/*===== All Section Title Style =====*/
.section_title .title {
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section_title .title {
    font-size: 26px;
  }
}

.section_title p {
  margin-top: 15px;
  font-size: 18px;
  opacity: 0.5;
}

.section_title.section_title_2 .title,
.section_title.section_title_2 p {
  color: #fff;
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .ytp-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .ytp-spinner .ytp-spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  -webkit-animation: ytp-spinner-linspin 1568.2353ms linear infinite;
  animation: ytp-spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .ytp-spinner-circle {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: #052CFF #052CFF #F9F9F9;
  border-radius: 50%;
  border-width: 6px;
}

.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #F9F9F9;
  -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #F9F9F9;
  -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@-webkit-keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

@keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

.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;
}

/*===========================
    02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.header_navbar {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 999;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  /* border-bottom: 1px solid rgba(5, 44, 255, 0.1); */
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-box-shadow: 0px 8px 25px rgba(5, 44, 255, 0.15);
  box-shadow: 0px 8px 25px rgba(5, 44, 255, 0.15);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 8px 0;
}

.navbar {
  padding: 15px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.navbar-brand img {
  width: 160px;
  transition: all 0.3s ease;
}



@media (max-width: 767px) {
  .navbar-brand img {
    width: 140px;
  }
  
  .navbar-brand::after {
    font-size: 20px;
  }
}

.navbar-toggler {
  padding: 0;
  border: none;
  background: none;
}

.navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 3px;
  background: linear-gradient(45deg, #052CFF, #0ADCC7);
  display: block;
  margin: 6px 0;
  position: relative;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 9px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -9px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 25px rgba(5, 44, 255, 0.15);
    box-shadow: 0px 15px 25px rgba(5, 44, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 25px rgba(5, 44, 255, 0.15);
    box-shadow: 0px 15px 25px rgba(5, 44, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    margin-left: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item {
    margin: 8px 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item {
    margin: 8px 0;
  }
}

.navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 600;
  color: #120132 !important;
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-nav .nav-item a.button{
  color: #FFF !important;
}

/* Modern hover effect */
.navbar-nav .nav-item a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(45deg, #052CFF, #0ADCC7);
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  transform: translateX(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 12px 16px;
    color: #120132;
    border-radius: 8px;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 12px 16px;
    color: #120132;
    border-radius: 8px;
  }
}

.navbar-nav .nav-item a.active, .navbar-nav .nav-item a:hover {
  color: #052CFF;
  /* background: rgba(5, 44, 255, 0.05); */
}

.navbar-nav .nav-item a.active::before, .navbar-nav .nav-item a:hover::before {
  width: 100%;
}

/* Login button special styling */
.navbar-nav .nav-item:last-child a {
  background: linear-gradient(45deg, #052CFF, #0ADCC7);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  margin-left: 15px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-nav .nav-item:last-child a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 44, 255, 0.3);
  background: linear-gradient(45deg, #0441E6, #09C4B8);
}

.navbar-nav .nav-item:last-child a::before {
  display: none;
}

.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: #505478;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

@media (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: #505478;
}

.navbar-nav .nav-item .sub-menu li a.active, .navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #052CFF;
}

.navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

.sticky .navbar-toggler .toggler-icon {
  background-color: #505478;
}

.sticky .navbar-nav .nav-item a {
  color: #505478;
}

.sticky .navbar-nav .nav-item a::before {
  background-color: #052CFF;
}

.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: #052CFF;
}

.hero-area {
  padding-top: 160px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area {
    padding-top: 180px;
  }
}

.hero-area .hero-content {
  padding-bottom: 80px;
}

.hero-area .hero-content h2 {
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-content h2 {
    font-size: 42px;
    line-height: 55px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-content h2 {
    font-size: 38px;
    line-height: 50px;
  }
}

.hero-area .hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 28px;
}

.hero-area .hero-content .hero-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-area .hero-content .hero-btns .main-btn {
  margin-right: 20px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-content .hero-btns .main-btn {
    margin-right: 20px;
  }
}

.hero-area .hero-content .hero-btns .watch-btn {
  margin-bottom: 20px;
}

.hero-area .hero-content .hero-btns .watch-btn i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #a866d1;
  font-size: 20px;
  text-align: center;
  line-height: 45px;
  background: -webkit-gradient(linear, left top, left bottom, from(#a866d1), to(#f9a4d7));
  background: linear-gradient(#a866d1 0%, #f9a4d7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-area .hero-content .hero-btns .watch-btn span {
  font-size: 18px;
  font-weight: 600;
  margin-left: 20px;
  display: inline-block;
  color: #505478;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.hero-area .hero-content .hero-btns .watch-btn span:hover {
  color: #052CFF;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-content .hero-btns .watch-btn span {
    margin-left: 15px;
  }
}

.hero-area .counter-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: 30px;
}

.hero-area .counter-up .single-counter {
  padding: 0 40px;
  position: relative;
}

.hero-area .counter-up .single-counter::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 24px;
  background: rgba(80, 84, 120, 0.6);
  right: 0;
  top: 10px;
}

.hero-area .counter-up .single-counter:first-child {
  padding-left: 0;
}

.hero-area .counter-up .single-counter:last-child {
  padding-right: 0;
}

.hero-area .counter-up .single-counter:last-child::after {
  display: none;
}

.hero-area .counter-up .single-counter span {
  text-align: center;
  display: block;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .hero-area .counter-up .single-counter span {
    font-size: 16px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-area .counter-up .single-counter span {
    font-size: 18px;
  }
}

.hero-area .counter-up .single-counter span.countup {
  font-size: 30px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .hero-area .counter-up .single-counter span.countup {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-area .counter-up .single-counter span.countup {
    font-size: 24px;
  }
}

.hero-area .hero-img .img-screen {
  position: absolute;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area .hero-img .img-screen {
    width: 40%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-img .img-screen {
    width: 40%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-img .img-screen {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-img .img-screen {
    display: none;
  }
}

.hero-area .hero-img .img-screen.screen-1 {
  right: 25%;
  bottom: -350px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area .hero-img .img-screen.screen-1 {
    right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-img .img-screen.screen-1 {
    right: 0;
  }
}



.hero-area .hero-img .img-screen.screen-3 {
  right: -125px;
  bottom: -475px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area .hero-img .img-screen.screen-3 {
    right: -250px;
    bottom: -250px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-img .img-screen.screen-3 {
    right: -180px;
    bottom: -160px;
  }
}

.feature-area .single-feature {
  padding: 45px 30px;
  border-radius: 10px;
  background: #fff;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px -33px 51px rgba(209, 209, 209, 0.16);
  box-shadow: 0px -33px 51px rgba(209, 209, 209, 0.16);
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-area .single-feature {
    padding: 40px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-area .single-feature {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .feature-area .single-feature {
    margin-bottom: 30px;
  }
}

.feature-area .single-feature::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}

.feature-area .single-feature.item-1::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#4354e2), to(#6ca3f3));
  background: linear-gradient(#4354e2 0%, #6ca3f3 100%);
}

.feature-area .single-feature.item-2::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#052CFF), to(#0ADCC7));
  background: linear-gradient(#052CFF 0%, #0ADCC7 100%);
}

.feature-area .single-feature.item-3::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#2cc590), to(#75eb92));
  background: linear-gradient(#2cc590 0%, #75eb92 100%);
}

.feature-area .single-feature.item-4::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#a866d1), to(#f9a4d7));
  background: linear-gradient(#a866d1 0%, #f9a4d7 100%);
}

.feature-area .single-feature:hover {
  -webkit-box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.26);
  box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.26);
}

.feature-area .single-feature:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.feature-area .single-feature:hover .feature-icon {
  border-radius: 50%;
}

.feature-area .single-feature .feature-content h4 {
  margin-bottom: 20px;
  font-size: 23px;
  font-weight: 600;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-area .single-feature .feature-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.feature-area .single-feature .feature-content p {
  font-size: 16px;
  line-height: 24px;
  color: #868AAA;
}

.icon-style {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .how-work-area {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .how-work-area {
    padding-top: 100px;
  }
}

.how-work-area .how-work-img {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .how-work-area .how-work-img {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .how-work-area .how-work-img {
    margin-bottom: 30px;
  }
}

.how-work-area .how-work-img .dots-shape {
  position: absolute;
  z-index: -1;
  right: 30px;
  bottom: 0;
}

.how-work-area .accordion-btn button .icon-style {
  border-radius: 50%;
}

.how-work-area .accordion-btn button.collapsed .icon-style {
  border-radius: 5px;
}

.how-work-area .accordion-btn button:hover .icon-style {
  border-radius: 50%;
}

.accordion-style .single-accordion {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 51px rgba(180, 180, 180, 0.16);
  box-shadow: 0px 0px 51px rgba(180, 180, 180, 0.16);
}

.accordion-style .single-accordion .accordion-btn button {
  padding: 18px 30px;
  padding-right: 50px;
  font-size: 23px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: #fff;
  position: relative;
  white-space: normal;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: #052CFF;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .accordion-style .single-accordion .accordion-btn button {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-style .single-accordion .accordion-btn button {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .accordion-style .single-accordion .accordion-btn button {
    font-size: 16px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .accordion-style .single-accordion .accordion-btn button {
    font-size: 18px;
  }
}

.accordion-style .single-accordion .accordion-btn button.collapsed {
  color: #505478;
}

.accordion-style .single-accordion .accordion-btn button:hover {
  color: #052CFF;
}

.accordion-style .single-accordion .accordion-btn button.collapsed::after {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}

.accordion-style .single-accordion .accordion-btn button::after {
  font: normal normal normal 1em/1 "LineIcons";
  content: "\ea5e";
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: rotate(0deg) translateY(-50%);
          transform: rotate(0deg) translateY(-50%);
  font-size: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.accordion-style .single-accordion .accordion-btn button .icon-style {
  margin-right: 20px;
}

.accordion-style .single-accordion .accordion-content {
  padding: 10px 30px 30px;
}

.video-area .video-header {
  padding-top: 100px;
  padding-bottom: 180px;
  background-image: url("../images/video-bg.svg");
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .video-area .video-header {
    padding-bottom: 100px;
  }
}

.video-area .video-frame {
  position: relative;
  margin: auto;
  margin-top: -240px;
  z-index: 2;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .video-area .video-frame {
    margin-top: -150px;
  }
}

.video-area .video-frame a {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(#052CFF), to(#0ADCC7));
  background: linear-gradient(#052CFF 0%, #0ADCC7 100%);
  color: #fff;
}

.video-area .video-frame a.btn-hover::after {
  width: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  background: rgba(255, 255, 255, 0.15);
}

.video-area .video-frame a.btn-hover:hover::after {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.screenshot-area {
  background: #F7F8FE;
  position: relative;
  z-index: 1;
}

.screenshot-area .shape {
  position: absolute;
  z-index: -1;
}

.screenshot-area .shape.line-shape-1 {
  top: 0;
  left: 0;
}

.screenshot-area .shape.line-shape-2 {
  top: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.screenshot-area .screenshot-slider-wrapper {
  position: relative;
}

.screenshot-area .screenshot-slider-wrapper .screenshot-slider {
  margin-top: 50px;
}

.screenshot-area .screenshot-slider-wrapper .screenshot-slider .single-screen {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.screenshot-area .screenshot-slider-wrapper .screenshot-slider .single-screen.swiper-slide.swiper-slide-active {
  margin-top: 0px;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.screenshot-area .screenshot-slider-wrapper .screenshot-slider .single-screen.swiper-slide.swiper-slide-next, .screenshot-area .screenshot-slider-wrapper .screenshot-slider .single-screen.swiper-slide.swiper-slide-prev {
  margin-top: 10px;
}

.screenshot-area .screenshot-slider-wrapper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#052CFF), to(#0ADCC7));
  background: linear-gradient(#052CFF 0%, #0ADCC7 100%);
  opacity: .17;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.screenshot-area .screenshot-slider-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.screenshot-area .screenshot-slider-wrapper .screenshot-frame {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: 248px;
}

.testimonial-area .single-testimonial {
  padding: 48px 35px 35px;
  border-radius: 25px;
  position: relative;
  z-index: 1;
  margin: 76px 0;
}

.testimonial-area .single-testimonial svg {
  position: absolute;
  top: -76px;
  left: -76px;
  z-index: -1;
}

.testimonial-area .single-testimonial .testimonial-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px;
}

.testimonial-area .single-testimonial .testimonial-header .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.testimonial-area .single-testimonial .testimonial-header .client-info .client-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonial-area .single-testimonial .testimonial-header .client-info .client-details h6 {
  font-size: 17px;
  font-weight: 600;
}

.testimonial-area .single-testimonial .testimonial-header .client-info .client-details span {
  font-size: 14px;
  color: #868AAA;
}

.testimonial-area .single-testimonial .testimonial-header .client-rating span {
  margin-left: 10px;
  font-size: 18px;
  color: #E96A20;
}

.testimonial-area .single-testimonial .testimonial-header .client-rating span.not-rated {
  color: #DBBFAE;
}

.testimonial-area .single-testimonial .quote {
  margin-bottom: 20px;
}

.testimonial-area .single-testimonial .quote i {
  font-size: 40px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-area .testimonial-slider-wrapper {
  position: relative;
}

.testimonial-area .testimonial-slider-wrapper .tns-controls {
  position: absolute;
  top: -20px;
  right: 0;
  left: auto;
  z-index: 9;
}

.testimonial-area .testimonial-slider-wrapper .tns-controls button {
  border: none;
  background: none;
  font-size: 30px;
  color: #505478;
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px;
}

.testimonial-area .testimonial-slider-wrapper .tns-controls button:hover {
  color: #052CFF;
}

.pricing-area .single-price {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px -31px 51px rgba(165, 165, 165, 0.16);
  box-shadow: 0px -31px 51px rgba(165, 165, 165, 0.16);
  padding: 40px 50px 0;
  margin-bottom: 60px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.pricing-area .single-price .price-icon {
  margin-bottom: 25px;
}

.pricing-area .single-price h4 {
  font-size: 23px;
  font-weight: 600;
}

.pricing-area .single-price .package-price {
  color: #052CFF;
}

.pricing-area .single-price .package-details {
  margin-bottom: 30px;
}

.pricing-area .single-price .package-details li {
  font-size: 16px;
  line-height: 32px;
  color: #868AAA;
}

.pricing-area .single-price .price-btn {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  /* background: #868AAA; */
  /* margin-bottom: -25px; */
}

.pricing-area .single-price:hover {
  -webkit-box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.16);
  box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.16);
}

.pricing-area .single-price:hover .price-icon {
  border-radius: 50%;
}

.pricing-area .single-price.active {
  -webkit-box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.16);
  box-shadow: 0px 0px 51px rgba(165, 165, 165, 0.16);
}

.pricing-area .single-price.active .price-btn {
  background: -webkit-gradient(linear, left top, left bottom, from(#052CFF), to(#0ADCC7));
  background: linear-gradient(#052CFF 0%, #0ADCC7 100%);
}

.pricing-area .pricing-nav .nav-pills .nav-item .nav-link {
  color: #505478;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  z-index: 1;
}

.pricing-area .pricing-nav .nav-pills .nav-item .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#052CFF), to(#0ADCC7));
  background: linear-gradient(#052CFF 0%, #0ADCC7 100%);
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: inherit;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.pricing-area .pricing-nav .nav-pills .nav-item .nav-link.active {
  color: #fff;
  background: none;
}

.pricing-area .pricing-nav .nav-pills .nav-item .nav-link.active::after {
  width: 100%;
}

.contact-area h3 {
  font-size: 30px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .contact-area h3 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-area h3 {
    font-size: 26px;
  }
}

.contact-area .contact-form-wrapper .contact-form button {
  font-weight: 700;
  padding: 17px 40px;
}

.contact-area .contact-form-wrapper .contact-form button.btn-hover::after {
  width: 40%;
  opacity: 0;
}

.contact-area .contact-form-wrapper .contact-form button.btn-hover:hover::after {
  opacity: 1;
  width: 100%;
}

.download-area {
  margin-bottom: -230px;
  position: relative;
  z-index: 9;
}

.download-area .download-wrapper {
  background-image: url("../images/download-bg.svg");
}

.download-area .download-wrapper .download-content {
  padding: 125px 0;
}

.download-area .download-wrapper .download-content .download-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.download-area .download-wrapper .download-content .download-btns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 13px 30px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 6px rgba(123, 123, 123, 0.16);
  box-shadow: 0px 3px 6px rgba(123, 123, 123, 0.16);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: #505478;
}

.download-area .download-wrapper .download-content .download-btns a:hover {
  color: #052CFF;
}

.download-area .download-wrapper .download-content .download-btns a.btn-hover::after {
  background: rgba(222, 80, 136, 0.05);
}

.download-area .download-wrapper .download-content .download-btns a span.icon {
  font-size: 24px;
  margin-right: 20px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.download-area .download-wrapper .download-content .download-btns a span.text {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
}

.download-area .download-wrapper .download-content .download-btns a span.text b {
  font-size: 12px;
  font-weight: 400;
  display: block;
}

.hero-area {
  background-image: url("../images/hero-bg.png");
  padding-top: 65px;
}

.footer-area {
  background-image: url("../images/footer-bg.png");
  padding-top: 65px;
}

.footer-area .footer-widget {
  margin-bottom: 60px;
}

.footer-area .footer-widget h4 {
  margin-bottom: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-widget h4 {
    font-size: 18px;
  }
}

.footer-area .footer-widget a, .footer-area .footer-widget p {
  font-size: 16px;
  line-height: 26px;
  color: #868AAA;
}

.footer-area .footer-widget ul li a {
  line-height: 32px;
}

.footer-area .footer-widget ul li a:hover {
  color: #052CFF;
}

.footer-area .footer-widget .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.footer-area .footer-widget .social-links li {
  margin-right: 15px;
}

.footer-area .footer-widget .social-links li:last-child {
  margin-right: 0;
}

.footer-area .footer-widget .social-links li a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer-area .footer-widget .social-links li a.facebook {
  color: #6598FE;
}

.footer-area .footer-widget .social-links li a.facebook:hover {
  background: #6598FE;
  color: #fff;
}

.footer-area .footer-widget .social-links li a.twitter {
  color: #5FC5F2;
}

.footer-area .footer-widget .social-links li a.twitter:hover {
  background: #5FC5F2;
  color: #fff;
}

.footer-area .footer-widget .social-links li a.instagram {
  color: #F70000;
}

.footer-area .footer-widget .social-links li a.instagram:hover {
  background: #F70000;
  color: #fff;
}

.footer-area .footer-widget .social-links li a.linkedin {
  color: #336DB8;
}

.footer-area .footer-widget .social-links li a.linkedin:hover {
  background: #336DB8;
  color: #fff;
}

.footer-area .footer-widget .subscribe-form {
  overflow: hidden;
}

.footer-area .footer-widget .subscribe-form input {
  padding: 17px 25px;
}

.footer-area .footer-widget .subscribe-form button {
  padding: 17px 40px;
  float: right;
  clear: both;
  font-size: 16px;
  font-weight: 700;
}

.footer-area .footer-cradit {
  padding: 35px 0;
  border-top: 1px solid rgba(134, 138, 170, 0.32);
}

.footer-area .footer-cradit p {
  color: #868AAA;
  font-size: 14px;
}

.footer-area .footer-cradit p a {
  color: #505478;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer-area .footer-cradit p a:hover {
  color: #052CFF;
}

.footer-area .logo{max-width: 250px;}
/*# sourceMappingURL=style.css.map */

.cookiealert{
  position: fixed;
  left: 0;
  bottom:0;
  background: #000;
  opacity: .6;
  width: 100%;
  margin-top: 100px;
  z-index: 998;
}


/* .hero-area .hero-content h2,.hero-area .hero-content h3,.hero-area .hero-content p{text-shadow: .5px .5px blue !important;} */
button[data-action="start"],button[data-action="stop"]{display: none !important;}

.btn-primary {
  background-color: #052CFF;
  border-color: #052CFF;
}

.btn-primary:hover {
  background-color: #0441E6;
  border-color: #0441E6;
}

.text-primary {
  color: #052CFF !important;
}

.bg-primary {
  background-color: #052CFF !important;
}

/* Hero buttons with stats container */
.hero-btns-with-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-btns {
  display: flex;
  align-items: center;
}

/* Social Proof Statistics - Hero Section */
.social-proof-stats {
  margin-top: 0;
  padding: 0;
}

.stats-container {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  padding: 0px;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: fit-content;
}

.stats-container:hover {
  /* transform: translateY(-2px); */
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-item:not(:last-child) {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(5, 44, 255, 0.3);
}

.stat-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #052CFF;
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-size: 14px;
  font-weight: 600;
  color: #052CFF;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.stat-suffix {
  font-size: 14px;
  font-weight: 600;
  color: #052CFF;
  font-family: 'Inter', sans-serif;
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: #120132;
  font-family: 'Inter', sans-serif;
  margin-left: 4px;
}

/* Responsive Design for Statistics */
@media (max-width: 1024px) {
  .hero-btns-with-stats {
    gap: 20px;
  }
  
  .stats-container {
    gap: 20px;
    padding: 12px 20px;
    border-radius: 40px;
  }
  
  .stat-item:not(:last-child)::after {
    right: -10px;
    height: 16px;
  }
  
  .stat-number, .stat-suffix, .stat-label {
    font-size: 12px;
  }
  
  .stat-icon {
    width: 14px;
    height: 14px;
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .hero-btns-with-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .stats-container {
    gap: 15px;
    padding: 10px 18px;
    border-radius: 35px;
  }
  
  .stat-number, .stat-suffix, .stat-label {
    font-size: 11px;
  }
  
  .stat-icon {
    width: 13px;
    height: 13px;
    font-size: 9px;
  }
}

@media (max-width: 576px) {
  .hero-btns-with-stats {
    gap: 15px;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 25px;
    width: 100%;
    max-width: 280px;
  }
  
  .stat-item {
    justify-content: center;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(5, 44, 255, 0.2);
    padding-bottom: 8px;
    margin-bottom: 4px;
  }
  
  .stat-number, .stat-suffix, .stat-label {
    font-size: 12px;
  }
  
  .stat-icon {
    width: 14px;
    height: 14px;
    font-size: 10px;
  }
}

/* Hero buttons with stats container */
.hero-btns-with-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-btns {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Social Proof Statistics - Hero Section */
.social-proof-stats {
  margin-top: 0;
  padding: 0;
  flex-shrink: 1;
  min-width: 0;
}

.stats-container {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: nowrap;
  background: transparent;
  padding: 15px 25px;
  border-radius: 50px;
  border: 2px solid rgba(5, 44, 255, 0.2);
  transition: all 0.3s ease;
  width: fit-content;
  min-width: 0;
}

.stats-container:hover {
  transform: translateY(-2px);
  border-color: rgba(5, 44, 255, 0.4);
  box-shadow: 0 8px 20px rgba(5, 44, 255, 0.15);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 5px 0;
  white-space: nowrap;
  min-width: 0;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-item:not(:last-child) {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(5, 44, 255, 0.3);
}

.stat-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #052CFF;
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  align-items: baseline;
  gap: 2px;
  min-width: 0;
}

.stat-number {
  font-size: 14px;
  font-weight: 600;
  color: #052CFF;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.stat-suffix {
  font-size: 14px;
  font-weight: 600;
  color: #052CFF;
  font-family: 'Inter', sans-serif;
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: #120132;
  font-family: 'Inter', sans-serif;
  margin-left: 4px;
  white-space: nowrap;
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .hero-btns-with-stats {
    gap: 40px;
  }
  
  .stats-container {
    gap: 35px;
    padding: 18px 30px;
  }
  
  .stat-number, .stat-suffix, .stat-label {
    font-size: 16px;
  }
  
  .stat-icon {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
}

/* Medium Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-btns-with-stats {
    gap: 25px;
  }
  
  .stats-container {
    gap: 25px;
    padding: 15px 22px;
  }
  
  .stat-number, .stat-suffix, .stat-label {
    font-size: 13px;
  }
  
  .stat-icon {
    width: 15px;
    height: 15px;
    font-size: 11px;
  }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-btns-with-stats {
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
  
  .stats-container {
    gap: 20px;
    padding: 12px 20px;
    border-radius: 40px;
  }
  
  .stat-item:not(:last-child)::after {
    right: -10px;
    height: 16px;
  }
  
  .stat-number, .stat-suffix, .stat-label {
    font-size: 12px;
  }
  
  .stat-icon {
    width: 14px;
    height: 14px;
    font-size: 10px;
  }
}

/* Small Tablet/Large Phone (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-btns-with-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  
  .hero-btns {
    width: 100%;
    justify-content: center;
  }
  
  .hero-btns .main-btn {
    padding: 18px 30px;
    font-size: 16px;
  }
  
  .stats-container {
    gap: 18px;
    padding: 12px 20px;
    border-radius: 35px;
    justify-content: center;
  }
  
  .stat-number, .stat-suffix, .stat-label {
    font-size: 12px;
  }
  
  .stat-icon {
    width: 14px;
    height: 14px;
    font-size: 10px;
  }
}

/* Mobile (375px - 575px) */
@media (min-width: 375px) and (max-width: 575px) {
  .hero-btns-with-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
  
  .hero-btns {
    width: 100%;
    justify-content: center;
  }
  
  .hero-btns .main-btn {
    padding: 16px 25px;
    font-size: 15px;
    width: 100%;
    max-width: 280px;
  }
  
  .stats-container {
    gap: 15px;
    padding: 10px 16px;
    border-radius: 30px;
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
  }
  
  .stat-item:not(:last-child)::after {
    right: -7px;
    height: 14px;
  }
  
  .stat-number, .stat-suffix, .stat-label {
    font-size: 11px;
  }
  
  .stat-icon {
    width: 12px;
    height: 12px;
    font-size: 9px;
  }
  
  .stat-label {
    margin-left: 2px;
  }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
  .hero-btns-with-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  
  .hero-btns {
    width: 100%;
    justify-content: center;
  }
  
  .hero-btns .main-btn {
    padding: 14px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 260px;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 25px;
    width: 100%;
    max-width: 240px;
  }
  
  .stat-item {
    justify-content: center;
    padding: 3px 0;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(5, 44, 255, 0.2);
    padding-bottom: 6px;
    margin-bottom: 2px;
  }
  
  .stat-number, .stat-suffix, .stat-label {
    font-size: 10px;
  }
  
  .stat-icon {
    width: 11px;
    height: 11px;
    font-size: 8px;
  }
  
  .stat-label {
    margin-left: 2px;
  }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-btns-with-stats {
    gap: 15px;
    margin-top: 20px;
  }
  
  .stats-container {
    padding: 8px 16px;
    gap: 15px;
  }
  
  .stat-number, .stat-suffix, .stat-label {
    font-size: 11px;
  }
  
  .stat-icon {
    width: 12px;
    height: 12px;
    font-size: 9px;
  }
}

/* Trusted by section */
.trusted-by {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.trusted-by i {
  font-size: 18px;
  color: #0ADCC7;
  flex-shrink: 0;
}

.trusted-by span {
  font-size: 14px;
  font-weight: 500;
  color: #120132;
  line-height: 1.2;
}

.trusted-count {
  font-weight: 600;
  color: #052CFF;
  transition: all 0.3s ease;
}

/* Responsive styling for trusted-by section */
@media (min-width: 1200px) {
  .trusted-by {
    margin-bottom: 25px;
  }
  
  .trusted-by i {
    font-size: 20px;
  }
  
  .trusted-by span {
    font-size: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .trusted-by {
    margin-bottom: 20px;
  }
  
  .trusted-by i {
    font-size: 18px;
  }
  
  .trusted-by span {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .trusted-by {
    justify-content: center;
    margin-bottom: 18px;
  }
  
  .trusted-by i {
    font-size: 16px;
  }
  
  .trusted-by span {
    font-size: 14px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .trusted-by {
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .trusted-by i {
    font-size: 15px;
  }
  
  .trusted-by span {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .trusted-by {
    justify-content: center;
    margin-bottom: 15px;
    gap: 6px;
  }
  
  .trusted-by i {
    font-size: 14px;
  }
  
  .trusted-by span {
    font-size: 12px;
  }
}

/*===========================
    Problem vs Solution Section
===========================*/
.problem-solution-area {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

/* Modern geometric background */
.problem-solution-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(5, 44, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(10, 220, 199, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(18, 1, 50, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating geometric shapes */
.problem-solution-area::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(5, 44, 255, 0.1), rgba(10, 220, 199, 0.1));
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -20px) rotate(90deg); }
  50% { transform: translate(-20px, -40px) rotate(180deg); }
  75% { transform: translate(-30px, 20px) rotate(270deg); }
}

/* Add floating shapes with CSS */
.problem-solution-area .container::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(10, 220, 199, 0.12), rgba(5, 44, 255, 0.08));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s ease-in-out infinite reverse;
  z-index: 1;
}

.problem-solution-area .container::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 20%;
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, rgba(18, 1, 50, 0.08), rgba(5, 44, 255, 0.06));
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  animation: float 10s ease-in-out infinite;
  z-index: 1;
}

/* Section Header - Updated with brand colors */
.problem-solution-area .section-title .title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #120132;
}

.problem-solution-area .section-title p {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Problem Side - Updated with brand colors */
.problem-side {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  border: 2px solid rgba(239, 68, 68, 0.15);
  backdrop-filter: blur(20px);
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.08);
  transition: all 0.3s ease;
}

.problem-side:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.12);
}

.problem-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: linear-gradient(90deg, #ff4444, #e53e3e, #dc2626);
  border-radius: 24px 24px 0 0;
}

.problem-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(239, 68, 68, 0.15);
}

.problem-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #fee2e2, #fecaca, #fca5a5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.problem-icon i {
  font-size: 26px;
  color: #dc2626;
}

.problem-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #dc2626;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.problem-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.6), rgba(254, 226, 226, 0.4));
  border-radius: 16px;
  border-left: 4px solid #ef4444;
  transition: all 0.3s ease;
  position: relative;
}

.problem-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.02), transparent);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.problem-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.15);
  border-left-width: 6px;
}

.problem-item:hover::before {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02));
}

.problem-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #dc2626, #991b1b, #7f1d1d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.problem-item-icon i {
  font-size: 20px;
  color: white;
}

.problem-content h4 {
  font-size: 19px;
  font-weight: 600;
  color: #991b1b;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.problem-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Solution Side - Updated with brand colors */
.solution-side {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  border: 2px solid rgba(5, 44, 255, 0.15);
  backdrop-filter: blur(20px);
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(5, 44, 255, 0.08);
  transition: all 0.3s ease;
}

.solution-side:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(5, 44, 255, 0.12);
}

.solution-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: linear-gradient(90deg, #052CFF, #0ADCC7);
  border-radius: 24px 24px 0 0;
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(5, 44, 255, 0.15);
}

.solution-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.1), rgba(10, 220, 199, 0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(5, 44, 255, 0.2);
}

.solution-icon i {
  font-size: 26px;
  color: #052CFF;
}

.solution-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #052CFF;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.solution-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.03), rgba(10, 220, 199, 0.05));
  border-radius: 16px;
  border-left: 4px solid #052CFF;
  transition: all 0.3s ease;
  position: relative;
}

.solution-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.02), transparent);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.solution-item:hover {
  transform: translateX(-8px);
  box-shadow: 0 12px 30px rgba(5, 44, 255, 0.15);
  border-left-width: 6px;
}

.solution-item:hover::before {
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.05), rgba(10, 220, 199, 0.03));
}

.solution-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(5, 44, 255, 0.3);
}

.solution-item-icon i {
  font-size: 20px;
  color: white;
}

.solution-content h4 {
  font-size: 19px;
  font-weight: 600;
  color: #052CFF;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.solution-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Results Section - Updated with brand colors */
.results-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(5, 44, 255, 0.12);
  border: 2px solid rgba(5, 44, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #052CFF, #0ADCC7, #052CFF);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.results-title {
  font-size: 34px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.results-subtitle {
  font-size: 17px;
  color: #64748b;
  margin-bottom: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.results-stats {
  margin-top: 40px;
}

.result-item {
  padding: 35px 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
  border-radius: 20px;
  border: 2px solid rgba(5, 44, 255, 0.1);
  transition: all 0.4s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.result-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.02), rgba(10, 220, 199, 0.01));
  opacity: 0;
  transition: all 0.3s ease;
}

.result-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(5, 44, 255, 0.15);
  border-color: rgba(5, 44, 255, 0.25);
}

.result-item:hover::before {
  opacity: 1;
}

.result-number {
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(45deg, #052CFF, #0ADCC7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.result-label {
  font-size: 17px;
  font-weight: 500;
  color: #120132;
  font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .problem-solution-area .section-title .title {
    font-size: 38px;
  }
  
  .problem-side,
  .solution-side {
    padding: 35px 25px;
  }
  
  .problem-item,
  .solution-item {
    padding: 20px;
    gap: 15px;
  }
  
  .results-title {
    font-size: 30px;
  }
  
  .result-number {
    font-size: 46px;
  }
}

@media (max-width: 991px) {
  .problem-solution-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .problem-solution-area .section-title .title {
    font-size: 34px;
  }
  
  .problem-solution-area .section-title p {
    font-size: 17px;
    max-width: 90%;
  }
  
  .problem-side,
  .solution-side {
    margin-bottom: 40px;
    padding: 30px 20px;
  }
  
  .problem-header,
  .solution-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .problem-header h3,
  .solution-header h3 {
    font-size: 24px;
  }
  
  .problem-item,
  .solution-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }
  
  .problem-item:hover,
  .solution-item:hover {
    transform: translateY(-5px);
  }
  
  .problem-content h4,
  .solution-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .problem-content p,
  .solution-content p {
    font-size: 14px;
  }
  
  .results-section {
    padding: 50px 30px;
  }
  
  .results-title {
    font-size: 28px;
  }
  
  .result-number {
    font-size: 42px;
  }
  
  .result-label {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .problem-solution-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .problem-solution-area .section-title {
    margin-bottom: 50px;
  }
  
  .problem-solution-area .section-title .title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .problem-solution-area .section-title p {
    font-size: 16px;
    max-width: 95%;
    line-height: 1.5;
  }
  
  .problem-side,
  .solution-side {
    padding: 25px 20px;
    margin-bottom: 30px;
    border-radius: 20px;
  }
  
  .problem-header,
  .solution-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  
  .problem-icon,
  .solution-icon {
    width: 50px;
    height: 50px;
  }
  
  .problem-icon i,
  .solution-icon i {
    font-size: 24px;
  }
  
  .problem-header h3,
  .solution-header h3 {
    font-size: 22px;
  }
  
  .problem-item,
  .solution-item {
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 14px;
  }
  
  .problem-item-icon,
  .solution-item-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
  }
  
  .problem-item-icon i,
  .solution-item-icon i {
    font-size: 18px;
  }
  
  .problem-content h4,
  .solution-content h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  
  .problem-content p,
  .solution-content p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .results-section {
    padding: 40px 20px;
    border-radius: 20px;
  }
  
  .results-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .results-subtitle {
    font-size: 15px;
    margin-bottom: 35px;
  }
  
  .result-item {
    padding: 25px 15px;
    margin-bottom: 15px;
    border-radius: 16px;
  }
  
  .result-number {
    font-size: 36px;
    margin-bottom: 8px;
  }
  
  .result-label {
    font-size: 14px;
    line-height: 1.3;
  }
  
  /* Hide floating elements on tablet and mobile for performance */
  .problem-solution-area::after,
  .problem-solution-area .container::before,
  .problem-solution-area .container::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .problem-solution-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .problem-solution-area .section-title {
    margin-bottom: 40px;
  }
  
  .problem-solution-area .section-title .title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .problem-solution-area .section-title p {
    font-size: 15px;
    line-height: 1.4;
    max-width: 100%;
  }
  
  .problem-side,
  .solution-side {
    padding: 20px 15px;
    margin-bottom: 25px;
    border-radius: 18px;
  }
  
  .problem-header,
  .solution-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  
  .problem-icon,
  .solution-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
  }
  
  .problem-icon i,
  .solution-icon i {
    font-size: 20px;
  }
  
  .problem-header h3,
  .solution-header h3 {
    font-size: 20px;
  }
  
  .problem-item,
  .solution-item {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    gap: 12px;
  }
  
  .problem-item-icon,
  .solution-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 8px;
  }
  
  .problem-item-icon i,
  .solution-item-icon i {
    font-size: 16px;
  }
  
  .problem-content h4,
  .solution-content h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .problem-content p,
  .solution-content p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .results-section {
    padding: 30px 15px;
    margin-top: 60px;
  }
  
  .results-title {
    font-size: 22px;
    margin-bottom: 6px;
  }
  
  .results-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .results-stats .row {
    margin: 0 -5px;
  }
  
  .results-stats .row > div {
    padding: 0 5px;
    margin-bottom: 15px;
  }
  
  .result-item {
    padding: 20px 10px;
    border-radius: 14px;
  }
  
  .result-number {
    font-size: 32px;
    margin-bottom: 6px;
  }
  
  .result-label {
    font-size: 13px;
    line-height: 1.2;
  }
}

@media (max-width: 375px) {
  .problem-solution-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .problem-solution-area .section-title .title {
    font-size: 22px;
  }
  
  .problem-solution-area .section-title p {
    font-size: 14px;
  }
  
  .problem-side,
  .solution-side {
    padding: 18px 12px;
  }
  
  .problem-header h3,
  .solution-header h3 {
    font-size: 18px;
  }
  
  .problem-item,
  .solution-item {
    padding: 12px;
    margin-bottom: 12px;
  }
  
  .problem-content h4,
  .solution-content h4 {
    font-size: 15px;
  }
  
  .problem-content p,
  .solution-content p {
    font-size: 12px;
  }
  
  .results-section {
    padding: 25px 12px;
  }
  
  .results-title {
    font-size: 20px;
  }
  
  .results-subtitle {
    font-size: 13px;
  }
  
  .result-item {
    padding: 18px 8px;
  }
  
  .result-number {
    font-size: 28px;
  }
  
  .result-label {
    font-size: 12px;
  }
}

/* Landscape phone optimization */
@media (max-height: 500px) and (orientation: landscape) {
  .problem-solution-area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .problem-solution-area .section-title {
    margin-bottom: 30px;
  }
  
  .problem-side,
  .solution-side {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .problem-item,
  .solution-item {
    padding: 12px;
    margin-bottom: 10px;
  }
  
  .results-section {
    padding: 30px 15px;
    margin-top: 40px;
  }
  
  .results-stats .row > div {
    margin-bottom: 10px;
  }
}

/* Large screens optimization */
@media (min-width: 1400px) {
  .problem-solution-area .section-title .title {
    font-size: 48px;
  }
  
  .problem-solution-area .section-title p {
    font-size: 20px;
    max-width: 800px;
  }
  
  .problem-side,
  .solution-side {
    padding: 50px 40px;
  }
  
  .problem-header h3,
  .solution-header h3 {
    font-size: 28px;
  }
  
  .problem-content h4,
  .solution-content h4 {
    font-size: 20px;
  }
  
  .problem-content p,
  .solution-content p {
    font-size: 16px;
  }
  
  .results-title {
    font-size: 38px;
  }
  
  .results-subtitle {
    font-size: 18px;
  }
  
  .result-number {
    font-size: 56px;
  }
  
  .result-label {
    font-size: 18px;
  }
}

/*===========================
    Modern Features Section
===========================*/
.feature-area {
  background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.feature-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(10, 220, 199, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(5, 44, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Features Header */
.feature-area .section-title .title {
  font-size: 42px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-area .section-title p {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Modern Feature Cards */
.single-feature.modern-feature {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 40px 30px;
  margin-bottom: 30px;
  border: 2px solid rgba(5, 44, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.single-feature.modern-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.02), rgba(10, 220, 199, 0.01));
  opacity: 0;
  transition: all 0.3s ease;
}

.single-feature.modern-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(5, 44, 255, 0.15);
  border-color: rgba(5, 44, 255, 0.15);
}

.single-feature.modern-feature:hover::before {
  opacity: 1;
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
  margin-bottom: 30px;
}

.single-feature.modern-feature .feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.25);
  transition: all 0.3s ease;
  position: relative;
}

.single-feature.modern-feature .feature-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7, #052CFF);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.single-feature.modern-feature:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(5, 44, 255, 0.3);
}

.single-feature.modern-feature:hover .feature-icon::before {
  opacity: 1;
  animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.single-feature.modern-feature .feature-icon i {
  font-size: 32px;
  color: white;
  z-index: 2;
}

/* Feature Content */
.single-feature.modern-feature .feature-content {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.single-feature.modern-feature .feature-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: #120132;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.single-feature.modern-feature .feature-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: 'Inter', sans-serif;
  flex-grow: 1;
}

/* Feature List */
.feature-list {
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-item i {
  color: #0ADCC7;
  margin-right: 10px;
  font-size: 16px;
}

.feature-item span {
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
}

/* Features CTA Section */
.features-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
  border-radius: 24px;
  padding: 60px 40px;
  border: 2px solid rgba(5, 44, 255, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.features-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #052CFF, #0ADCC7, #052CFF);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.cta-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  padding: 18px 32px;
  border: 2px solid #052CFF;
  color: #052CFF;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  background: transparent;
  font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
  background: #052CFF;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.25);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .feature-area .section-title .title {
    font-size: 38px;
  }
  
  .single-feature.modern-feature {
    padding: 35px 25px;
  }
  
  .single-feature.modern-feature .feature-icon {
    width: 65px;
    height: 65px;
  }
  
  .single-feature.modern-feature .feature-icon i {
    font-size: 28px;
  }
  
  .cta-title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .feature-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .feature-area .section-title .title {
    font-size: 34px;
  }
  
  .feature-area .section-title p {
    font-size: 16px;
  }
  
  .single-feature.modern-feature {
    padding: 30px 20px;
    margin-bottom: 25px;
  }
  
  .single-feature.modern-feature .feature-content h4 {
    font-size: 20px;
  }
  
  .features-cta {
    padding: 50px 30px;
  }
  
  .cta-title {
    font-size: 26px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-outline,
  .main-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .feature-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .feature-area .section-title {
    margin-bottom: 60px;
  }
  
  .feature-area .section-title .title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .feature-area .section-title p {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .single-feature.modern-feature {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .single-feature.modern-feature .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }
  
  .single-feature.modern-feature .feature-icon i {
    font-size: 26px;
  }
  
  .single-feature.modern-feature .feature-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .single-feature.modern-feature .feature-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .feature-item span {
    font-size: 13px;
  }
  
  .features-cta {
    padding: 40px 20px;
    border-radius: 20px;
  }
  
  .cta-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .cta-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .feature-area .section-title .title {
    font-size: 24px;
  }
  
  .single-feature.modern-feature {
    padding: 20px 15px;
  }
  
  .single-feature.modern-feature .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .single-feature.modern-feature .feature-icon i {
    font-size: 24px;
  }
  
  .single-feature.modern-feature .feature-content h4 {
    font-size: 17px;
  }
  
  .single-feature.modern-feature .feature-content p {
    font-size: 13px;
  }
  
  .feature-item span {
    font-size: 12px;
  }
  
  .features-cta {
    padding: 30px 15px;
  }
  
  .cta-title {
    font-size: 22px;
  }
  
  .cta-subtitle {
    font-size: 15px;
  }
  
  .btn-outline,
  .main-btn {
    padding: 16px 28px;
    font-size: 15px;
  }
}

/* Large screens optimization */
@media (min-width: 1400px) {
  .feature-area .section-title .title {
    font-size: 48px;
  }
  
  .feature-area .section-title p {
    font-size: 20px;
    max-width: 700px;
  }
  
  .single-feature.modern-feature {
    padding: 45px 35px;
  }
  
  .single-feature.modern-feature .feature-icon {
    width: 75px;
    height: 75px;
  }
  
  .single-feature.modern-feature .feature-icon i {
    font-size: 36px;
  }
  
  .single-feature.modern-feature .feature-content h4 {
    font-size: 24px;
  }
  
  .single-feature.modern-feature .feature-content p {
    font-size: 16px;
  }
  
  .cta-title {
    font-size: 36px;
  }
  
  .cta-subtitle {
    font-size: 20px;
  }
}

/* Coming Soon Styling */
.coming-soon-item {
  position: relative;
  opacity: 0.7;
}

.coming-soon-item i {
  color: #f59e0b !important;
}

.coming-soon-item > span:first-of-type {
  color: #9ca3af !important;
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  color: white !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  position: relative;
  animation: pulse-glow 2s infinite;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5);
    transform: scale(1.02);
  }
}

/*===========================
    Modern How It Works Section
===========================*/
.how-work-area {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.how-work-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(5, 44, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(10, 220, 199, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header */
.how-work-area .section-title .title {
  font-size: 42px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 20px;
  line-height: 1.2;
}

.how-work-area .section-title p {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* How Work Steps */
.how-work-steps {
  position: relative;
}

.how-work-steps::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, #052CFF, #0ADCC7);
  z-index: 1;
}

[dir="rtl"] .how-work-steps::before {
  left: auto;
  right: 25px;
}

.single-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.single-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.25);
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7, #052CFF);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.single-step:hover .step-number::before {
  opacity: 1;
  animation: stepGlow 2s ease-in-out infinite;
}

@keyframes stepGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.step-number span {
  font-size: 20px;
  font-weight: 700;
  color: white;
  font-family: 'Inter', sans-serif;
}

.step-content {
  flex: 1;
  padding-top: 5px;
}

.step-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: #120132;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.single-step:hover .step-content h4 {
  color: #052CFF;
  transform: translateX(5px);
}

.step-content p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* How Work CTA */
.how-work-cta {
  margin-top: 50px;
  text-align: center;
}

.how-work-cta .main-btn {
  margin-bottom: 20px;
}

.setup-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  font-family: 'Inter', sans-serif;
}

.setup-time i {
  font-size: 16px;
  color: #0ADCC7;
}

/* How Work Image */
.how-work-img {
  position: relative;
  z-index: 2;
}

.how-work-img .shape.dots-shape {
  position: absolute;
  right: 30px;
  bottom: 0;
  z-index: -1;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .how-work-area .section-title .title {
    font-size: 38px;
  }
  
  .single-step {
    gap: 25px;
    margin-bottom: 35px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
  }
  
  .step-number span {
    font-size: 18px;
  }
  
  .step-content h4 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .how-work-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .how-work-area .section-title .title {
    font-size: 34px;
  }
  
  .how-work-area .section-title p {
    font-size: 16px;
  }
  
  .how-work-img {
    margin-bottom: 60px;
    text-align: center;
  }
  
  .how-work-steps::before {
    display: none;
  }
  
  .single-step {
    margin-bottom: 40px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .step-content h4 {
    font-size: 19px;
  }
  
  .step-content p {
    font-size: 15px;
  }
  
  .how-work-cta {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .how-work-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .how-work-area .section-title {
    margin-bottom: 60px;
  }
  
  .how-work-area .section-title .title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .how-work-area .section-title p {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .how-work-img {
    margin-bottom: 50px;
  }
  
  .single-step {
    margin-bottom: 35px;
    gap: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
  }
  
  .step-number span {
    font-size: 16px;
  }
  
  .step-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .step-content p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .setup-time {
    font-size: 13px;
  }
  
  .setup-time i {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .how-work-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .how-work-area .section-title {
    margin-bottom: 40px;
  }
  
  .how-work-area .section-title .title {
    font-size: 24px;
  }
  
  .how-work-area .section-title p {
    font-size: 14px;
  }
  
  .single-step {
    margin-bottom: 30px;
    gap: 12px;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
  }
  
  .step-number span {
    font-size: 14px;
  }
  
  .step-content h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  
  .step-content p {
    font-size: 13px;
  }
  
  .how-work-cta {
    margin-top: 30px;
  }
  
  .how-work-cta .main-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Large screens optimization */
@media (min-width: 1400px) {
  .how-work-area .section-title .title {
    font-size: 48px;
  }
  
  .how-work-area .section-title p {
    font-size: 20px;
    max-width: 700px;
  }
  
  .single-step {
    gap: 35px;
    margin-bottom: 45px;
  }
  
  .step-number {
    width: 55px;
    height: 55px;
  }
  
  .step-number span {
    font-size: 22px;
  }
  
  .step-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .step-content p {
    font-size: 17px;
  }
  
  .how-work-cta {
    margin-top: 60px;
  }
}

/*===========================
    Ecommerce Section
===========================*/
.ecommerce-area {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.ecommerce-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 80% 30%, rgba(10, 220, 199, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(5, 44, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Ecommerce Content */
.ecommerce-content .section-title .title {
  font-size: 42px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ecommerce-content .section-title p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 40px;
}

.ecommerce-features {
  margin-bottom: 40px;
}

.ecommerce-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(5, 44, 255, 0.1);
  transition: all 0.3s ease;
}

.ecommerce-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(5, 44, 255, 0.1);
  border-color: rgba(5, 44, 255, 0.2);
}

.ecommerce-feature .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.25);
}

.ecommerce-feature .feature-icon i {
  font-size: 26px;
  color: white;
}

.ecommerce-feature .feature-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #120132;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.ecommerce-feature .feature-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.ecommerce-cta {
  text-align: left;
}

/* Mobile Mockup */
.ecommerce-mockup {
  position: relative;
  z-index: 2;
}

.mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 320px;
  height: 640px;
  background: linear-gradient(145deg, #0f0f23, #1a1a2e, #16213e);
  border-radius: 35px;
  padding: 25px;
  box-shadow: 
    0 0 0 3px #2d2d44,
    0 0 0 6px #1a1a2e,
    0 25px 80px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(5, 44, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #333, #555, #333);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.phone-mockup::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 25px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #4ade80, #22c55e);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.4);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* App Header */
.app-header {
  background: linear-gradient(135deg, #052CFF 0%, #0ADCC7 50%, #052CFF 100%);
  background-size: 200% 200%;
  animation: headerGradient 4s ease-in-out infinite;
  padding: 25px 20px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

@keyframes headerGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.app-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: headerShine 3s ease-in-out infinite;
}

@keyframes headerShine {
  0%, 100% { transform: translateX(-100%) translateY(-100%); }
  50% { transform: translateX(0%) translateY(0%); }
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.app-logo i {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.app-logo span {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.5px;
}

/* Status Bar */
.app-header::after {
  content: '9:41 AM';
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  padding: 16px 18px;
  margin: 20px 15px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.search-bar:hover {
  box-shadow: 
    0 4px 12px rgba(5, 44, 255, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.search-bar i {
  color: #64748b;
  font-size: 18px;
}

.search-bar span {
  color: #94a3b8;
  font-size: 15px;
  font-weight: 500;
}

/* Categories */
.categories {
  display: flex;
  gap: 10px;
  padding: 0 15px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.categories::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #e2e8f0;
  min-width: 80px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.05), rgba(10, 220, 199, 0.05));
  opacity: 0;
  transition: all 0.3s ease;
}

.category-item:hover::before {
  opacity: 1;
}

.category-item.active {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  color: white;
  border-color: transparent;
  box-shadow: 
    0 4px 12px rgba(5, 44, 255, 0.3),
    0 2px 6px rgba(10, 220, 199, 0.2);
  transform: translateY(-2px);
}

.category-item i {
  font-size: 20px;
  color: #64748b;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.category-item.active i {
  color: white;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.category-item span {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.category-item.active span {
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 15px 15px;
}

.product-item {
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.02), rgba(10, 220, 199, 0.02));
  opacity: 0;
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(5, 44, 255, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(5, 44, 255, 0.1);
}

.product-item:hover::before {
  opacity: 1;
}

.product-image {
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 50%, #fbbf24 100%);
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
}

.product-image::after {
  content: '🍕';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  z-index: 2;
}

.product-item:nth-child(1) .product-image {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 50%, #f59e0b 100%);
}

.product-item:nth-child(2) .product-image {
  background: linear-gradient(135deg, #fecaca 0%, #fca5a5 50%, #ef4444 100%);
}

.product-item:nth-child(2) .product-image::after {
  content: '🍔';
}

.product-item:nth-child(3) .product-image {
  background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 50%, #8b5cf6 100%);
}

.product-item:nth-child(3) .product-image::after {
  content: '🥤';
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.product-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}

.product-info p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
}

.add-to-cart {
  align-self: flex-end;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border: none;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 
    0 2px 8px rgba(5, 44, 255, 0.25),
    0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.add-to-cart::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: all 0.5s ease;
}

.add-to-cart:hover::before {
  left: 100%;
}

.add-to-cart:hover {
  transform: scale(1.1) translateY(-1px);
  box-shadow: 
    0 6px 20px rgba(5, 44, 255, 0.35),
    0 3px 8px rgba(0, 0, 0, 0.15);
}

.add-to-cart:active {
  transform: scale(1.05) translateY(0px);
}

/* Enhanced Phone Frame */
.phone-mockup {
  background: linear-gradient(145deg, #0f0f23, #1a1a2e, #16213e);
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #333, #555, #333);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Screen reflection effect */
.phone-screen::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 20%, 
    transparent 80%, 
    rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
  border-radius: 25px;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .ecommerce-content .section-title .title {
    font-size: 38px;
  }
  
  .phone-mockup {
    width: 300px;
    height: 600px;
    padding: 22px;
  }
  
  .app-header {
    padding: 22px 18px 18px;
  }
  
  .app-logo span {
    font-size: 18px;
  }
  
  .app-logo i {
    font-size: 26px;
  }
  
  .search-bar {
    padding: 14px 16px;
    margin: 18px 12px;
  }
  
  .category-item {
    padding: 12px 16px;
    min-width: 75px;
  }
  
  .products-grid {
    gap: 14px;
  }
  
  .product-image {
    height: 85px;
  }
  
  .product-image::after {
    font-size: 26px;
  }
  
  .product-info {
    padding: 14px;
  }
  
  .add-to-cart {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  
  .ecommerce-feature {
    padding: 20px;
  }
  
  .ecommerce-feature .feature-icon {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 991px) {
  .ecommerce-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .ecommerce-content .section-title .title {
    font-size: 34px;
  }
  
  .ecommerce-content .section-title p {
    font-size: 16px;
  }
  
  .ecommerce-mockup {
    margin-top: 60px;
    text-align: center;
  }
  
  .phone-mockup {
    width: 280px;
    height: 560px;
    padding: 20px;
  }
  
  .app-header {
    padding: 20px 16px 16px;
  }
  
  .app-logo span {
    font-size: 17px;
  }
  
  .app-logo i {
    font-size: 24px;
  }
  
  .search-bar {
    padding: 12px 14px;
    margin: 16px 10px;
    border-radius: 14px;
  }
  
  .category-item {
    padding: 10px 14px;
    min-width: 70px;
  }
  
  .category-item i {
    font-size: 18px;
  }
  
  .category-item span {
    font-size: 11px;
  }
  
  .products-grid {
    gap: 12px;
    padding: 0 10px 10px;
  }
  
  .product-image {
    height: 80px;
  }
  
  .product-image::after {
    font-size: 24px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-info h4 {
    font-size: 15px;
  }
  
  .product-info p {
    font-size: 12px;
  }
  
  .add-to-cart {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .ecommerce-feature {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .ecommerce-feature .feature-icon {
    margin: 0 auto;
  }
  
  .ecommerce-cta {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .ecommerce-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .ecommerce-content .section-title .title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .ecommerce-content .section-title p {
    font-size: 15px;
  }
  
  .ecommerce-mockup {
    margin-top: 50px;
  }
  
  .phone-mockup {
    width: 260px;
    height: 520px;
    padding: 18px;
    border-radius: 30px;
  }
  
  .phone-screen {
    border-radius: 22px;
  }
  
  .phone-mockup::before {
    width: 70px;
    top: 10px;
  }
  
  .phone-mockup::after {
    top: 10px;
    right: 20px;
    width: 10px;
    height: 10px;
  }
  
  .app-header {
    padding: 18px 14px 14px;
  }
  
  .app-header::after {
    font-size: 12px;
    top: 6px;
    left: 14px;
  }
  
  .app-logo span {
    font-size: 16px;
  }
  
  .app-logo i {
    font-size: 22px;
  }
  
  .search-bar {
    padding: 11px 13px;
    margin: 14px 8px;
    border-radius: 12px;
  }
  
  .search-bar i {
    font-size: 16px;
  }
  
  .search-bar span {
    font-size: 14px;
  }
  
  .categories {
    padding: 0 8px 16px;
    gap: 8px;
  }
  
  .category-item {
    padding: 8px 12px;
    min-width: 65px;
    border-radius: 12px;
  }
  
  .category-item i {
    font-size: 16px;
  }
  
  .category-item span {
    font-size: 10px;
  }
  
  .products-grid {
    gap: 10px;
    padding: 0 8px 8px;
  }
  
  .product-item {
    border-radius: 12px;
  }
  
  .product-image {
    height: 75px;
  }
  
  .product-image::after {
    font-size: 22px;
  }
  
  .product-info {
    padding: 10px;
  }
  
  .product-info h4 {
    font-size: 14px;
  }
  
  .product-info p {
    font-size: 11px;
  }
  
  .add-to-cart {
    width: 30px;
    height: 30px;
    font-size: 13px;
    border-radius: 8px;
  }
  
  .ecommerce-feature {
    margin-bottom: 25px;
    padding: 20px;
  }
  
  .ecommerce-feature .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .ecommerce-feature .feature-content h4 {
    font-size: 18px;
  }
  
  .ecommerce-feature .feature-content p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .ecommerce-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .ecommerce-content .section-title .title {
    font-size: 24px;
  }
  
  .ecommerce-content .section-title p {
    font-size: 14px;
  }
  
  .phone-mockup {
    width: 240px;
    height: 480px;
    padding: 16px;
    border-radius: 28px;
  }
  
  .phone-screen {
    border-radius: 20px;
  }
  
  .phone-mockup::before {
    width: 60px;
    height: 3px;
    top: 8px;
  }
  
  .phone-mockup::after {
    top: 8px;
    right: 18px;
    width: 8px;
    height: 8px;
  }
  
  .app-header {
    padding: 16px 12px 12px;
  }
  
  .app-header::after {
    font-size: 11px;
    top: 5px;
    left: 12px;
  }
  
  .app-logo span {
    font-size: 15px;
  }
  
  .app-logo i {
    font-size: 20px;
  }
  
  .search-bar {
    padding: 10px 12px;
    margin: 12px 6px;
    border-radius: 10px;
  }
  
  .search-bar i {
    font-size: 15px;
  }
  
  .search-bar span {
    font-size: 13px;
  }
  
  .categories {
    padding: 0 6px 14px;
    gap: 6px;
  }
  
  .category-item {
    padding: 6px 10px;
    min-width: 60px;
    border-radius: 10px;
  }
  
  .category-item i {
    font-size: 14px;
  }
  
  .category-item span {
    font-size: 9px;
  }
  
  .products-grid {
    gap: 8px;
    padding: 0 6px 6px;
  }
  
  .product-item {
    border-radius: 10px;
  }
  
  .product-image {
    height: 70px;
  }
  
  .product-image::after {
    font-size: 20px;
  }
  
  .product-info {
    padding: 8px;
  }
  
  .product-info h4 {
    font-size: 13px;
  }
  
  .product-info p {
    font-size: 10px;
  }
  
  .add-to-cart {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 7px;
  }
  
  .ecommerce-feature {
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .ecommerce-feature .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .ecommerce-feature .feature-content h4 {
    font-size: 17px;
  }
  
  .ecommerce-feature .feature-content p {
    font-size: 13px;
  }
  
  .ecommerce-cta .main-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Large screens optimization */
@media (min-width: 1400px) {
  .ecommerce-content .section-title .title {
    font-size: 48px;
  }
  
  .ecommerce-content .section-title p {
    font-size: 20px;
  }
  
  .phone-mockup {
    width: 340px;
    height: 680px;
    padding: 28px;
  }
  
  .app-header {
    padding: 28px 22px 22px;
  }
  
  .app-logo span {
    font-size: 22px;
  }
  
  .app-logo i {
    font-size: 30px;
  }
  
  .search-bar {
    padding: 18px 20px;
    margin: 22px 16px;
    border-radius: 18px;
  }
  
  .search-bar i {
    font-size: 20px;
  }
  
  .search-bar span {
    font-size: 16px;
  }
  
  .categories {
    padding: 0 16px 22px;
    gap: 12px;
  }
  
  .category-item {
    padding: 16px 20px;
    min-width: 85px;
    border-radius: 18px;
  }
  
  .category-item i {
    font-size: 22px;
  }
  
  .category-item span {
    font-size: 13px;
  }
  
  .products-grid {
    gap: 18px;
    padding: 0 16px 16px;
  }
  
  .product-item {
    border-radius: 18px;
  }
  
  .product-image {
    height: 95px;
  }
  
  .product-image::after {
    font-size: 30px;
  }
  
  .product-info {
    padding: 18px;
  }
  
  .product-info h4 {
    font-size: 18px;
  }
  
  .product-info p {
    font-size: 14px;
  }
  
  .add-to-cart {
    width: 38px;
    height: 38px;
    font-size: 17px;
    border-radius: 11px;
  }
  
  .ecommerce-feature {
    padding: 30px;
  }
  
  .ecommerce-feature .feature-icon {
    width: 65px;
    height: 65px;
  }
  
  .ecommerce-feature .feature-content h4 {
    font-size: 22px;
  }
  
  .ecommerce-feature .feature-content p {
    font-size: 16px;
  }
}

/*===========================
    Chatbot Flow Builder Section
===========================*/
.flow-builder-area {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.flow-builder-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(5, 44, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(10, 220, 199, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Flow Builder Content */
.flow-builder-content .section-title .title {
  font-size: 42px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 20px;
  line-height: 1.2;
}

.flow-builder-content .section-title p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.flow-builder-features {
  margin-bottom: 40px;
}

.builder-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(5, 44, 255, 0.1);
  transition: all 0.3s ease;
}

.builder-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(5, 44, 255, 0.1);
  border-color: rgba(5, 44, 255, 0.2);
}

.builder-feature .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.25);
}

.builder-feature .feature-icon i {
  font-size: 26px;
  color: white;
}

.builder-feature .feature-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #120132;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.builder-feature .feature-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Flow Builder CTA */
.flow-builder-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.builder-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.builder-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.builder-stats .stat-item i {
  font-size: 16px;
  color: #0ADCC7;
}

/* Flow Builder Interface */
.flow-builder-mockup {
  position: relative;
  z-index: 2;
}

.builder-interface {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(5, 44, 255, 0.05);
  border: 1px solid rgba(5, 44, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.builder-interface::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.02), rgba(10, 220, 199, 0.02));
  pointer-events: none;
}

/* Builder Header */
.builder-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.header-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #052CFF 0%, #0ADCC7 100%);
  border-radius: 16px;
  color: white;
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.25);
}

.header-card .card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-card .card-icon i {
  font-size: 24px;
  color: white;
}

.header-card .card-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px 0;
  font-family: 'Inter', sans-serif;
  color: #FFF;
}

.header-card .card-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
  font-weight: 500;
  color: #FFF;

}

/* Flow Canvas */
.flow-canvas {
  background: linear-gradient(135deg, #fafbfc, #f1f5f9);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
  position: relative;
  min-height: 400px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.flow-canvas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(5, 44, 255, 0.15) 1px, transparent 0);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

/* Flow Nodes */
.flow-node {
  position: absolute;
  background: white;
  border-radius: 12px;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(5, 44, 255, 0.1);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  z-index: 3;
}

.flow-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(5, 44, 255, 0.15);
  border-color: rgba(5, 44, 255, 0.3);
}

.start-node {
  top: 50px;
  left: 20px;
  border-color: #0ADCC7;
}

.message-node {
  top: 50px;
  left: 250px;
  border-color: #052CFF;
}

.button-node {
  top: 180px;
  left: 450px;
  border-color: #8b5cf6;
}

.condition-node {
  top: 50px;
  left: 680px;
  border-color: #f59e0b;
}

.node-header {
  padding: 12px 16px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid #e2e8f0;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.node-header i {
  font-size: 16px;
  color: #052CFF;
}

.node-header span {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  font-family: 'Inter', sans-serif;
}

.node-content {
  padding: 16px;
}

.node-content p {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 4px 0;
  font-family: 'Inter', sans-serif;
}

.node-content small {
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
}

/* Quick Buttons */
.quick-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quick-btn {
  padding: 6px 12px;
  background: linear-gradient(135deg, #e0f2fe, #e1f5fe);
  border: 1px solid #0ADCC7;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #0891b2;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-btn:hover {
  background: linear-gradient(135deg, #0ADCC7, #06b6d4);
  color: white;
}

/* Node Connectors */
.node-connector {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(5, 44, 255, 0.3);
  z-index: 4;
}

.node-connector.right {
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
}

.node-connector.left {
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
}

.node-connector.bottom {
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.connection-lines path {
  filter: drop-shadow(0 2px 4px rgba(5, 44, 255, 0.2));
  animation: flowPulse 3s ease-in-out infinite;
}

@keyframes flowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Builder Toolbar */
.builder-toolbar {
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  position: relative;
  z-index: 2;
}

.toolbar-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 15px 0;
  font-family: 'Inter', sans-serif;
}

.element-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.element-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: grab;
  transition: all 0.3s ease;
}

.element-item:hover {
  border-color: rgba(5, 44, 255, 0.3);
  box-shadow: 0 4px 12px rgba(5, 44, 255, 0.1);
  transform: translateY(-1px);
}

.element-item:active {
  cursor: grabbing;
  transform: scale(0.98);
}

.element-item i {
  font-size: 18px;
  color: #052CFF;
}

.element-item span {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .flow-builder-content .section-title .title {
    font-size: 38px;
  }
  
  .builder-interface {
    padding: 25px;
  }
  
  .flow-canvas {
    padding: 25px;
    min-height: 350px;
  }
  
  .flow-node {
    min-width: 160px;
  }
  
  .builder-feature {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .flow-builder-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .flow-builder-content .section-title .title {
    font-size: 34px;
  }
  
  .flow-builder-content .section-title p {
    font-size: 16px;
    max-width: 100%;
  }
  
  .flow-builder-mockup {
    margin-top: 60px;
  }
  
  .builder-interface {
    padding: 20px;
  }
  
  .flow-canvas {
    padding: 20px;
    min-height: 300px;
  }
  
  .start-node {
    top: 20px;
    left: 10px;
  }
  
  .message-node {
    top: 20px;
    left: 200px;
  }
  
  .button-node {
    top: 140px;
    left: 10px;
  }
  
  .condition-node {
    top: 140px;
    left: 200px;
  }
  
  .builder-feature {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .builder-feature .feature-icon {
    margin: 0 auto;
  }
  
  .flow-builder-cta {
    text-align: center;
  }
  
  .builder-stats {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .flow-builder-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .flow-builder-content .section-title .title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .flow-builder-content .section-title p {
    font-size: 15px;
  }
  
  .flow-builder-mockup {
    margin-top: 50px;
  }
  
  .builder-interface {
    padding: 15px;
    border-radius: 16px;
  }
  
  .header-card {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .header-card .card-content h3 {
    font-size: 18px;
  }
  
  .flow-canvas {
    padding: 15px;
    min-height: 250px;
  }
  
  .flow-node {
    position: relative;
    margin-bottom: 20px;
    min-width: 100%;
  }
  
  .start-node,
  .message-node,
  .button-node,
  .condition-node {
    position: relative;
    top: auto;
    left: auto;
  }
  
  .node-connector {
    display: none;
  }
  
  .connection-lines {
    display: none;
  }
  
  .element-items {
    grid-template-columns: 1fr;
  }
  
  .builder-feature {
    margin-bottom: 25px;
    padding: 20px;
  }
  
  .builder-feature .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .builder-feature .feature-content h4 {
    font-size: 18px;
  }
  
  .builder-feature .feature-content p {
    font-size: 14px;
  }
  
  .builder-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .flow-builder-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .flow-builder-content .section-title .title {
    font-size: 24px;
  }
  
  .flow-builder-content .section-title p {
    font-size: 14px;
  }
  
  .builder-interface {
    padding: 12px;
  }
  
  .flow-canvas {
    padding: 12px;
  }
  
  .builder-feature {
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .builder-feature .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .builder-feature .feature-content h4 {
    font-size: 17px;
  }
  
  .builder-feature .feature-content p {
    font-size: 13px;
  }
  
  .flow-builder-cta .main-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Large screens optimization */
@media (min-width: 1400px) {
  .flow-builder-content .section-title .title {
    font-size: 48px;
  }
  
  .flow-builder-content .section-title p {
    font-size: 20px;
    max-width: 600px;
  }
  
  .builder-interface {
    padding: 35px;
  }
  
  .flow-canvas {
    padding: 35px;
    min-height: 450px;
  }
  
  .flow-node {
    min-width: 200px;
  }
  
  .builder-feature {
    padding: 30px;
  }
  
  .builder-feature .feature-icon {
    width: 65px;
    height: 65px;
  }
  
  .builder-feature .feature-content h4 {
    font-size: 22px;
  }
  
  .builder-feature .feature-content p {
    font-size: 16px;
  }
}

/*===========================
    Modern Testimonials Section
===========================*/
.modern-testimonials {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.modern-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(5, 44, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(10, 220, 199, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Title */
.modern-testimonials .section-title .title {
  font-size: 42px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 20px;
  line-height: 1.2;
}

.modern-testimonials .section-title p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonial Cards */
.modern-testimonial {
  margin-bottom: 30px;
  height: 100%; /* Ensure equal height for carousel slides */
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  /* box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(5, 44, 255, 0.04); */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%; /* Ensure equal height */
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #052CFF, #0ADCC7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 12px 30px rgba(5, 44, 255, 0.08); */
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Testimonial Header */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-img {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(5, 44, 255, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .client-img {
  border-color: rgba(5, 44, 255, 0.3);
}

.testimonial-card:hover .client-img img {
  transform: scale(1.05);
}

.verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.verified-badge i {
  color: white;
  font-size: 10px;
  font-weight: 600;
}

.client-details h5 {
  font-size: 18px;
  font-weight: 600;
  color: #120132;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.client-position {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.client-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.client-rating span i {
  color: #fbbf24;
  font-size: 14px;
}

.rating-text {
  font-size: 14px;
  font-weight: 600;
  color: #052CFF;
  margin-left: 6px;
}

.quote-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.2);
}

.quote-icon i {
  color: white;
  font-size: 22px;
}

/* Testimonial Content */
.testimonial-content {
  margin: 25px 0;
  flex: 1; /* Allow content to grow and fill available space */
  display: flex;
  align-items: center;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  font-style: italic;
  margin: 0;
}

.read-more-link {
  color: #052CFF;
  text-decoration: none;
  font-weight: 600;
  font-style: normal;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #0ADCC7;
  text-decoration: underline;
}

/* Testimonial Footer */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto; /* Push footer to bottom */
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-proof i {
  color: #22c55e;
  font-size: 16px;
}

.social-proof span {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.chatwiser-badge span {
  font-size: 12px;
  color: #052CFF;
  background: rgba(5, 44, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonial Carousel Wrapper */
.testimonial-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.testimonial-carousel.swiper-container {
  overflow: hidden;
  padding-bottom: 60px;
}

.testimonial-carousel .swiper-wrapper {
  display: flex;
  align-items: stretch; /* Ensure equal height slides */
}

.testimonial-carousel .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

/* Navigation Buttons */
.testimonial-next,
.testimonial-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.2);
  border: none;
  outline: none;
}

.testimonial-next {
  right: 0;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next:hover,
.testimonial-prev:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(5, 44, 255, 0.3);
}

.testimonial-next:after,
.testimonial-prev:after {
  display: none; /* Hide default Swiper button content */
}

.testimonial-next i,
.testimonial-prev i {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-next.swiper-button-disabled,
.testimonial-prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Pagination */
.testimonial-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(5, 44, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(5, 44, 255, 0.3);
}

/* Testimonials CTA */
.testimonials-cta {
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.03) 0%, rgba(10, 220, 199, 0.03) 100%);
  border-radius: 24px;
  padding: 50px 40px;
  border: 1px solid rgba(5, 44, 255, 0.08);
}

.testimonials-cta .cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 16px;
  line-height: 1.2;
}

.testimonials-cta .cta-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 30px;
  line-height: 1.6;
}

.testimonials-cta .main-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .modern-testimonials .section-title .title {
    font-size: 36px;
  }
  
  .testimonial-card {
    padding: 35px;
  }
  
  .testimonials-cta .cta-title {
    font-size: 28px;
  }
  
  .testimonial-carousel-wrapper {
    padding: 0 50px;
  }
}

@media (max-width: 991px) {
  .modern-testimonials {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  
  .modern-testimonials .section-title .title {
    font-size: 32px;
  }
  
  .modern-testimonials .section-title p {
    font-size: 16px;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .testimonial-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .quote-icon {
    align-self: flex-end;
  }
  
  .testimonials-cta {
    padding: 40px 30px;
  }
  
  .testimonials-cta .cta-title {
    font-size: 26px;
  }
  
  .testimonial-carousel-wrapper {
    padding: 0 40px;
  }
  
  .testimonial-next,
  .testimonial-prev {
    width: 45px;
    height: 45px;
  }
  
  .testimonial-next i,
  .testimonial-prev i {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .modern-testimonials {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  
  .modern-testimonials .section-title {
    margin-bottom: 50px;
  }
  
  .modern-testimonials .section-title .title {
    font-size: 28px;
  }
  
  .modern-testimonials .section-title p {
    font-size: 15px;
  }
  
  .testimonial-card {
    padding: 25px;
    margin-bottom: 25px;
  }
  
  .client-img {
    width: 60px;
    height: 60px;
  }
  
  .client-details h5 {
    font-size: 16px;
  }
  
  .client-position {
    font-size: 13px;
  }
  
  .quote-icon {
    width: 45px;
    height: 45px;
  }
  
  .quote-icon i {
    font-size: 20px;
  }
  
  .testimonial-content p {
    font-size: 15px;
  }
  
  .testimonial-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .testimonials-cta {
    padding: 35px 25px;
  }
  
  .testimonials-cta .cta-title {
    font-size: 24px;
  }
  
  .testimonials-cta .cta-subtitle {
    font-size: 16px;
  }
  
  .testimonial-carousel-wrapper {
    padding: 0 30px;
  }
  
  .testimonial-next,
  .testimonial-prev {
    width: 40px;
    height: 40px;
  }
  
  .testimonial-next i,
  .testimonial-prev i {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .modern-testimonials {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  
  .modern-testimonials .section-title .title {
    font-size: 24px;
  }
  
  .testimonial-card {
    padding: 20px;
    border-radius: 20px;
  }
  
  .client-info {
    gap: 12px;
  }
  
  .client-img {
    width: 50px;
    height: 50px;
  }
  
  .verified-badge {
    width: 20px;
    height: 20px;
  }
  
  .verified-badge i {
    font-size: 8px;
  }
  
  .client-details h5 {
    font-size: 15px;
  }
  
  .testimonial-content p {
    font-size: 14px;
  }
  
  .testimonials-cta {
    padding: 30px 20px;
  }
  
  .testimonials-cta .cta-title {
    font-size: 22px;
  }
  
  .testimonials-cta .cta-subtitle {
    font-size: 15px;
  }
  
  .testimonial-carousel-wrapper {
    padding: 0 20px;
  }
  
  .testimonial-next,
  .testimonial-prev {
    width: 35px;
    height: 35px;
  }
  
  .testimonial-next i,
  .testimonial-prev i {
    font-size: 12px;
  }
}

@media (min-width: 1400px) {
  .modern-testimonials .section-title .title {
    font-size: 48px;
  }
  
  .modern-testimonials .section-title p {
    font-size: 20px;
  }
  
  .testimonial-card {
    padding: 45px;
  }
  
  .testimonials-cta .cta-title {
    font-size: 36px;
  }
  
  .testimonials-cta .cta-subtitle {
    font-size: 20px;
  }
  
  .testimonial-carousel-wrapper {
    padding: 0 70px;
  }
}

/*===========================
    Modern Pricing Section
===========================*/
.modern-pricing {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.modern-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(5, 44, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(10, 220, 199, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Title Enhanced */
.modern-pricing .pricing-badge {
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

.modern-pricing .pricing-badge .badge-pill {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.modern-pricing .section-title .title {
  font-size: 42px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 16px;
  line-height: 1.2;
}

.modern-pricing .section-title .subtitle {
  font-size: 20px;
  color: #64748b;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 30px;
  font-weight: 500;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-indicators .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #475569;
}

.trust-indicators .trust-item i {
  color: #10b981;
  font-size: 18px;
}

@media (max-width: 767px) {
  .modern-pricing .section-title .title {
    font-size: 32px;
  }
  
  .modern-pricing .section-title .subtitle {
    font-size: 16px;
  }
  
  .trust-indicators {
    gap: 15px;
    font-size: 13px;
  }
}

/* Pricing Wrapper */
.pricing-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Pricing Cards - Mobile First */
.modern-price-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 
    0 8px 24px rgba(5, 44, 255, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Tablet adjustments */
@media (min-width: 768px) {
  .modern-price-card {
    padding: 32px 24px;
    margin-bottom: 24px;
    border-radius: 22px;
  }
}

/* Desktop adjustments */
@media (min-width: 1024px) {
  .modern-price-card {
    padding: 40px 30px;
    margin-bottom: 30px;
    border-radius: 24px;
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.08),
      0 8px 20px rgba(5, 44, 255, 0.04);
  }
}

.modern-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
  transition: all 0.3s ease;
}

.modern-price-card.featured::before {
  background: linear-gradient(90deg, #052CFF, #0ADCC7);
}

/* Hover effects - only on devices that support hover */
@media (hover: hover) {
  .modern-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 
      0 16px 48px rgba(5, 44, 255, 0.15),
      0 8px 24px rgba(0, 0, 0, 0.08);
  }
  
  @media (min-width: 1024px) {
.modern-price-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 12px 30px rgba(5, 44, 255, 0.08);
    }
  }
}

.modern-price-card.featured {
  border: 2px solid rgba(5, 44, 255, 0.2);
}

/* Scale effect only on desktop */
@media (min-width: 1024px) {
  .modern-price-card.featured {
  transform: scale(1.05);
  }
}

@media (hover: hover) and (min-width: 1024px) {
.modern-price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  }
}

/* Mobile-First Cycle Switcher */
.cycle-switcher-home {
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 4px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(5, 44, 255, 0.1);
  width: 100%;
  max-width: 100%;
  gap: 4px;
}

/* Tablet adjustments */
@media (min-width: 768px) {
  .cycle-switcher-home {
    max-width: 500px;
    gap: 6px;
  }
}

/* Desktop adjustments */
@media (min-width: 1024px) {
  .cycle-switcher-home {
    max-width: 600px;
  }
}

.cycle-btn {
  flex: 1;
  padding: 10px 12px;
  min-height: 44px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  color: #64748b;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  position: relative;
}

/* Tablet adjustments */
@media (min-width: 768px) {
  .cycle-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* Desktop adjustments */
@media (min-width: 1024px) {
  .cycle-btn {
    padding: 14px 20px;
    min-height: 48px;
    font-size: 15px;
  }
}

.cycle-btn .cycle-name {
  display: block;
  line-height: 1.2;
}

.cycle-btn .cycle-discount {
  display: block;
  font-size: 10px;
  color: #10b981;
  font-weight: 700;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .cycle-btn .cycle-discount {
    font-size: 11px;
  }
}

.cycle-btn.active {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 44, 255, 0.3);
}

.cycle-btn.active .cycle-discount {
  color: rgba(255, 255, 255, 0.9);
}

/* Touch feedback for mobile */
.cycle-btn:active {
  transform: scale(0.98);
}

/* Hover states for desktop */
@media (hover: hover) {
  .cycle-btn:hover:not(.active) {
    background: rgba(5, 44, 255, 0.1);
    color: #052CFF;
  }
  
  .cycle-btn:hover:not(.active) .cycle-discount {
    color: #059669;
  }
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  color: white;
  padding: 6px 16px;
  border-radius: 0 0 12px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(5, 44, 255, 0.3);
}

/* Tablet adjustments */
@media (min-width: 768px) {
  .popular-badge {
    padding: 7px 20px;
    font-size: 12px;
    border-radius: 0 0 14px 14px;
  }
}

/* Desktop adjustments */
@media (min-width: 1024px) {
  .popular-badge {
    padding: 8px 24px;
    font-size: 14px;
    border-radius: 0 0 16px 16px;
  }
}

/* Price Header - Mobile First */
.price-header {
  text-align: center;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .price-header {
    margin-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .price-header {
  margin-bottom: 40px;
  }
}

.price-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.1), rgba(10, 220, 199, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .price-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
  }
}

@media (min-width: 1024px) {
  .price-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
  }
}

.modern-price-card.featured .price-icon {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
}

.price-icon i {
  font-size: 24px;
  color: #052CFF;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .price-icon i {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .price-icon i {
    font-size: 32px;
  }
}

.modern-price-card.featured .price-icon i {
  color: white;
}

@media (hover: hover) {
.modern-price-card:hover .price-icon {
  transform: scale(1.1);
  }
}

.package-name {
  font-size: 20px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .package-name {
    font-size: 22px;
    margin-bottom: 18px;
  }
}

@media (min-width: 1024px) {
  .package-name {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.price-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

/* Discount Pricing Styles */
.original-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  opacity: 0.6;
}

.original-price .currency {
  font-size: 16px;
  font-weight: 500;
  color: #94a3b8;
}

.original-price .original-amount {
  font-size: 24px;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
  line-height: 1;
}

.discount-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.current-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: #64748b;
}

.amount {
  font-size: 36px;
  font-weight: 800;
  color: #052CFF;
  line-height: 1;
}

@media (min-width: 768px) {
  .amount {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  .amount {
    font-size: 48px;
  }
}

.modern-price-card.featured .amount {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

@media (min-width: 768px) {
  .period {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .period {
    font-size: 16px;
  }
}

/* Price Features */
.price-features {
  flex: 1;
  margin-bottom: 40px;
  position: relative;
  overflow: visible;
}

/* Simplified Features Styling */
.simplified-features {
  padding: 0;
}

/* Core Limits Row (Features 1-3) */
.core-limits-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  z-index: 1;
}

.core-limit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 600;
  color: #1e293b;
  position: relative;
}

.core-limit-item.highlight-feature {
  background: linear-gradient(90deg, rgba(5, 44, 255, 0.08), rgba(10, 220, 199, 0.08));
  border-radius: 8px;
  padding: 12px 16px;
  border-left: 3px solid #052CFF;
  margin: -4px -12px;
}

.core-limit-item .feature-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(5, 44, 255, 0.2);
}

.modern-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modern-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.modern-feature-item.highlight-feature {
  background: linear-gradient(90deg, rgba(5, 44, 255, 0.05), rgba(10, 220, 199, 0.05));
  border-radius: 8px;
  padding: 12px 16px;
  border-left: 3px solid #052CFF;
}

.modern-feature-item .feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(5, 44, 255, 0.1);
  color: #052CFF;
  font-size: 12px;
  flex-shrink: 0;
}

.modern-feature-item.highlight-feature .feature-icon {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  color: white;
}

.modern-feature-item .feature-text {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  line-height: 1.4;
}

.modern-feature-item.highlight-feature .feature-text {
  font-weight: 600;
  color: #1e293b;
}

.feature-highlight {
  margin-left: 4px;
  font-size: 12px;
}

/* Package Tier Badge */
.package-tier-badge {
  margin-top: 20px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-tier-badge.starter-tier {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.package-tier-badge.professional-tier {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

.package-tier-badge.business-tier {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
}

.package-tier-badge i {
  margin-right: 4px;
}

/* Responsive Pricing Layout */
@media (max-width: 991px) {
  .pricing-wrapper .row {
    justify-content: center;
  }
  
  .modern-price-card {
    padding: 30px 20px;
  }
  
  .core-limits-row {
    padding: 12px;
  }
}

@media (max-width: 767px) {
  .modern-price-card {
    padding: 25px 15px;
    margin-bottom: 20px;
  }
  
  .core-limits-row {
    padding: 10px;
    gap: 8px;
  }
  
  .core-limit-item {
    padding: 6px 0;
  }
  
  .modern-feature-list {
    gap: 12px;
  }
}

/* Feature Summary */
.feature-summary {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(5, 44, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(5, 44, 255, 0.08);
}

.summary-item {
  text-align: center;
}

.summary-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #052CFF;
  line-height: 1;
  margin-bottom: 6px;
}

.modern-price-card.featured .summary-number {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.summary-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Top Features */
.top-features {
  margin-bottom: 20px;
}

.features-title {
  font-size: 16px;
  font-weight: 600;
  color: #120132;
  margin-bottom: 16px;
  text-align: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item.more-features {
  background: rgba(5, 44, 255, 0.02);
  padding: 16px 12px;
  border-radius: 8px;
  border: 1px dashed rgba(5, 44, 255, 0.2);
  margin-top: 12px;
}

.feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon i {
  color: #22c55e;
  font-size: 18px;
}

.more-features .feature-icon i {
  color: #052CFF;
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.more-features .feature-content {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature-name {
  font-size: 16px;
  color: #334155;
  font-weight: 500;
  line-height: 1.3;
  flex: 1;
}

.feature-limit {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  text-align: right;
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 16px;
  background: rgba(5, 44, 255, 0.08);
  border: 1px solid rgba(5, 44, 255, 0.15);
  white-space: nowrap;
}

.unlimited {
  color: #22c55e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.modern-price-card.featured .feature-limit {
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.1), rgba(10, 220, 199, 0.1));
  border: 1px solid rgba(5, 44, 255, 0.25);
}

.modern-price-card.featured .unlimited {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.limit {
  color: #052CFF;
  font-weight: 700;
  font-size: 13px;
}

.modern-price-card.featured .limit {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.per-month {
  color: #64748b;
  font-weight: 400;
  font-size: 11px;
  margin-left: 2px;
}

/* View All Button */
.view-all-btn {
  background: none;
  border: 1px solid #052CFF;
  color: #052CFF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-all-btn:hover {
  background: #052CFF;
  color: white;
}

/* All Features (Collapsible) */
.all-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.complete-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 8px;
  padding: 12px;
}

.complete-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: #64748b;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.complete-feature-item:last-child {
  border-bottom: none;
}

.complete-feature-item i {
  color: #22c55e;
  font-size: 14px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .modern-pricing .section-title .title {
    font-size: 36px;
  }
  
  .modern-price-card {
    padding: 35px 25px;
  }
  
  .amount {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .modern-pricing {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  
  .modern-pricing .section-title .title {
    font-size: 32px;
  }
  
  .modern-pricing .section-title p {
    font-size: 16px;
  }
  
  .modern-price-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .modern-price-card.featured {
    transform: none;
  }
  
  .modern-price-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .price-icon {
    width: 70px;
    height: 70px;
  }
  
  .price-icon i {
    font-size: 28px;
  }
  
  .amount {
    font-size: 38px;
  }
  
  .footer-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .modern-pricing {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  
  .modern-pricing .section-title {
    margin-bottom: 60px;
  }
  
  .modern-pricing .section-title .title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .modern-pricing .section-title p {
    font-size: 16px;
  }
  
  .modern-price-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .package-name {
    font-size: 20px;
  }
  
  .amount {
    font-size: 36px;
  }
  
  .price-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .pricing-feature {
    padding: 25px 15px;
  }
  
  .pricing-feature i {
    font-size: 36px;
  }
  
  .pricing-feature h6 {
    font-size: 16px;
  }
  
  .footer-title {
    font-size: 24px;
  }
  
  /* Feature items responsive */
  .feature-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .feature-name {
    font-size: 15px;
  }
  
  .feature-limit {
    font-size: 13px;
    padding: 3px 10px;
    align-self: flex-end;
  }
  
  .unlimited {
    font-size: 11px;
  }
  
  .limit {
    font-size: 12px;
  }
  
  .per-month {
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  .modern-pricing {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  
  .modern-pricing .section-title .title {
    font-size: 24px;
  }
  
  .modern-price-card {
    padding: 20px 15px;
  }
  
  .price-icon {
    width: 60px;
    height: 60px;
  }
  
  .price-icon i {
    font-size: 24px;
  }
  
  .package-name {
    font-size: 18px;
  }
  
  .amount {
    font-size: 28px;
  }
  
  .price-btn {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 160px;
  }
  
  .feature-name {
    font-size: 15px;
  }
  
  .feature-limit {
    font-size: 13px;
  }
  
  .footer-title {
    font-size: 20px;
  }
}

@media (min-width: 1400px) {
  .modern-pricing .section-title .title {
    font-size: 48px;
  }
  
  .modern-pricing .section-title p {
    font-size: 20px;
  }
  
  .modern-price-card {
    padding: 45px 35px;
  }
  
  .amount {
    font-size: 54px;
  }
  
  .footer-title {
    font-size: 32px;
  }
}

/* Price Action */
/* Price Action - Mobile First */
.price-action {
  text-align: center;
  margin-top: 15px;
  padding-top: 10px;
}

@media (min-width: 768px) {
  .price-action {
    padding-top: 15px;
  }
}

.price-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 12px;
  min-width: 180px;
  min-height: 48px;
  justify-content: center;
}

@media (min-width: 768px) {
  .price-btn {
    padding: 15px 30px;
    font-size: 15.5px;
    min-width: 190px;
  }
}

@media (min-width: 1024px) {
  .price-btn {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 200px;
    margin-bottom: 16px;
  }
}

.standard-btn {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #052CFF;
  border: 2px solid rgba(5, 44, 255, 0.2);
}

/* Touch feedback for mobile */
.standard-btn:active {
  transform: scale(0.98);
}

@media (hover: hover) {
.standard-btn:hover {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.3);
    text-decoration: none;
  }
}

.featured-btn {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(5, 44, 255, 0.3);
}

/* Touch feedback for mobile */
.featured-btn:active {
  transform: scale(0.98);
}

@media (hover: hover) {
.featured-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(5, 44, 255, 0.4);
    text-decoration: none;
    color: white;
  }
}

/* Package Tagline */
.package-tagline {
  font-size: 15px;
  color: #64748b;
  margin: 8px 0 20px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .package-tagline {
    font-size: 14px;
  }
}

/* CTA Benefits */
.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  background: rgba(5, 44, 255, 0.03);
  border-radius: 12px;
}

.cta-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
}

.cta-benefits .benefit-item i {
  color: #10b981;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cta-benefits {
    padding: 12px;
    gap: 6px;
  }
  
  .cta-benefits .benefit-item {
    font-size: 12px;
  }
}

/* Social Proof */
.social-proof {
  margin-top: 15px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.05), rgba(10, 220, 199, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(5, 44, 255, 0.1);
}

.user-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.user-avatars .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-avatars .avatar:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 13px;
  color: #475569;
  margin: 0;
  text-align: center;
}

.proof-text strong {
  color: #052CFF;
  font-weight: 700;
}

/* Comparison Section */
.comparison-toggle {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.comparison-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 44, 255, 0.2);
}

.comparison-section {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comparison-table-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table thead {
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.05), rgba(10, 220, 199, 0.05));
}

.comparison-table th {
  padding: 20px;
  font-weight: 700;
  color: #120132;
  text-align: center;
  border-bottom: 2px solid rgba(5, 44, 255, 0.1);
}

.comparison-table th.feature-col {
  text-align: left;
  width: 30%;
}

.comparison-table th.featured {
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.1), rgba(10, 220, 199, 0.1));
  position: relative;
}

.comparison-table th.featured::before {
  content: '⭐';
  position: absolute;
  top: 8px;
  right: 8px;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(5, 44, 255, 0.02);
}

.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  color: #475569;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #120132;
}

@media (max-width: 991px) {
  .comparison-table-wrapper {
    padding: 20px;
  }
  
  .comparison-table {
    font-size: 14px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }
}

@media (max-width: 767px) {
  .comparison-table-wrapper {
    padding: 16px;
  }
  
  .comparison-table {
    font-size: 12px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 8px 6px;
  }
}

/* Pricing Benefits */
.pricing-benefit {
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-benefit:hover {
  transform: translateY(-4px);
}

.pricing-benefit .benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.1), rgba(10, 220, 199, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pricing-benefit:hover .benefit-icon {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  transform: scale(1.1);
}

.pricing-benefit .benefit-icon i {
  font-size: 28px;
  color: #052CFF;
  transition: all 0.3s ease;
}

.pricing-benefit:hover .benefit-icon i {
  color: white;
}

.pricing-benefit h6 {
  font-size: 18px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 10px;
}

.pricing-benefit p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

@media (max-width: 767px) {
  .pricing-benefit {
    padding: 20px 10px;
  }
  
  .pricing-benefit .benefit-icon {
    width: 60px;
    height: 60px;
  }
  
  .pricing-benefit .benefit-icon i {
    font-size: 24px;
  }
  
  .pricing-benefit h6 {
    font-size: 16px;
  }
  
  .pricing-benefit p {
    font-size: 13px;
  }
}

/* Final CTA Section */
.final-cta-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.05), rgba(10, 220, 199, 0.05));
  border-radius: 20px;
  border: 2px solid rgba(5, 44, 255, 0.1);
}

.final-cta-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 16px;
}

.final-cta-section .lead {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 0;
}

.final-cta-section .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta-section .btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 767px) {
  .final-cta-section {
    padding: 40px 20px;
  }
  
  .final-cta-section h3 {
    font-size: 24px;
  }
  
  .final-cta-section .lead {
    font-size: 16px;
  }
  
  .final-cta-section .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .final-cta-section .btn-lg {
    width: 100%;
    min-width: auto;
  }
}

/* Pricing Footer */
.pricing-footer {
  margin-top: 80px;
}

.footer-title {
  font-size: 28px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 40px;
}

.pricing-feature {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.pricing-feature:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pricing-feature i {
  font-size: 40px;
  color: #052CFF;
  margin-bottom: 20px;
}

.pricing-feature h6 {
  font-size: 18px;
  font-weight: 600;
  color: #120132;
  margin-bottom: 12px;
}

.pricing-feature p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 575px) {
  .modern-pricing {
    padding: 70px 0 50px;
  }

  .modern-pricing .section-title .title {
    font-size: 26px;
  }

  .modern-price-card {
    padding: 25px 15px;
  }

  .price-icon {
    width: 60px;
    height: 60px;
  }

  .price-icon i {
    font-size: 24px;
  }

  .package-name {
    font-size: 18px;
  }

  .amount {
    font-size: 32px;
  }

  .price-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .feature-name {
    font-size: 14px;
  }

  .feature-limit {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
  }

  .footer-title {
    font-size: 22px;
  }

  /* Keep feature items horizontal on small screens for better readability */
  .feature-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .feature-limit {
    align-self: auto;
  }
}

/* Modern CTA Section */
.modern-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.modern-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(5, 44, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(10, 220, 199, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(5, 44, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.modern-cta-wrapper {
  position: relative;
  z-index: 2;
}

.modern-cta-content {
  padding-right: 30px;
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  color: #120132;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Trust Indicators */
.cta-trust-indicators {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon i {
  color: white;
  font-size: 18px;
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-number {
  font-size: 20px;
  font-weight: 800;
  color: #052CFF;
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Modern CTA Buttons */
.modern-cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 280px;
  backdrop-filter: blur(10px);
}

.primary-cta {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  color: white;
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.3);
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(5, 44, 255, 0.4);
  color: white;
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.9);
  color: #052CFF;
  border: 2px solid rgba(5, 44, 255, 0.2);
}

.secondary-cta:hover {
  background: rgba(5, 44, 255, 0.05);
  border-color: rgba(5, 44, 255, 0.3);
  transform: translateY(-2px);
  color: #052CFF;
}

.btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.secondary-cta .btn-icon {
  background: rgba(5, 44, 255, 0.1);
}

.btn-icon i {
  font-size: 20px;
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.btn-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.btn-subtext {
  font-size: 13px;
  opacity: 0.8;
  font-weight: 400;
  line-height: 1.3;
}

/* Security Badge */
.security-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 16px;
  max-width: 500px;
}

.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon i {
  color: white;
  font-size: 20px;
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-title {
  font-size: 16px;
  font-weight: 700;
  color: #22c55e;
}

.badge-subtitle {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

/* Visual Section */
.modern-cta-visual {
  position: relative;
}

.visual-wrapper {
  position: relative;
  padding: 60px 0;
}

.main-visual {
  position: relative;
  z-index: 2;
  text-align: center;
}

.main-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Floating Stats */
.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.stat-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.stat-2 {
  top: 10%;
  right: -15%;
  animation-delay: 2s;
}

.stat-3 {
  bottom: 20%;
  left: -5%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  color: white;
  font-size: 16px;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: 18px;
  font-weight: 800;
  color: #052CFF;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Styles for Modern CTA */
@media (max-width: 1199px) {
  .cta-title {
    font-size: 38px;
  }
  
  .modern-cta-content {
    padding-right: 20px;
  }
  
  .floating-stat {
    padding: 12px 16px;
  }
  
  .stat-1 {
    left: -5%;
  }
  
  .stat-2 {
    right: -10%;
  }
}

@media (max-width: 991px) {
  .modern-cta {
    padding: 100px 0;
  }
  
  .cta-title {
    font-size: 34px;
  }
  
  .cta-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .modern-cta-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .cta-trust-indicators {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .trust-item {
    padding: 12px 16px;
    flex: 1;
    min-width: 150px;
  }
  
  .trust-number {
    font-size: 18px;
  }
  
  .modern-cta-buttons {
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .cta-btn {
    min-width: 250px;
    padding: 18px 28px;
  }
  
  .floating-stat {
    position: static;
    margin-bottom: 20px;
    animation: none;
    transform: none !important;
  }
  
  .visual-wrapper {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .main-visual {
    order: 1;
  }
  
  .stat-1, .stat-2, .stat-3 {
    position: static;
    order: 0;
  }
}

@media (max-width: 767px) {
  .modern-cta {
    padding: 80px 0;
  }
  
  .cta-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .cta-subtitle {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .cta-trust-indicators {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .trust-item {
    flex-direction: row;
    min-width: auto;
    width: 100%;
  }
  
  .trust-icon {
    width: 36px;
    height: 36px;
  }
  
  .trust-icon i {
    font-size: 16px;
  }
  
  .trust-number {
    font-size: 16px;
  }
  
  .trust-label {
    font-size: 11px;
  }
  
  .modern-cta-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .cta-btn {
    min-width: auto;
    width: 100%;
    padding: 16px 24px;
  }
  
  .btn-icon {
    width: 42px;
    height: 42px;
  }
  
  .btn-icon i {
    font-size: 18px;
  }
  
  .btn-text {
    font-size: 15px;
  }
  
  .btn-subtext {
    font-size: 12px;
  }
  
  .security-badge {
    padding: 16px;
    max-width: none;
  }
  
  .badge-icon {
    width: 42px;
    height: 42px;
  }
  
  .badge-icon i {
    font-size: 18px;
  }
  
  .badge-title {
    font-size: 15px;
  }
  
  .badge-subtitle {
    font-size: 12px;
  }
  
  .floating-stat {
    padding: 10px 14px;
  }
  
  .stat-icon {
    width: 32px;
    height: 32px;
  }
  
  .stat-icon i {
    font-size: 14px;
  }
  
  .stat-value {
    font-size: 16px;
  }
  
  .stat-label {
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  .modern-cta {
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .cta-subtitle {
    font-size: 14px;
  }
  
  .trust-item {
    padding: 10px 14px;
  }
  
  .trust-icon {
    width: 32px;
    height: 32px;
  }
  
  .trust-icon i {
    font-size: 14px;
  }
  
  .trust-number {
    font-size: 14px;
  }
  
  .cta-btn {
    padding: 14px 20px;
    gap: 12px;
  }
  
  .btn-icon {
    width: 38px;
    height: 38px;
  }
  
  .btn-icon i {
    font-size: 16px;
  }
  
  .btn-text {
    font-size: 14px;
  }
  
  .btn-subtext {
    font-size: 11px;
  }
  
  .security-badge {
    padding: 14px;
    gap: 12px;
  }
  
  .badge-icon {
    width: 38px;
    height: 38px;
  }
  
  .badge-title {
    font-size: 14px;
  }
}

@media (min-width: 1400px) {
  .cta-title {
    font-size: 48px;
  }
  
  .cta-subtitle {
    font-size: 20px;
  }
  
  .modern-cta-content {
    padding-right: 40px;
  }
  
  .cta-trust-indicators {
    gap: 35px;
  }
  
  .trust-item {
    padding: 18px 24px;
  }
  
  .modern-cta-buttons {
    gap: 25px;
  }
  
  .cta-btn {
    min-width: 320px;
    padding: 22px 36px;
  }
  
  .floating-stat {
    padding: 18px 24px;
  }
}
/* Modern Contact Section */
.modern-contact {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.modern-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(5, 44, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(10, 220, 199, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.modern-contact .container {
  position: relative;
  z-index: 2;
}

.modern-contact .section-title .title {
  font-size: 42px;
  font-weight: 800;
  color: #120132;
  line-height: 1.2;
  margin-bottom: 20px;
}

.modern-contact .section-title p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
}

/* Modern FAQ */
.modern-faq {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-title {
  font-size: 28px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 30px;
  text-align: center;
}

.modern-accordion .single-accordion {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(5, 44, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.modern-accordion .single-accordion:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(5, 44, 255, 0.2);
}

.modern-accordion .accordion-btn button {
  background: transparent;
  border: none;
  padding: 20px 24px;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: #120132;
  transition: all 0.3s ease;
  outline: none;
}

.modern-accordion .accordion-btn button:hover {
  color: #052CFF;
}

.modern-accordion .accordion-btn button span {
  flex: 1;
  margin-right: 15px;
}

.modern-accordion .accordion-btn button i {
  font-size: 18px;
  color: #052CFF;
  transition: transform 0.3s ease;
}

.modern-accordion .accordion-btn button:not(.collapsed) i {
  transform: rotate(180deg);
}

.modern-accordion .accordion-content {
  padding: 0 24px 24px 24px;
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
}

/* Modern Contact Form */
.modern-contact-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-header {
  margin-bottom: 30px;
  text-align: center;
}

.contact-title {
  font-size: 28px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Contact Info */
.contact-info {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(5, 44, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(5, 44, 255, 0.1);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 44, 255, 0.1);
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  color: white;
  font-size: 18px;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 14px;
  font-weight: 700;
  color: #052CFF;
}

/* Modern Form */
.modern-form .form-group {
  /* margin-bottom: 24px; */
}

.modern-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #120132;
  margin-bottom: 8px;
}

.modern-form .form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(5, 44, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  color: #120132;
  transition: all 0.3s ease;
  outline: none;
}

.modern-form .form-control:focus {
  border-color: #052CFF;
  box-shadow: 0 0 0 3px rgba(5, 44, 255, 0.1);
  background: white;
}

.modern-form .form-control::placeholder {
  color: #64748b;
}

.modern-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Contact Button */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.3);
  width: 100%;
  justify-content: center;
  cursor: pointer;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(5, 44, 255, 0.4);
  color: white;
}

.contact-btn .btn-icon {
  font-size: 20px;
}

.contact-btn .btn-text {
  font-weight: 700;
}

/* Contact Section Responsive Design */
@media only screen and (max-width: 1199px) {
  .modern-contact .section-title .title {
    font-size: 38px;
  }
  
  .modern-faq,
  .modern-contact-form {
    padding: 35px;
  }
  
  .contact-info {
    gap: 15px;
  }
  
  .info-item {
    padding: 14px 18px;
  }
}

@media only screen and (max-width: 991px) {
  .modern-contact .section-title .title {
    font-size: 34px;
  }
  
  .modern-faq,
  .modern-contact-form {
    padding: 30px;
  }
  
  .faq-title,
  .contact-title {
    font-size: 24px;
  }
  
  .modern-accordion .accordion-btn button {
    padding: 18px 20px;
    font-size: 15px;
  }
  
  .modern-accordion .accordion-content {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }
  
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .info-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .modern-contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .modern-contact .section-title {
    margin-bottom: 50px;
  }
  
  .modern-contact .section-title .title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .modern-contact .section-title p {
    font-size: 16px;
  }
  
  .modern-faq,
  .modern-contact-form {
    padding: 25px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
  }
  
  .faq-title,
  .contact-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .contact-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .modern-accordion .single-accordion {
    margin-bottom: 12px;
    border-radius: 12px;
  }
  
  .modern-accordion .accordion-btn button {
    padding: 16px 18px;
    font-size: 14px;
  }
  
  .modern-accordion .accordion-btn button span {
    margin-right: 10px;
  }
  
  .modern-accordion .accordion-btn button i {
    font-size: 16px;
  }
  
  .modern-accordion .accordion-content {
    padding: 0 18px 18px 18px;
    font-size: 13px;
    line-height: 1.5;
  }
  
  .contact-info {
    margin-bottom: 25px;
  }
  
  .info-item {
    padding: 12px 16px;
    border-radius: 12px;
  }
  
  .info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  
  .info-icon i {
    font-size: 16px;
  }
  
  .info-label {
    font-size: 11px;
  }
  
  .info-value {
    font-size: 13px;
  }
  
  .modern-form .form-group {
    /* margin-bottom: 20px; */
  }
  
  .modern-form label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .modern-form .form-control {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
  }
  
  .modern-form textarea.form-control {
    min-height: 100px;
  }
  
  .contact-btn {
    padding: 16px 28px;
    font-size: 15px;
    border-radius: 12px;
    gap: 10px;
  }
  
  .contact-btn .btn-icon {
    font-size: 18px;
  }
}

@media only screen and (max-width: 575px) {
  .modern-contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .modern-contact .section-title {
    margin-bottom: 40px;
  }
  
  .modern-contact .section-title .title {
    font-size: 24px;
  }
  
  .modern-contact .section-title p {
    font-size: 15px;
  }
  
  .modern-faq,
  .modern-contact-form {
    padding: 20px 15px;
    border-radius: 16px;
  }
  
  .faq-title,
  .contact-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  
  .contact-subtitle {
    font-size: 14px;
  }
  
  .modern-accordion .accordion-btn button {
    padding: 14px 16px;
    font-size: 13px;
  }
  
  .modern-accordion .accordion-content {
    padding: 0 16px 16px 16px;
    font-size: 12px;
  }
  
  .info-item {
    padding: 10px 14px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .info-icon {
    width: 32px;
    height: 32px;
  }
  
  .info-icon i {
    font-size: 14px;
  }
  
  .info-content {
    align-items: center;
  }
  
  .info-label {
    font-size: 10px;
  }
  
  .info-value {
    font-size: 12px;
  }
  
  .modern-form .form-control {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .contact-btn {
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 10px;
  }
  
  .contact-btn .btn-icon {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) {
  .modern-contact .section-title .title {
    font-size: 22px;
  }
  
  .modern-faq,
  .modern-contact-form {
    padding: 18px 12px;
  }
  
  .faq-title,
  .contact-title {
    font-size: 18px;
  }
  
  .modern-accordion .accordion-btn button {
    padding: 12px 14px;
    font-size: 12px;
  }
  
  .modern-accordion .accordion-content {
    padding: 0 14px 14px 14px;
    font-size: 11px;
  }
  
  .contact-info {
    gap: 8px;
  }
  
  .info-item {
    padding: 8px 12px;
    max-width: 100%;
  }
  
  .modern-form .form-control {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .contact-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Contact Section Mobile Improvements */
@media only screen and (max-width: 575px) {
  /* Stack FAQ and form vertically on mobile */
  .modern-contact .row > .col-xl-6 {
    margin-bottom: 20px;
  }
  
  .modern-contact .row > .col-xl-6:last-child {
    margin-bottom: 0;
  }
  
  /* Adjust contact form spacing on very small screens */
  .modern-form .row .col-8,
  .modern-form .row .col-4 {
    margin-bottom: 15px;
  }
  
  .modern-form .row .col-4 {
    padding-left: 8px;
  }
  
  .modern-form .row .col-8 {
    padding-right: 8px;
  }
}

/* Landscape mobile optimization */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .modern-contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .modern-faq,
  .modern-contact-form {
    padding: 20px;
  }
  
  .contact-info {
    flex-direction: row;
    justify-content: space-around;
  }
  
  .info-item {
    flex-direction: row;
    text-align: left;
    max-width: 45%;
  }
}

/* Contact Section Final Touches */
.modern-contact {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.modern-contact::before {
  background: 
    radial-gradient(circle at 80% 20%, rgba(5, 44, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(10, 220, 199, 0.08) 0%, transparent 50%);
}

.modern-contact-info {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-method:hover {
  transform: translateX(8px);
}

.method-icon {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
}

.modern-contact-form::before {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
}


/* New animations for contact section */
@keyframes iconPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
  }
}

/* Enhanced Contact Info Section - chatwiser Branding */
.brand-accent {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 32px rgba(5, 44, 255, 0.3);
  position: relative;
}

.brand-accent::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border-radius: 23px;
  opacity: 0.3;
  z-index: -1;
  animation: brandPulse 3s ease-in-out infinite;
}

.brand-accent i {
  color: white;
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Trust Indicators Header */
.trust-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.trust-header h6 {
  font-size: 16px;
  font-weight: 700;
  color: #120132;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.trust-header h6::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border-radius: 2px;
}

/* CTA Section in Contact Info */
.contact-cta {
  background: rgba(5, 44, 255, 0.03);
  border-radius: 20px;
  padding: 30px 24px;
  border: 1px solid rgba(5, 44, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 44, 255, 0.05), rgba(10, 220, 199, 0.05));
  border-radius: 20px;
  opacity: 0.5;
}

.cta-content {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.cta-content h6 {
  font-size: 18px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-btn.primary-btn {
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(5, 44, 255, 0.3);
}

.cta-btn.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.4);
  color: white;
}

.cta-btn.secondary-btn {
  background: transparent;
  color: #052CFF;
  border: 2px solid #052CFF;
}

.cta-btn.secondary-btn:hover {
  background: #052CFF;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.3);
}

.cta-btn i {
  font-size: 16px;
}

/* Enhanced animations */
@keyframes brandPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

/* Responsive adjustments for enhanced contact section */
@media only screen and (max-width: 991px) {
  .brand-accent {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }
  
  .brand-accent i {
    font-size: 24px;
  }
  
  .trust-header h6 {
    font-size: 14px;
  }
  
  .cta-content h6 {
    font-size: 16px;
  }
  
  .cta-content p {
    font-size: 13px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-btn {
    padding: 12px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .brand-accent {
    width: 45px;
    height: 45px;
  }
  
  .brand-accent i {
    font-size: 20px;
  }
  
  .trust-header {
    margin-bottom: 20px;
  }
  
  .trust-header h6 {
    font-size: 13px;
  }
  
  .contact-cta {
    padding: 24px 20px;
    margin-top: 24px;
  }
  
  .cta-content h6 {
    font-size: 15px;
  }
  
  .cta-content p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 575px) {
  .brand-accent {
    width: 40px;
    height: 40px;
  }
  
  .brand-accent i {
    font-size: 18px;
  }
  
  .contact-cta {
    padding: 20px 16px;
  }
  
  .cta-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
  
  .cta-btn i {
    font-size: 14px;
  }
}

/* Streamlined Contact Section */
.modern-contact-form {
  max-width: none;
  text-align: center;
}

.modern-contact-form .contact-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0 40px 0;
  flex-wrap: wrap;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(5, 44, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(5, 44, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 180px;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 44, 255, 0.1);
  background: rgba(5, 44, 255, 0.08);
}

.info-card .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card .info-icon i {
  color: white;
  font-size: 18px;
}

.info-card .info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.info-card .info-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-card .info-value {
  font-size: 14px;
  font-weight: 700;
  color: #052CFF;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

.form-note i {
  color: #10B981;
  font-size: 16px;
}

/* Form Trust Badges */
.form-trust {
  margin-top: 16px;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(5, 44, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(5, 44, 255, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: #052CFF;
}

.trust-badge i {
  font-size: 14px;
  color: #052CFF;
}

/* Enhanced Contact Form Layout */
.modern-form .row {
  margin-bottom: 0;
}

.modern-form .form-group {
  /* margin-bottom: 24px; */
}

/* Contact Section Responsive */
@media only screen and (max-width: 991px) {
  .contact-info-cards {
    gap: 20px;
  }
  
  .info-card {
    min-width: 160px;
    padding: 14px 16px;
  }
  
  .info-card .info-icon {
    width: 36px;
    height: 36px;
  }
  
  .info-card .info-icon i {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-info-cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .info-card {
    min-width: 200px;
    justify-content: center;
  }
  
  .info-card .info-content {
    text-align: center;
  }
  
  .trust-badges {
    align-items: center;
  }
  
  .trust-badge {
    justify-content: center;
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .contact-info-cards {
    margin: 20px 0 30px 0;
  }
  
  .info-card {
    min-width: 180px;
    padding: 12px 14px;
  }
  
  .info-card .info-icon {
    width: 32px;
    height: 32px;
  }
  
  .info-card .info-icon i {
    font-size: 14px;
  }
  
  .info-card .info-label {
    font-size: 11px;
  }
  
  .info-card .info-value {
    font-size: 13px;
  }
  
  .form-actions {
    margin-top: 24px;
  }
  
  .contact-btn {
    width: 100%;
  }
}

/* Modern Footer - chatwiser Branding */
.modern-footer {
  background: linear-gradient(135deg, #120132 0%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(5, 44, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(10, 220, 199, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.modern-footer .container {
  position: relative;
  z-index: 2;
}

/* Footer Content */
.footer-content {
  padding: 80px 0 40px 0;
}

/* Brand Widget */
.brand-widget .footer-logo {
  margin-bottom: 24px;
}

.brand-widget .logo {
  max-width: 160px;
  height: auto;
}

.brand-description {
  font-size: 16px;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 30px;
}

/* Footer Trust Stats */
.footer-trust {
  margin-top: 20px;
}

.trust-stats {
  display: flex;
  gap: 24px;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 20px;
  background: rgba(5, 44, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(5, 44, 255, 0.2);
  transition: all 0.3s ease;
}

.trust-stat:hover {
  transform: translateY(-2px);
  background: rgba(5, 44, 255, 0.15);
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.2);
}

.trust-stat .trust-number {
  font-size: 24px;
  font-weight: 800;
  color: #0ADCC7;
  line-height: 1;
  margin-bottom: 4px;
}

.trust-stat .trust-label {
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Widget Titles */
.widget-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #0ADCC7;
  transform: translateX(4px);
}

/* Contact Info */
.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 18px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 15px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #0ADCC7;
}

/* Social Links */
.social-links h6 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-icon.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-icon.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-icon.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.copyright p {
  margin: 0;
  font-size: 14px;
  color: #cbd5e1;
}

.copyright a {
  color: #0ADCC7;
  text-decoration: none;
  font-weight: 600;
}

.copyright a:hover {
  color: #052CFF;
}

/* Security Badges */
.footer-security {
  text-align: right;
}

.security-badges {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.security-badge i {
  color: #10b981;
  font-size: 16px;
}

.security-badge span {
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 500;
}

/* Modern Cookie Alert */
.modern-cookie-alert {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  animation: slideInUp 0.5s ease;
}

.cookie-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cookie-content {
  display: flex;
  gap: 16px;
  flex: 1;
}

.cookie-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-icon i {
  color: white;
  font-size: 18px;
}

.cookie-text h6 {
  font-size: 16px;
  font-weight: 700;
  color: #120132;
  margin-bottom: 8px;
}

.cookie-text p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-link {
  font-size: 12px;
  color: #052CFF;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.cookie-link:hover {
  color: #0ADCC7;
}

.modern-btn {
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 44, 255, 0.3);
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Footer Responsive */
@media only screen and (max-width: 1199px) {
  .footer-content {
    padding: 60px 0 30px 0;
  }
  
  .trust-stats {
    gap: 16px;
  }
  
  .trust-stat {
    padding: 14px 16px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-content {
    padding: 50px 0 25px 0;
  }
  
  .brand-widget,
  .links-widget,
  .contact-widget {
    margin-bottom: 40px;
  }
  
  .trust-stats {
    justify-content: center;
  }
  
  .footer-security {
    text-align: center;
    margin-top: 20px;
  }
  
  .security-badges {
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .footer-content {
    padding: 40px 0 20px 0;
  }
  
  .trust-stats {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-stat {
    padding: 12px 16px;
  }
  
  .contact-item {
    padding: 12px 0;
  }
  
  .contact-icon {
    width: 36px;
    height: 36px;
  }
  
  .contact-icon i {
    font-size: 16px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .modern-cookie-alert {
    left: 10px;
    right: 10px;
    padding: 20px;
  }
  
  .cookie-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .cookie-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media only screen and (max-width: 575px) {
  .footer-content {
    padding: 30px 0 15px 0;
  }
  
  .widget-title {
    font-size: 18px;
    text-align: center;
  }
  
  .widget-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    text-align: center;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .copyright {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .security-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* Contact Widget Fix */
.footer-widget.contact-widget {
  text-align: left;
}

.footer-widget.contact-widget .widget-title {
  text-align: left;
}

.footer-widget.contact-widget .contact-info {
  display: block;
  margin-bottom: 30px;
}

.footer-widget.contact-widget .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget.contact-widget .contact-item:last-child {
  border-bottom: none;
}

.footer-widget.contact-widget .contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #052CFF, #0ADCC7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-widget.contact-widget .contact-icon i {
  color: white;
  font-size: 18px;
}

.footer-widget.contact-widget .contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-widget.contact-widget .contact-label {
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-widget.contact-widget .contact-value {
  font-size: 15px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-widget.contact-widget .contact-value:hover {
  color: #0ADCC7;
}

/* Social Links Fix */
.footer-widget.contact-widget .social-links {
  margin-top: 30px;
}

.footer-widget.contact-widget .social-links h6 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.footer-widget.contact-widget .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-widget.contact-widget .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-widget.contact-widget .social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Trust Stats Fix */
.footer-widget.brand-widget .trust-stats {
  display: flex;
  gap: 24px;
}

.footer-widget.brand-widget .trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 20px;
  background: rgba(5, 44, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(5, 44, 255, 0.2);
  transition: all 0.3s ease;
  flex: 1;
}

.footer-widget.brand-widget .trust-stat:hover {
  transform: translateY(-2px);
  background: rgba(5, 44, 255, 0.15);
  box-shadow: 0 8px 25px rgba(5, 44, 255, 0.2);
}

.footer-widget.brand-widget .trust-stat .trust-number {
  font-size: 24px;
  font-weight: 800;
  color: #0ADCC7;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-widget.brand-widget .trust-stat .trust-label {
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced Mobile Responsiveness for Footer */

/* Tablet and Small Desktop */
@media only screen and (max-width: 1199px) {
  .modern-footer .footer-content {
    padding: 60px 0 30px 0;
  }
  
  .trust-stats {
    gap: 16px;
  }
  
  .trust-stat {
    padding: 12px 16px;
  }
  
  .trust-stat .trust-number {
    font-size: 20px;
  }
  
  .contact-item {
    padding: 14px 0;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Tablet Portrait */
@media only screen and (max-width: 991px) {
  .modern-footer .footer-content {
    padding: 50px 0 25px 0;
  }
  
  .footer-widget {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .footer-widget.brand-widget {
    text-align: center;
  }
  
  .footer-widget.links-widget {
    text-align: center;
  }
  
  .footer-widget.contact-widget {
    text-align: center;
  }
  
  .widget-title {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .widget-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    text-align: center;
  }
  
  .contact-info {
    max-width: 400px;
    margin: 0 auto 30px auto;
  }
  
  .contact-item {
    justify-content: flex-start;
    text-align: left;
  }
  
  .trust-stats {
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-security {
    text-align: center;
    margin-top: 20px;
  }
  
  .security-badges {
    justify-content: center;
  }
}

/* Mobile Landscape */
@media only screen and (max-width: 767px) {
  .modern-footer .footer-content {
    padding: 40px 0 20px 0;
  }
  
  .footer-widget {
    margin-bottom: 35px;
  }
  
  .brand-description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  
  .trust-stats {
    flex-direction: row;
    gap: 12px;
    max-width: 100%;
  }
  
  .trust-stat {
    flex: 1;
    padding: 12px 8px;
    min-width: 0;
  }
  
  .trust-stat .trust-number {
    font-size: 18px;
  }
  
  .trust-stat .trust-label {
    font-size: 11px;
  }
  
  .widget-title {
    font-size: 18px;
    margin-bottom: 18px;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    font-size: 14px;
  }
  
  .contact-info {
    max-width: 100%;
  }
  
  .contact-item {
    padding: 12px 0;
    gap: 12px;
  }
  
  .contact-icon {
    width: 36px;
    height: 36px;
  }
  
  .contact-icon i {
    font-size: 16px;
  }
  
  .contact-label {
    font-size: 11px;
  }
  
  .contact-value {
    font-size: 14px;
  }
  
  .social-links h6 {
    font-size: 15px;
    margin-bottom: 14px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .footer-bottom {
    padding: 20px 0;
    margin-top: 30px;
  }
  
  .copyright p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .security-badges {
    gap: 12px;
  }
  
  .security-badge {
    padding: 6px 12px;
  }
  
  .security-badge span {
    font-size: 11px;
  }
}

/* Mobile Portrait */
@media only screen and (max-width: 575px) {
  .modern-footer .footer-content {
    padding: 30px 0 15px 0;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
  
  .brand-widget .footer-logo {
    margin-bottom: 20px;
  }
  
  .brand-widget .logo {
    max-width: 140px;
  }
  
  .brand-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .trust-stats {
    flex-direction: column;
    gap: 10px;
    max-width: 280px;
  }
  
  .trust-stat {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    text-align: left;
  }
  
  .trust-stat .trust-number {
    font-size: 20px;
    margin-bottom: 0;
  }
  
  .trust-stat .trust-label {
    font-size: 12px;
    text-align: right;
  }
  
  .widget-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    font-size: 14px;
    display: inline-block;
    padding: 4px 0;
  }
  
  .contact-info {
    text-align: left;
  }
  
  .contact-item {
    padding: 10px 0;
    gap: 12px;
  }
  
  .contact-icon {
    width: 32px;
    height: 32px;
  }
  
  .contact-icon i {
    font-size: 14px;
  }
  
  .social-links {
    margin-top: 25px;
  }
  
  .social-links h6 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .footer-bottom {
    padding: 16px 0;
    margin-top: 25px;
  }
  
  .copyright p {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  
  .security-badge {
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* Small Mobile (iPhone SE, etc.) */
@media only screen and (max-width: 480px) {
  .modern-footer .footer-content {
    padding: 25px 0 12px 0;
  }
  
  .footer-widget {
    margin-bottom: 25px;
  }
  
  .brand-widget .logo {
    max-width: 120px;
  }
  
  .brand-description {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .trust-stats {
    max-width: 260px;
  }
  
  .trust-stat {
    padding: 10px 14px;
  }
  
  .trust-stat .trust-number {
    font-size: 18px;
  }
  
  .trust-stat .trust-label {
    font-size: 11px;
  }
  
  .widget-title {
    font-size: 15px;
    margin-bottom: 14px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .contact-item {
    padding: 8px 0;
    gap: 10px;
  }
  
  .contact-icon {
    width: 30px;
    height: 30px;
  }
  
  .contact-icon i {
    font-size: 13px;
  }
  
  .contact-label {
    font-size: 10px;
  }
  
  .contact-value {
    font-size: 13px;
  }
  
  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  
  .footer-bottom {
    padding: 14px 0;
    margin-top: 20px;
  }
  
  .copyright p {
    font-size: 11px;
    line-height: 1.4;
  }
}

/* Cookie Alert Mobile Responsiveness */
@media only screen and (max-width: 767px) {
  .modern-cookie-alert {
    left: 10px;
    right: 10px;
    padding: 20px;
    max-width: none;
  }
  
  .cookie-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .cookie-content {
    gap: 12px;
  }
  
  .cookie-icon {
    width: 36px;
    height: 36px;
  }
  
  .cookie-icon i {
    font-size: 16px;
  }
  
  .cookie-text h6 {
    font-size: 15px;
  }
  
  .cookie-text p {
    font-size: 13px;
  }
  
  .cookie-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .modern-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .cookie-link {
    font-size: 11px;
  }
}

@media only screen and (max-width: 480px) {
  .modern-cookie-alert {
    left: 5px;
    right: 5px;
    padding: 16px;
    bottom: 10px;
  }
  
  .cookie-content {
    gap: 10px;
  }
  
  .cookie-icon {
    width: 32px;
    height: 32px;
  }
  
  .cookie-icon i {
    font-size: 14px;
  }
  
  .cookie-text h6 {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .cookie-text p {
    font-size: 12px;
  }
  
  .cookie-actions {
    gap: 8px;
  }
  
  .modern-btn {
    padding: 7px 14px;
    font-size: 12px;
  }
  
  .cookie-link {
    font-size: 10px;
  }
}
