@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&amp;display=swap");
/*===========================
  COMMON css 
===========================*/
:root {
  --font-family: "Inter", sans-serif;
  --primary: #155bd5;
  --primary-dark: #1c3ab6;
  --primary-light: #e2f1ff;
  --accent: #00d4d7;
  --accent-dark: #00bac1;
  --accent-light: #dff9f8;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #8f15d5;
  --secondary-dark: #6013c7;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
  --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
  --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
  --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
  --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
  --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
  --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
  --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
  --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
  --shadow-1:
    0px 0px 1px rgba(40, 41, 61, 0.08), 0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2:
    0px 0px 1px rgba(40, 41, 61, 0.04), 0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3:
    0px 0px 2px rgba(40, 41, 61, 0.04), 0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4:
    0px 2px 4px rgba(40, 41, 61, 0.04), 0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5:
    0px 2px 8px rgba(40, 41, 61, 0.04), 0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6:
    0px 2px 8px rgba(40, 41, 61, 0.08), 0px 20px 32px rgba(96, 97, 112, 0.24);
}

body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--black);
  margin: 0px;
}

h1,
.h1 {
  font-size: 2.75em;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 2.25em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.75em;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.5em;
  line-height: 1.25;
}

h5,
.h5 {
  font-size: 1.25em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: 0.875em;
  line-height: 1.25;
}

.display-1 {
  font-size: 5.5em;
  line-height: 1.25;
}

.display-2 {
  font-size: 4.75em;
  line-height: 1.25;
}

.display-3 {
  font-size: 4em;
  line-height: 1.25;
}

.display-4 {
  font-size: 3.25em;
  line-height: 1.25;
}

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-3);
  margin: 0px;
}

.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.15em;
  line-height: 1.5;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* @media (max-width: 576px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
} */

.btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.btn:hover {
  color: inherit;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}
.btn.btn-lg {
  font-size: 1.15em;
  padding: 16px 24px;
}
.btn.btn-sm {
  padding: 8px 16px;
}
.btn.square {
  border-radius: 0px;
}
.btn.semi-rounded {
  border-radius: 12px;
}
.btn.rounded-full {
  border-radius: 50px;
}
.btn.icon-left span,
.btn.icon-left i {
  margin-right: 8px;
}
.btn.icon-right span,
.btn.icon-right i {
  margin-left: 8px;
}
.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}
.btn.icon-btn.btn-lg {
  width: 56px;
  height: 56px;
  line-height: 56px;
}
.btn.icon-btn.btn-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn,
.primary-btn:hover,
.primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.active.primary-btn-outline,
.primary-btn-outline:hover,
.primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--primary);
  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: 14px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 5px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--dark-1);
}

/*============================
  Section Title Three CSS
==============================*/
.section-title-three {
  text-align: center;
  max-width: 550px;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
  text-align: left;
  margin-bottom: 30px;
  max-width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-three {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .section-title-three {
    margin-bottom: 35px;
  }
}
.section-title-three h5 {
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .section-title-three h5 {
    font-size: 0.8rem;
  }
}
.section-title-three h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-three h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-title-three h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.section-title-three p {
  color: var(--dark-3);
}

.made-in-ayroui {
  position: fixed;
  left: 5px;
  bottom: 5px;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.made-in-ayroui:hover {
  transform: translateY(-5px);
}

/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

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

/*===== NAVBAR ONE =====*/
.navbar-one {
  background: var(--primary);
  position: absolute;
  width: 100%;
  z-index: 999;
}

.sticky {
  position: fixed;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one {
    padding: 20px 0;
  }
}
.navbar-one .navbar {
  position: relative;
  padding: 0;
}
.navbar-one .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-collapse {
    position: absolute;
    top: 140%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 99;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
  }
}
.navbar-one .navbar .navbar-nav .nav-item {
  margin: 0 5px;
  position: relative;
}
.navbar-one .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 28px 15px;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-one .navbar .navbar-nav .nav-item a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0%;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-one .navbar .navbar-nav .nav-item a.active::before {
  opacity: 0.1;
  visibility: visible;
  width: 100%;
}
.navbar-one .navbar .navbar-nav .nav-item a:hover::before {
  opacity: 0.1;
  visibility: visible;
  width: 100%;
}
.navbar-one .navbar .navbar-nav .nav-item a i {
  font-weight: 700;
  padding-left: 8px;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item a {
    padding: 10px 10px;
    display: block;
  }
  .navbar-one .navbar .navbar-nav .nav-item a::before {
    border-radius: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item {
    margin-bottom: 5px;
  }
  .navbar-one .navbar .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }
}

.navbar-one .navbar .navbar-nav .login-btn {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0;
  padding: 10px 20px;
  display: inline-block;
  width: auto;
  text-align: center;
}

.navbar-one .navbar .navbar-nav .login-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.navbar-one .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 260px;
  background-color: var(--white);
  box-shadow: var(--shadow-4);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a {
    border-radius: 5px !important;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  font-weight: 500;
  position: relative;
  color: var(--dark);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 5;
  text-transform: capitalize;
  border-radius: 5px;
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover {
  background-color: var(--primary);
  color: var(--white);
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a::before {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover {
    background-color: var(--primary-dark);
    color: var(--white);
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
    color: var(--primary-dark);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover i {
    color: var(--white);
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 1400px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
    height: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.navbar-one .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-one .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 3px;
  }
}
@media (max-width: 767px) {
  .navbar-one .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 3px;
  }
}
.navbar-one .navbar .navbar-btn ul {
  display: flex;
}
.navbar-one .navbar .navbar-btn ul li {
  display: inline-block;
  margin-right: 12px;
}
.navbar-one .navbar .navbar-btn ul li a {
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0;
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn:hover {
  background-color: transparent;
  color: var(--white);
}
/* ===== Buttons Css ===== */
.header-ten .header-text .light-rounded-buttons .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-ten .header-text .light-rounded-buttons .active.primary-btn,
.header-ten .header-text .light-rounded-buttons .primary-btn:hover,
.header-ten .header-text .light-rounded-buttons .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-ten .header-text .light-rounded-buttons .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-ten {
  position: relative;
  background: var(--light-2);
  overflow: hidden;
  padding: 160px 0 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-ten {
    padding: 150px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .header-ten {
    padding: 130px 0 60px 0;
  }
}
.header-ten .header-inner {
  height: auto;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 3;
}
.header-ten .header-text {
  float: none;
}
.header-ten .header-text h6 {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}
.header-ten .header-text h1 {
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--black);
  letter-spacing: -1px;
}
.header-ten .header-text p {
  color: var(--dark-3);
}
.header-ten .header-text .light-rounded-buttons {
  margin-top: 30px;
}
.header-ten .header-image {
  float: right;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
  display: block;
  border-radius: 50%;
  background-image: url("../images/testimonial/premium_photo-1661301075857-63868ae88c00.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
}

@media (max-width: 576px) {
  .home-slider .header-text h1 {
    padding-top: 10px;
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .home-slider .btn {
    padding: 8px 16px;
  }
}

@media (max-width: 991px) {
  .header-ten .header-image {
    max-width: 350px;
    margin: 0 auto;
    float: none;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .header-ten .header-image {
    max-width: 250px;
  }
}
.header-ten .header-image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-image: url("../images/header/shape2.png");
  background-repeat: no-repeat;
  height: 100px;
  width: 100px;
  z-index: -1;
  background-size: contain;
  background-position: center;
}
.header-ten .header-image .shape3 {
  position: absolute;
  bottom: 35px;
  right: 60px;
  z-index: -1;
}
.header-ten .verticle-lines .vlines {
  width: 3px;
  height: 100%;
  background: #473bf036;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-animation-name: lineanim;
  animation-name: lineanim;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  opacity: 0.2;
}
.header-ten .verticle-lines .vlines.vlines.one {
  left: 20%;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.header-ten .verticle-lines .vlines.vlines.two {
  left: 40%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.header-ten .verticle-lines .vlines.vlines.three {
  left: 60%;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.header-ten .verticle-lines .vlines.vlines.four {
  left: 80%;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

@-webkit-keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}
@keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

/* ===== Buttons Css ===== */
.services-seven .single-service .light-rounded-buttons .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.services-seven .single-service .light-rounded-buttons .active.primary-btn,
.services-seven .single-service .light-rounded-buttons .primary-btn:hover,
.services-seven .single-service .light-rounded-buttons .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.services-seven .single-service .light-rounded-buttons .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===========================
  services css 
===========================*/
.services-seven {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  /* Section Title Six */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-seven {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .services-seven {
    padding: 60px 0 60px 0;
  }
}
.services-seven .single-service {
  position: relative;
  text-align: left;
  padding: 50px;
  box-shadow: var(--shadow-2);
  border-radius: 5px;
  border: 1px solid var(--light-3);
  background-color: var(--white);
  overflow: hidden;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-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) {
  .services-seven .single-service {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .services-seven .single-service {
    padding: 35px;
  }
}
.services-seven .single-service::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0%;
  content: "";
  background-color: var(--primary);
  transition: all 0.4s ease-in-out;
}
.services-seven .single-service:hover {
  box-shadow: var(--shadow-4);
}
.services-seven .single-service:hover::before {
  width: 100%;
}
.services-seven .single-service .serial {
  font-size: 45px;
  display: block;
  margin-bottom: 7px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--primary);
  font-weight: 800;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.services-seven .single-service:hover .serial {
  -webkit-text-stroke-color: transparent;
  -webkit-text-fill-color: var(--primary);
}
.services-seven .single-service h3 {
  color: var(--black);
  font-weight: 600;
}
.services-seven .single-service p {
  color: var(--dark-3);
  margin-top: 25px;
}
.services-seven .single-service .light-rounded-buttons {
  margin-top: 25px;
}

.services-digital-card {
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .serial {
    font-size: 35px !important;
  }
  .single-service h4 {
    font-size: 16px;
  }
  .services-button {
    padding: 8px 14px;
  }
}

/*===========================
  about-03 css
===========================*/
.about-three {
  background-color: var(--light-3);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-three {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .about-three {
    padding: 60px 0 60px 0;
  }
}

.about-three .row {
  align-items: center;
}

.about-feature-image img {
  transition: transform 0.4s ease;
}

.about-feature-image:hover img {
  transform: scale(1.05);
}

.about-feature-three .about-feature-image img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
/* --- About Feature Section (Vertical Stack) --- */
.about-feature-items-three {
  padding-left: 20px; /* Padding adjust ki taaki container mein fit baithe */
  padding-right: 20px;
  display: block; /* Flex hata diya taaki stack bane */
  height: auto;
  padding-top: 20px;
}

/* Heading ko upar spacing dene ke liye */
.section-title-three {
  margin-bottom: 40px;
  text-align: left; /* Left align rakha hai, center chahiye toh center kar dena */
}

/* List container */
.about-feature-items-three ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-feature-items-three ul li {
  position: relative;
  margin-bottom: 35px; /* Points ke beech ka gap */
  display: block;
}

.about-feature-items-three ul li:last-child {
  margin-bottom: 0;
}

/* Icon (Number/Logo) Style */
.about-feature-items-three ul li span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5f6fff; /* Blue Color */
  color: #fff;
  position: absolute;
  left: 0;
  top: 5px; /* Text ke sath align karne ke liye */
  transition: all 0.4s ease-in-out;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(95, 111, 255, 0.2);
}

/* Content adjustment taaki icon ke side mein na dabe */
.about-feature-items-three ul li .content {
  padding-left: 70px; /* Icon ke liye space */
  display: block;
}

.about-feature-items-three ul li .content .list-title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.about-feature-items-three ul li .content p {
  margin-bottom: 0;
  line-height: 1.6;
}

.about-feature-items-three ul li:hover span {
  transform: translateY(-5px);
  background-color: #155bd5;
}

/* --- Responsive Fix --- */
@media (max-width: 991px) {
  .about-feature-items-three {
    padding: 0;
    margin-top: 40px;
  }
  .section-title-three h2 {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .about-feature-image {
    position: sticky;
    top: 120px;
  }
}

@media (min-width: 576px) {
  .group-title {
    font-size: 20px !important;
  }
}

/*==== features Section ====*/
.features-section {
  background: #fff;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.lni {
  color: #000;
}
.footer-social .lni, .contact-info .lni {
  color: #fff;
}

.main-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.sub-text {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.group-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  border-left: 5px solid #5f6fff;
  padding-left: 15px;
  margin-bottom: 30px;
}

.infographic-wrapper {
  position: relative;
  padding-top: 20px;
}

.step-card {
  text-align: center;
  transition: all 0.4s ease;
}

.step-circle {
    width: 100%;
    max-width: 320px;
    /* Desktop pe circle maintain karne ke liye */
    aspect-ratio: 1/1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* Padding ko balance kiya taaki text na chipke */
    padding: 38px; 
    
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    background: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    
    /* overflow: hidden hata diya taaki text kate nahi */
    overflow: visible; 
}


.step-circle p {
  font-size: 13px;
}

.infographic-wrapper {
  row-gap: 40px;
}

.step-1 .step-circle {
  background: #fff;
  color: #000;
}
.step-2 .step-circle {
  background: #fff;
  color: #000;
}
.step-3 .step-circle {
  background: #fff;
  color: #000;
}

.curve-line {
  border-color: #605d5d !important;
}

.step-number {
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.step-circle p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: #000;
}

.step-icon {
  font-size: 30px;
  margin-bottom: 5px;
  opacity: 0.7;
}

.curve-line {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 150px;
  border: 3px solid #4dd0e1;
  border-radius: 50% / 100% 100% 0 0;
  border-color: #4dd0e1 transparent transparent transparent;
  transform: translateY(-80%);
  z-index: 0;
}

.step-card:hover {
  transform: translateY(-15px);
}

.step-card:hover .step-circle {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

/* Responsive Fix */
@media (max-width: 991px) {
    .step-circle {
        /* Circle ki jagah thoda 'Oval' shape lene do taaki text fit ho */
        aspect-ratio: auto !important; 
        min-height: 320px; /* Ek minimum height set rakhi */
        padding: 45px 25px !important; /* Side se gap badha diya */
        border-radius: 160px; 
    }
    
    .step-circle p {
        overflow: visible !important;
        display: block !important;
        text-align: center;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .step-circle {
        max-width: 290px; 
        min-height: 280px;
        padding: 40px 20px !important;
    }
    
.step-number{
  font-size: 20px;
  margin-bottom: 0    ;
}

.step-title{
  font-size: 16px;
}

    .step-title {
        font-size: 18px !important;
        margin-bottom: 8px;
    }
    
    .step-circle p {
        font-size: 13px !important; 
    }
}
@media (max-width: 767px) {
  .main-heading {
    font-size: 28px;
  }
  .step-circle {
    width: 300px;
    height: 300px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .step-circle {
    max-width: 260px;
    padding: 20px;
  }
}

/*---WHy-Choose Section--*/
/* --- Why Choose Section Styles --- */
.why-choose-section {
  background-color: #fafafa; /* Pure White Background */
  position: relative;
  padding: 100px 0;
}

.main-title {
  font-size: 34px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Card Styling */
.why-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease-in-out;
  border: 1px solid #f1f5f9;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Bottom Border Glow Effect */
.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #155bd5; /* Theme Blue */
  transition: all 0.4s ease;
}

/* Icon Styling */
.icon-wrap {
  width: 70px;
  height: 70px;
  background: #f0f7ff; /* Light Blue BG */
  color: #155bd5; /* Theme Blue */
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.card-text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Hover Effects --- */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(21, 91, 213, 0.1);
  border-color: rgba(21, 91, 213, 0.2);
}

.why-card:hover .icon-wrap {
  background: #155bd5;
  color: #ffffff;
}

.why-card:hover::after {
  width: 100%;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .main-title {
    font-size: 28px;
  }
  .why-card {
    padding: 30px 20px;
  }
}

/* ===== Buttons Css ===== */
.pricing-style-fifteen .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.pricing-style-fifteen .active.primary-btn,
.pricing-style-fifteen .primary-btn:hover,
.pricing-style-fifteen .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.pricing-style-fifteen .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===== PRICING THIRTEEN =====*/
.pricing-fifteen {
  padding: 100px 0;
  /* Section Title Five */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fifteen {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .pricing-fifteen {
    padding: 60px 0 60px 0;
  }
}
.pricing-fifteen .section-title-three {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fifteen .section-title-three {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .pricing-fifteen .section-title-three {
    margin-bottom: 35px;
  }
}
.pricing-fifteen .section-title-three h5 {
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .pricing-fifteen .section-title-three h5 {
    font-size: 0.8rem;
  }
}
.pricing-fifteen .section-title-three h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fifteen .section-title-three h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .pricing-fifteen .section-title-three h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.pricing-fifteen .section-title-three p {
  color: var(--dark-3);
}

.pricing-style-fifteen {
  border: 1px solid var(--gray-4);
  border-radius: 10px;
  margin-top: 30px;
  background-color: var(--white);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}
.pricing-style-fifteen:hover {
  box-shadow: var(--shadow-4);
}
.pricing-style-fifteen .table-head {
  padding: 25px;
  border-bottom: 1px solid var(--gray-4);
}
.pricing-style-fifteen .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-style-fifteen p {
  font-weight: 400;
  line-height: 22px;
  color: var(--dark-3);
}
.pricing-style-fifteen .price {
  padding: 30px 0;
}
.pricing-style-fifteen .amount {
  font-size: 40px;
  font-weight: 700;
  display: inline-block;
}
.pricing-style-fifteen .duration {
  display: inline-block;
  font-size: 16px;
  color: var(--dark-3);
  font-weight: 400;
  margin-left: 5px;
  display: inline-block;
}
.pricing-style-fifteen .primary-btn {
  font-size: 15px;
  text-transform: none;
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 20px;
}
.pricing-style-fifteen .table-content {
  padding: 25px;
}
.pricing-style-fifteen .middle-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.pricing-style-fifteen .table-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 13px;
  color: var(--dark-3);
}
.pricing-style-fifteen .table-list li:last-child {
  margin: 0;
}
.pricing-style-fifteen .table-list li i {
  color: var(--primary);
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 4px;
}

/* Custom styling to make the Pricing Box look like a Platform Box */
.pricing-style-fifteen {
  padding: 40px 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  margin-bottom: 30px;
}

.pricing-style-fifteen:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(21, 91, 213, 0.15);
  border-color: #155bd5;
}

/* Round Box for Icons like in Image 1 */
.icon-box-round {
  width: 90px;
  height: 90px;
  background: #f8f9fa;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}

.pricing-style-fifteen .title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .table-content {
    width: 200px;
    max-width: 100%;
    margin: auto;
  }
}

/* --- Restricted Platform Section Buttons --- */

#platforms .primary-btn {
  background-color: #155bd5 !important;
  border-color: #155bd5 !important;
  color: #fff !important;
  display: inline-block;
}

#platforms .primary-btn-outline {
  border-color: #155bd5 !important;
  color: #155bd5 !important;
  background-color: transparent !important;
  display: inline-block;
}

#platforms .primary-btn-outline:hover {
  background-color: #155bd5 !important;
  color: #fff !important;
}

/* --- Security Trust Section --- */
.security-trust-section {
  background: #f8fbff;
  padding: 100px 0;
}

.feature-icon-sm {
  min-width: 50px;
  height: 50px;
  background: #ffffff;
  color: #155bd5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(21, 91, 213, 0.1);
}

.Security-head {
  padding-bottom: 20px;
}

.Security-text {
  padding-bottom: 20px;
}

.trust-card {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(21, 91, 213, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.trust-card i {
  font-size: 45px;
  color: #155bd5;
  margin-bottom: 20px;
  display: block;
}

.trust-card h6 {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  color: #1e293b;
  margin: 0;
}

/* Hover Effect */
.trust-card:hover {
  transform: translateY(-10px);
  background: #155bd5;
  box-shadow: 0 20px 40px rgba(21, 91, 213, 0.2);
}

.trust-card:hover i,
.trust-card:hover h6 {
  color: #ffffff;
}

.security-features {
  padding-left: 0;
  list-style: none;
}

.security-item {
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

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

.feature-icon-sm {
  min-width: 55px;
  height: 55px;
  background: #ffffff;
  color: #155bd5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(21, 91, 213, 0.12);
  border: 1px solid rgba(21, 91, 213, 0.05);
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.security-item h5 {
  color: #1e293b;
  font-size: 18px;
}

.security-item p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

/* Highlighted card in the grid */
.trust-card.highlight {
  border: 1.5px dashed #155bd5;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .mt-lg-5 {
    margin-top: 0 !important;
  }
  .security-content{
    padding-bottom: 40px;
  }
}



/* ===== Buttons Css ===== */
.call-action-four .call-action-form .action-btn .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.call-action-four .call-action-form .action-btn .active.primary-btn,
.call-action-four .call-action-form .action-btn .primary-btn:hover,
.call-action-four .call-action-form .action-btn .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.call-action-four .call-action-form .action-btn .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action-four {
  background-color: var(--primary);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action-four {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .call-action-four {
    padding: 60px 0 60px 0;
  }
}
.call-action-four .call-action-content .action-title {
  font-weight: 600;
  color: var(--white);
}
.call-action-four .call-action-content .text {
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 16px;
}
.call-action-four .call-action-form {
  position: relative;
  max-width: 480px;
  margin: 45px auto 0;
}
.call-action-four .call-action-form input {
  width: 100%;
  height: 60px;
  border: 1px solid var(--white);
  background: none;
  padding: 0 25px;
  border-radius: 50px;
  color: var(--white);
}
@media (max-width: 767px) {
  .call-action-four .call-action-form input {
    height: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .call-action-four .call-action-form input {
    height: 60px;
  }
}
.call-action-four .call-action-form input::placeholder {
  opacity: 1;
  color: var(--white);
}
.call-action-four .call-action-form .action-btn {
  position: absolute;
  top: 7px;
  right: 7px;
}
@media (max-width: 767px) {
  .call-action-four .call-action-form .action-btn {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .call-action-four .call-action-form .action-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    margin-top: 0;
  }
}
.call-action-four .call-action-form .action-btn .primary-btn {
  background: var(--white);
  color: var(--primary);
}
.call-action-four .call-action-form .action-btn .primary-btn:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.app-support-section {
  background-color: #155bd5;
  padding: 80px 0;
}

.app-buttons-wrapper {
  gap: 20px;
  margin: 25px;
}

.download-btn {
  background: #fff;
  padding: 12px 25px;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.download-btn i {
  font-size: 30px;
  color: #155bd5;
}

.download-btn .btn-text span {
  font-size: 12px;
  display: block;
  line-height: 1;
  color: #666;
}

.download-btn .btn-text h5 {
  font-size: 18px;
  font-weight: 700;
}

.download-btn.web-portal {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #000;
}

.download-btn.web-portal i,
.download-btn.web-portal .btn-text span {
  color: #000;
}

.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  color: #155bd5;
}

.download-btn.web-portal:hover {
  background: #fff;
  color: #155bd5;
}

.download-btn.web-portal:hover i,
.download-btn.web-portal:hover .btn-text span {
  color: #155bd5;
}

/* Responsive */
@media (max-width: 767px) {
  .app-buttons-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .call-action-four .call-action-form .action-btn .primary-btn {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .call-action-four .call-action-form .action-btn .primary-btn {
    width: auto;
  }
}

/*======================================
    Brand CSS
========================================*/
.brand-area {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .brand-area {
    padding: 60px 0 60px 0;
  }
}

.brand-Sub-head {
  color: #155bd5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.Brand-head {
  margin-top: 10px;
  font-size: 32px;
}

.Brand-text {
  max-width: 600px;
  margin: 15px auto;
}

#brand-logo {
  filter: none;
  opacity: 1;
  max-width: 140px;
  margin: 20px;
}

.brand-area .section-title {
  text-align: left;
  margin-bottom: 0;
  padding-right: 50px;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area .section-title {
    margin-bottom: 40px;
  }
}
.brand-area .section-title span {
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 10px;
}
.brand-area .section-title h2 {
  margin-bottom: 18px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
  padding-bottom: 14px;
}
@media (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area .section-title h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
/* .brand-area .section-title h2:before {
  position: absolute;
  left: 0;
  margin-left: 0;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background: var(--primary);
  content: "";
} */
.brand-area .section-title p {
  color: var(--dark-3);
}
.brand-area .section-title.white-text h2 {
  color: var(--white);
}
.brand-area .section-title.white-text h2::before {
  background-color: var(--white);
}
.brand-area .section-title.white-text span {
  color: var(--white);
}
.brand-area .section-title.white-text p {
  color: var(--white);
}
.brand-area .brand-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.brand-area .brand-list li {
  flex-basis: 33.33%;
}
@media (max-width: 767px) {
  .brand-area .brand-list li {
    flex-basis: 50%;
  }
}
.brand-area .brand-list li a {
  display: block;
  text-align: center;
  height: 150px;
  line-height: 150px;
  border: 1px solid var(--gray-4);
}
.brand-area .brand-list li a:hover {
  background-color: var(--primary-light);
}
.brand-area .brand-list li a:hover img {
  transform: scale(1);
  opacity: 1;
}
.brand-area .brand-list li a img {
  transition: all 0.4s ease;
  transform: scale(0.9);
  opacity: 0.7;
  max-width: 90%;
}
.brand-area .bg-color-white .brand-list::before {
  background: var(--light-1);
}

/* --- Footer Styles --- */
/* --- Footer Main Styles --- */
.footer-area {
  /* Navbar se dark color taaki content uth ke dikhe */
  background-color: #0d121f;
  color: #a0aec0;
  padding-top: 100px; /* Thodi zyada padding for clean look */
  padding-bottom: 0;
  /* Navbar wala color top border mein use kiya */
  border-top: 5px solid rgb(21, 91, 213);
  position: relative;
}

.footer-logo {
  margin-bottom: 12px;
}

.text-muted {
  margin-bottom: 12px;
}

.footer-newsletter {
  margin-bottom: 10px;
}

.contact-info {
  text-align: left;
}

/* Footer Titles */
.footer-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
}

/* Blue underline using your Navbar color */
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: rgb(21, 91, 213);
}

/* Footer Links */
.footer-link ul {
  padding: 0;
  list-style: none;
}

.footer-link ul li {
  margin-bottom: 15px;
}

.footer-link ul li a {
  color: #a0aec0;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.footer-link ul li a:hover {
  color: rgb(21, 91, 213); /* Hover par navbar wala blue */
  transform: translateX(8px); /* Modern slide effect */
}

/* Social Icons */
.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 12px;
  transition: 0.4s;
}

.footer-social a:hover {
  background: rgb(21, 91, 213); /* Navbar color on hover */
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(21, 91, 213, 0.3);
}

/* Newsletter Input */
.footer-newsletter input {
  width: 100%;
  background: #1a2235;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  color: #fff;
  outline: none;
}

.footer-newsletter button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 55px;
  background: rgb(21, 91, 213); /* Same as Navbar */
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #0d47a1;
  box-shadow: 0 0 15px rgba(21, 91, 213, 0.5);
}

/* Copyright Section */
.footer-copyright {
  background-color: #090e1a; /* Thoda aur dark copyright area */
  padding: 25px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-links li a {
  color: #718096;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-bottom-links li a:hover {
  color: rgb(21, 91, 213);
}
