:root {
  --white-color: #ffffff;
  --primary-color: #000000;
  --secondary-color: #FFC300;
  --section-bg-color: #f9f9f9;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #e9eaeb;
  --featured-border-color: #727aab;

  --body-font-family: 'DM Sans', sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --menu-font-size: 12px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family);
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -3px;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: -3px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
  background: var(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
}

.about-title-wrap {
  background: white;
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* subtle shadow */
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border-radius: 20px;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.avatar-image-large {
  width: 90px;
  height: 90px;
  background-color: black;
  padding: 10px;
}


/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.navbar-icon {
  background: var(--white-color);
  /* background: var(--secondary-color); */
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}

.is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
}

.form-check-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  /* border-color: var(--white-color); */
  border-color: var(--secondary-color);
  /* color: var(--white-color); */
  color: var(--primary-color);
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}

.custom-btn {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.custom-link {
  background-color: var(--primary-color);
}

.custom-link:hover {
  background-color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

.is-sticky,
.is-sticky .navbar .container {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
}

.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--dark-color);
}

.is-sticky .navbar-nav .nav-link {
  color: var(--p-color);
}

.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.is-sticky .navbar .custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 15px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  /* color: var(--section-bg-color); */
  color: var(--primary-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  background: var(--secondary-color);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}




/*---------------------------------------
  HERO              
-----------------------------------------*/


.hero {
  background: linear-gradient(to bottom, #fff 0%, #fff 40%, #FFC300 100%);
  position: relative;
  overflow: hidden;
  padding-top: 330px;
  padding-bottom: 330px;
}

@media screen and (min-width: 991px) {
  .hero {
    height: 60vh;
  }
}

.hero-title,
.hero h2 {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 8px 24px;
}

.hero-title {
  font-size: 44px;
}

.hero h2 {
  font-size: 38px;
}

.hero-text {
  position: relative;
  z-index: 22;
  top: 70px;
}

.hero-image-wrap {
  background: black;
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 22;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  z-index: 22;
  top: 0;
  width: 100%;
  min-width: 550px;
}

.hero svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.profile-thumb {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.profile-title {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 30px;
}

.profile-small-title {
  border-right: 1px solid var(--border-color);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 140px;
  margin-right: 10px;
  padding: 13px 30px;
  display: inline-block;
}

.profile-body p {
  margin-bottom: 0;
}

.profile-body p:nth-of-type(even) {
  background: var(--white-color);
}

.about-image {
  border-radius: var(--border-radius-medium);
}

.about-thumb {
  padding-right: 20px;
  padding-left: 20px;
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-numbers {
  font-size: var(--h1-font-size);
  line-height: normal;
  display: block;
}

.featured-text {
  color: var(--secondary-color);
}

.featured-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.featured-border-start {
  border-left: 1px solid var(--border-color);
}




/*---------------------------------------
  CLIENTS              
-----------------------------------------*/

.clients-item-height {
  height: 120px;
}

.clients-image {
  display: block;
  max-width: 100px;
  margin: auto;
  transition: all ease 0.2s;
}

.clients-image:hover {
  transform: scale(1.3);
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services,
.featured {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-thumb {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 240px 40px;
  transition: all 0.5s;
}

.services-thumb-up {
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
}

.services-thumb:hover {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.services-thumb:hover .services-icon-wrap {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.services-icon-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all ease 0.5s;
}

.services-icon {
  font-size: 90px;
  position: relative;
  bottom: 15px;
}

.services-thumb:hover .services-price-wrap {
  background: var(--secondary-color);
}

.services-thumb:hover .services-price-overlay {
  background: var(--primary-color);
}

.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 6px 20px 6px 15px;
  transition: all ease 0.5s;
}

.services-price-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}

.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}


/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects-thumb {
  background: var(--section-bg-color);
  border: 2px solid var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 40px;
  transition: all ease 0.5s;
}

.projects-thumb:hover {
  border-color: var(--secondary-color);
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
  transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
  display: block;
  width: 100%;
  height: 100%;
}

.projects-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  transform: rotate(10deg) translateY(80px);
  transition: all ease 0.5s;
}

.projects-title {
  margin-bottom: 20px;
}

.projects-tag {
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}


/*---------------------------------------
  CONTACT              
-----------------------------------------*/


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--white-color);
  box-shadow: none;
  border: 2px solid var(--border-color);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.form-floating>label {
  color: var(--p-color);
}

.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}

.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-label-text {
  color: var(--p-color);
  display: block;
  font-size: copyright-font-size;
  margin-top: 5px;
}

.form-check-input[type=checkbox] {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-floating textarea {
  height: 150px;
}

.custom-form button[type="submit"] {
  background: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.site-footer-title {
  font-size: 14px;
  color: var(--dark-color);
  text-transform: uppercase;
}

.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
}

.copyright-text {
  border-right: 1px solid var(--border-color);
  padding-right: 25px;
  margin-right: 20px;
}

.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.footer-menu-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  min-width: 70px;
}

.footer-menu-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  font-size: var(--copyright-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .hero {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  .hero-image-wrap {
    top: -50px;
    width: 400px;
    height: 400px;
  }

  .hero-image {
    min-width: 650px;
  }

  .hero-title,
  .hero h2 {
    font-size: var(--h2-font-size);
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar .container {
    background: var(--white-color);
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
  }

  .navbar-icon {
    background: var(--secondary-color);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    padding-top: 200px;
    padding-bottom: 400px;
  }

  .hero-text {
    top: 0;
    margin-bottom: 120px;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }

  .about-numbers {
    font-size: 42px;
  }

  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }

  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
  }

  .services-icon-wrap {
    width: 45%;
    height: 60%;
  }

  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
}

@media screen and (max-width: 575px) {
  .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

  .hero-image-wrap {
    width: 300px;
    height: 300px;
  }

  .hero-image {
    min-width: inherit;
  }
}

/* --------Testimonial sec ------------------ */

.testimonials-section {
  background: linear-gradient(135deg, var(--section-bg-color) 0%, #fff 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.05;
  z-index: 1;
}

.section-title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: var(--border-radius-small);
}

.testimonial-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
  color: var(--white-color);
  transform: scale(1.05);
}

.testimonial-card.featured::before {
  background: var(--secondary-color);
}

.testimonial-card.featured .testimonial-text {
  color: var(--white-color);
}

.testimonial-card.featured .author-name {
  color: var(--secondary-color);
}

.testimonial-card.featured .author-role {
  color: rgba(255, 255, 255, 0.8);
}

.quote-icon {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-text {
  font-size: var(--p-font-size);
  color: var(--p-color);
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.author-details h5 {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 5px;
}

.author-name {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 5px;
}

.author-role {
  font-size: var(--copyright-font-size);
  color: var(--p-color);
  font-weight: var(--font-weight-medium);
}

.floating-elements {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.floating-elements:nth-child(2) {
  top: 60%;
  right: 15%;
  left: auto;
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  animation-delay: -2s;
}

.floating-elements:nth-child(3) {
  top: 80%;
  left: 20%;
  width: 25px;
  height: 25px;
  background: var(--secondary-color);
  opacity: 0.6;
  animation-delay: -4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.earnings-highlight {
  background: linear-gradient(90deg, var(--secondary-color), #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-bold);
}

@media (max-width: 768px) {
  .section-title {
    font-size: var(--h3-font-size);
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-card.featured {
    transform: none;
  }
}

/* ---- referr-banner -------- */


/* ----- footer ----- */
.contact-section {
  background: linear-gradient(135deg, var(--section-bg-color) 0%, var(--white-color) 50%, var(--section-bg-color) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--secondary-color), #ffed4e);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  animation: morph 10s ease-in-out infinite;
  z-index: 1;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -8%;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, var(--primary-color), #333);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  opacity: 0.08;
  animation: morph 12s ease-in-out infinite reverse;
  z-index: 1;
}

@keyframes morph {

  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }

  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

.qr-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  border: 2px solid transparent;
  height: 100%;
  overflow: hidden;
}

.qr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), #ffed4e);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.qr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.qr-card:hover::before {
  transform: scaleX(1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
  border-radius: var(--border-radius-small);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.logo-text {
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}

.site-footer-title {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}

.site-footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), #ffed4e);
  border-radius: 2px;
}

.contact-description {
  font-size: var(--p-font-size);
  color: var(--p-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, var(--section-bg-color) 0%, var(--white-color) 100%);
  border-radius: var(--border-radius-small);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 195, 0, 0.3);
}

.contact-details h6 {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 5px;
}

.contact-details p {
  font-size: var(--p-font-size);
  color: var(--p-color);
  margin: 0;
}

.contact-details a {
  color: var(--p-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--secondary-color);
}

.qr-card-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
  color: var(--white-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.qr-card-cta::before {
  background: var(--secondary-color);
}

.qr-img {
  width: 150px;
  height: 150px;
  border-radius: var(--border-radius-medium);
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.qr-img:hover {
  transform: scale(1.05) rotate(2deg);
}

.qr-description {
  font-size: var(--p-font-size);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 30px;
}

.qr-tagline {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
}

.btn-cta {
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
  color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-large);
  padding: 15px 30px;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(255, 195, 0, 0.3);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 195, 0, 0.4);
  color: var(--primary-color);
}

.btn-upgrade {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--secondary-color);
  border-radius: var(--border-radius-large);
  padding: 12px 25px;
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-upgrade:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.floating-elements {
  position: absolute;
  color: var(--secondary-color);
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.floating-elements:nth-child(1) {
  top: 15%;
  right: 10%;
  font-size: 28px;
  animation-delay: 0s;
}

.floating-elements:nth-child(2) {
  top: 70%;
  left: 8%;
  font-size: 24px;
  animation-delay: -2s;
}

.floating-elements:nth-child(3) {
  bottom: 20%;
  right: 15%;
  font-size: 32px;
  animation-delay: -4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .qr-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .qr-img {
    width: 120px;
    height: 120px;
  }

  .contact-item {
    padding: 15px;
  }
}

/* ----- */

.vision-mission-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.vision-mission-card:hover {
  transform: translateY(-5px);
}

.vision-mission-card .icon-wrap {
  color: #FFC300;
}

.card-title {
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.card-text {
  font-size: 16px;
  color: #444;
  font-family: 'Quicksand', sans-serif;
}

.vision-mission-row {
  padding-top: 40px;
  padding-bottom: 40px;
}


/* Divider banner */

.diversion-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--section-bg-color) 0%, var(--white-color) 50%, var(--section-bg-color) 100%);
}

.diversion-block {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 50%, var(--primary-color) 100%);
  border-radius: var(--border-radius-medium);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--secondary-color);
  transform: perspective(1000px) rotateX(2deg);
  transition: all 0.4s ease;
}

.diversion-block:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.diversion-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary-color), #ffed4e, var(--secondary-color));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.diversion-block::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

.content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.renewal-icon {
  font-size: 60px;
  margin-bottom: 25px;
  display: inline-block;
  animation: rotate 4s linear infinite;
  color: var(--secondary-color);
  text-shadow: 0 0 20px rgba(255, 195, 0, 0.5);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.diversion-title {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.highlight-text {
  background: linear-gradient(90deg, var(--secondary-color), #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-bold);
}

.diversion-subtitle {
  font-size: var(--p-font-size);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.6;
}

.cta-button {
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
  color: var(--primary-color);
  border: none;
  padding: 18px 40px;
  border-radius: var(--border-radius-large);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 195, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 195, 0, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

.floating-elements {
  position: absolute;
  color: var(--secondary-color);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.floating-elements:nth-child(1) {
  top: 20%;
  left: 10%;
  font-size: 24px;
  animation-delay: 0s;
}

.floating-elements:nth-child(2) {
  top: 60%;
  right: 15%;
  font-size: 20px;
  animation-delay: -2s;
}

.floating-elements:nth-child(3) {
  bottom: 25%;
  left: 20%;
  font-size: 28px;
  animation-delay: -4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-15px) rotate(5deg);
  }

  66% {
    transform: translateY(-10px) rotate(-3deg);
  }
}

.benefits-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
}

.benefit-icon {
  color: var(--secondary-color);
  font-size: 16px;
}

.premium-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: var(--border-radius-large);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 195, 0, 0.4);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .diversion-block {
    padding: 40px 25px;
    margin: 0 15px;
  }

  .diversion-title {
    font-size: var(--h5-font-size);
  }

  .renewal-icon {
    font-size: 50px;
  }

  .benefits-list {
    flex-direction: column;
    gap: 15px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 16px;
  }
}

/* Faq start */

.faq-section {
  background: linear-gradient(135deg, var(--white-color) 0%, var(--section-bg-color) 50%, var(--white-color) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '?';
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 200px;
  color: var(--secondary-color);
  opacity: 0.05;
  font-weight: var(--font-weight-bold);
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.faq-section::after {
  content: '!';
  position: absolute;
  bottom: 15%;
  left: 8%;
  font-size: 150px;
  color: var(--primary-color);
  opacity: 0.03;
  font-weight: var(--font-weight-bold);
  z-index: 1;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.section-title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: var(--p-font-size);
  color: var(--p-color);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: var(--border-radius-small);
}

.faq-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.faq-item.active {
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(255, 195, 0, 0.15);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary-color), #ffed4e);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
  transform: scaleY(1);
}

.faq-question:hover {
  background: linear-gradient(90deg, var(--white-color) 0%, rgba(255, 195, 0, 0.05) 100%);
}

.question-text {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.question-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.question-icon i {
  font-size: 18px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .question-icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--primary-color), #333);
}

.faq-item.active .question-icon i {
  color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, var(--section-bg-color) 0%, var(--white-color) 100%);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.answer-content {
  padding: 0 30px 30px 30px;
  font-size: var(--p-font-size);
  color: var(--p-color);
  line-height: 1.6;
}

.answer-highlight {
  background: linear-gradient(90deg, var(--secondary-color), #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-bold);
}

.floating-icons {
  position: absolute;
  color: var(--secondary-color);
  opacity: 0.2;
  animation: float 5s ease-in-out infinite;
  z-index: 1;
}

.floating-icons:nth-child(1) {
  top: 20%;
  left: 10%;
  font-size: 24px;
  animation-delay: 0s;
}

.floating-icons:nth-child(2) {
  top: 50%;
  right: 12%;
  font-size: 20px;
  animation-delay: -2s;
}

.floating-icons:nth-child(3) {
  bottom: 30%;
  left: 15%;
  font-size: 28px;
  animation-delay: -4s;
}

.help-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
  border-radius: var(--border-radius-medium);
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.help-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), #ffed4e);
}

.help-title {
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  margin-bottom: 15px;
}

.help-text {
  font-size: var(--p-font-size);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.help-button {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 15px 30px;
  border-radius: var(--border-radius-large);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.help-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 195, 0, 0.3);
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .section-title {
    font-size: var(--h3-font-size);
  }

  .faq-question {
    padding: 20px;
  }

  .question-text {
    font-size: var(--p-font-size);
  }

  .answer-content {
    padding: 0 20px 25px 20px;
  }

  .help-card {
    padding: 30px 20px;
    margin-top: 40px;
  }
}

/* ------- Scroll to top btn  --------- */

.scrollTop a {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  /* background: linear-gradient(135deg, #ff6b35, #f7931e); */
  background: #FFC300;

  color: white;
  border-radius: 50%;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ---------- */


:root {
  --rb-yellow: #FFC300;
  --rb-white: #fff;
  --rb-border-radius: 12px;
  --rb-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.rb-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--rb-white) 0%, var(--rb-white) 40%, var(--rb-yellow) 100%);
  padding: 120px 0 180px;
  z-index: 1;
}

/* ---------- typography ---------- */
.rb-title,
.rb-hero h2 {
  display: inline-block;
  background: var(--rb-white);
  box-shadow: var(--rb-shadow);
  border-radius: var(--rb-border-radius);
  padding: 8px 20px;
  font-weight: 700;
}

.rb-title {
  font-size: clamp(28px, 5vw, 44px);
}

.rb-hero h2 {
  font-size: clamp(24px, 4vw, 38px);
  color: #000;
}

/* ---------- avatar ---------- */
.rb-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.rb-hero-title-wrap img {
  background-color: #000;
  padding: 1rem;
  border-radius: var(--rb-border-radius);
  box-shadow: var(--rb-shadow);

  /* width: 100px;
  height: 140px; */

}

/* ---------- button ---------- */
.rb-btn-primary {
  background: #000;
  color: #fff;
  border-radius: var(--rb-border-radius);
  padding: 12px 24px;
  font-weight: 600;
  transition: .25s;
}

.rb-btn-primary:hover {
  background: #333;
  color: #fff;
}

/* ---------- wave ---------- */
.rb-wave {
  position: absolute;
  inset: 0;
  /* width: 100%; */
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ---------- responsive tweaks ---------- */
@media (min-width: 768px) {
  .rb-hero {
    padding: 140px 0 200px;
  }
}

@media (min-width: 992px) {
  .rb-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* centres .container vertically */
    padding: 0;
  }

  .rb-avatar {
    width: 80px;
    height: 80px;
  }

}

/* --------------- terms and  condition --------------*/

.terms-section {
  background-color: #f9f9f9;
  padding-top: 120px;
}

.terms-section .section-title {
  font-size: 2.2rem;
  /* margin-bottom: 10px; */
  font-weight: 700;
}

.terms-section .section-subtitle {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 40px;
}

.terms-content p,
.terms-content li {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.terms-block {
  margin-bottom: 30px;
}

.terms-block h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.terms-block ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.terms-block ul li {
  list-style: disc;
}

/* -------------------- Privacy ----------------- */

.privacy-section {
  background-color: #fff;
  padding-top: 120px;
}

.privacy-section .section-title {
  font-size: 2.2rem;
  /* margin-bottom: 10px; */
  font-weight: 700;
}

.privacy-section .section-subtitle {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 40px;
}

.privacy-content p,
.privacy-content li {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.privacy-block {
  margin-bottom: 30px;
}

.privacy-block h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.privacy-block ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.privacy-block ul li {
  list-style: disc;
}

/* -------------- Refund page ---------------- */


.refund-section {
  background-color: #f9f9f9;
  padding-top: 120px;
}

.refund-section .section-title {
  font-size: 2.2rem;
  /* margin-bottom: 10px; */
  font-weight: 700;
}

.refund-section .section-subtitle {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 40px;
}

.refund-content p,
.refund-content li {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.refund-block {
  margin-bottom: 30px;
}

.refund-block h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.refund-block ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.refund-block ul li {
  list-style: disc;
}

@media screen and (max-width: 991px) {
  .hero svg {
    display: none;
  }
}


/* Responsive styles for screens below 768px */
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 0px;
    background: linear-gradient(to bottom, #fff 0%, #fff 30%, #FFC300 100%);
  }

  .hero-title {
    font-size: 30px;
    padding: 6px 18px;
  }

  .hero h2 {
    font-size: 22px;
    padding: 6px 18px;
  }

  .hero-text {
    text-align: center;
    top: 30px;
  }

  .hero-text p.text-white {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
    color: #222222 !important;
  }

  .hero-text .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .hero-text .d-flex p {
    margin-bottom: 12px !important;
    text-align: center;
  }

  .hero-text a.custom-link {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero svg {
    height: 60px;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 0px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .hero-text a.custom-link {
    font-size: 13px;
    padding: 8px 18px;
  }
}

.glass-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #222222;
    background: rgba(255, 255, 255, 0.1); /* transparent white */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #000; /* Optional: contrast change on hover */
    border-color: rgba(255, 255, 255, 0.4);
}
