/* Hero Banner Section Styles */
.hero-banner-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d1b00 100%);
  position: relative;
  overflow: hidden;
}

.hero-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.hero-badge .badge-text {
  background: rgba(255, 140, 0, 0.1);
  color: #ff8c00;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 140, 0, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-main {
  color: #ffffff;
  display: block;
}

.title-highlight {
  color: #ff8c00;
  font-size: 3.5rem;
  font-weight: 800;
}

.title-cursor {
  color: #ffffff;
  animation: blink 1s infinite;
  font-size: 3.5rem;
  font-weight: 800;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Auto Typing Animation Styles */
.auto-typing-container {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.typing-prefix {
  color: #cccccc;
  font-size: 2rem;
  font-weight: 600;
}

.typing-text {
  color: #ff8c00;
  font-size: 2rem;
  font-weight: 700;
  min-width: 200px;
  display: inline-block;
}

.typing-cursor {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  animation: blink 1s infinite;
}

/* Typing Animation Keyframes */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-description {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
  max-width: 500px;
}

.btn-gradient {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8c00 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.integration-logos {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
}

.logo-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.logo-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 2rem;
}

.user-avatars {
  display: flex;
  gap: -10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8c00, #ff6b6b);
  border: 3px solid #ffffff;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.rating-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rating-number {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
}

.stars {
  color: #4ade80;
  font-size: 0.9rem;
}

.rating-source {
  color: #cccccc;
  font-size: 0.9rem;
}

.dashboard-preview {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 80vh;
}

.dashboard-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .title-highlight,
  .title-cursor {
    font-size: 2.5rem;
  }
  
  .auto-typing-container {
    font-size: 1.5rem;
    min-height: 2.5rem;
  }
  
  .typing-prefix,
  .typing-text,
  .typing-cursor {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .dashboard-preview {
    min-height: 60vh;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .title-highlight,
  .title-cursor {
    font-size: 2rem;
  }
  
  .auto-typing-container {
    font-size: 1.2rem;
    min-height: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .typing-prefix,
  .typing-text,
  .typing-cursor {
    font-size: 1.2rem;
  }
  
  .integration-logos {
    flex-direction: column;
    gap: 10px;
  }
  
  .social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #000;
  background-color: #ff7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05),
    6px 4px 19px rgb(115 103 240 / 20%);
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: hsl(var(--base) / 0.3) !important;
  padding: 10px 20px;
  border-radius: 4px;
  background: transparent !important;
  color: hsl(var(--white)) !important;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: 0.3s;
  transform: translateY(-50%);
}

.selection {
  width: 100%;
}

.select2 .dropdown-wrapper {
  display: none;
}

.select2-selection.select2-selection--single {
  background: hsl(var(--form-bg)) !important;
  border-color: hsl(var(--white) / 0.09) !important;
  color: hsl(var(--white));
  padding: 10px 24px !important;
  line-height: 1.2;
  height: 53px !important;
}

.select2-container:has(.select2-selection--single) {
  width: 100% !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 53px !important;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow:after {
  content: "\f106";
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: hsl(var(--white) / 0.7) !important;
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default
  .select2-search--dropdown
  .select2-search__field:focus {
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown {
  background: hsl(var(--black)) !important;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: 0.375rem !important;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--white) / 0.3) !important;
  color: hsl(var(--white)) !important;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  border: 1px solid hsl(var(--white) / 0.1) !important;
}

.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: hsl(var(--base));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #000;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: hsl(var(--base));
  background-color: hsl(var(--section-bg));
  border-radius: 5px;
  height: 100%;
}

.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border-bottom: 1px solid #cac0c01c;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width));
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--white) / 0.6);
  display: inline-block;
  border-radius: 100%;
}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

@media (max-width: 424px) {
  .payment-item__name {
    font-size: 14px;
  }
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}

.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }
}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;
}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: hsl(var(--section-bg));
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover + .payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.adjust-height .payment-system-list.is-scrollable {
  max-height: 461px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-group-text.bg-style {
  padding: 0 10px;
}

.input-popup p::before {
  position: absolute;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

label.required:after {
  content: "*";
  color: #dc3545 !important;
  margin-left: 2px;
}

.show-filter {
  display: none;
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

.btn--success {
  --color: #28c76f;
  background-color: var(--color) !important;
  border: 1px solid var(--color) !important;
  color: var(--btn-color) !important;
}

.btn--success:hover,
.btn--success:active,
.btn--success:focus,
.btn--success:focus-visible {
  --color: #1f9d57;
}

/* ================================= Home Page Sections Size Reduction (15%) =========================== */
/* Reduce all section sizes by 15% (multiply by 0.85) */

/* Section Padding Reduction */
section {
  padding-top: calc(var(--section-padding-top, 75px) * 0.85) !important;
  padding-bottom: calc(var(--section-padding-bottom, 75px) * 0.85) !important;
}

.py-150 {
  padding-top: calc(75px * 0.85) !important;
  padding-bottom: calc(75px * 0.85) !important;
}

@media (min-width: 576px) {
  .py-150 {
    padding-top: calc(100px * 0.85) !important;
    padding-bottom: calc(100px * 0.85) !important;
  }
}

@media (min-width: 992px) {
  .py-150 {
    padding-top: calc(150px * 0.85) !important;
    padding-bottom: calc(150px * 0.85) !important;
  }
}

.pt-150 {
  padding-top: calc(75px * 0.85) !important;
}

.pt-110 {
  padding-top: calc(110px * 0.85) !important;
}

@media (min-width: 576px) {
  .pt-150 {
    padding-top: calc(100px * 0.85) !important;
  }
}

@media (min-width: 992px) {
  .pt-150 {
    padding-top: calc(150px * 0.85) !important;
  }
}

.pb-150 {
  padding-bottom: calc(75px * 0.85) !important;
}

@media (min-width: 576px) {
  .pb-150 {
    padding-bottom: calc(100px * 0.85) !important;
  }
}

@media (min-width: 992px) {
  .pb-150 {
    padding-bottom: calc(150px * 0.85) !important;
  }
}

.py-70 {
  padding-top: calc(37px * 0.85) !important;
  padding-bottom: calc(37px * 0.85) !important;
}

@media (min-width: 576px) {
  .py-70 {
    padding-top: calc(50px * 0.85) !important;
    padding-bottom: calc(50px * 0.85) !important;
  }
}

@media (min-width: 992px) {
  .py-70 {
    padding-top: calc(75px * 0.85) !important;
    padding-bottom: calc(75px * 0.85) !important;
  }
}

.pt-70 {
  padding-top: calc(37px * 0.85) !important;
}

@media (min-width: 576px) {
  .pt-70 {
    padding-top: calc(50px * 0.85) !important;
  }
}

@media (min-width: 992px) {
  .pt-70 {
    padding-top: calc(75px * 0.85) !important;
  }
}

.pb-70 {
  padding-bottom: calc(37px * 0.85) !important;
}

@media (min-width: 576px) {
  .pb-70 {
    padding-bottom: calc(50px * 0.85) !important;
  }
}

@media (min-width: 992px) {
  .pb-70 {
    padding-bottom: calc(75px * 0.85) !important;
  }
}

/* Section Margin Reduction */
.my-120 {
  margin-top: calc(60px * 0.85) !important;
  margin-bottom: calc(60px * 0.85) !important;
}

@media (min-width: 576px) {
  .my-120 {
    margin-top: calc(80px * 0.85) !important;
    margin-bottom: calc(80px * 0.85) !important;
  }
}

@media (min-width: 992px) {
  .my-120 {
    margin-top: calc(120px * 0.85) !important;
    margin-bottom: calc(120px * 0.85) !important;
  }
}

/* Section Heading Margin Reduction */
.section-heading {
  margin-bottom: calc(65px * 0.85) !important;
}

@media screen and (max-width: 991px) {
  .section-heading {
    margin-bottom: calc(30px * 0.85) !important;
  }
}

@media screen and (max-width: 767px) {
  .section-heading {
    margin-bottom: calc(20px * 0.85) !important;
  }
}

/* Hero Banner Section Size Reduction - 25% */
.hero-banner-section {
  min-height: calc(100vh * 0.75) !important;
}

.dashboard-preview {
  min-height: calc(80vh * 0.75) !important;
}

@media (max-width: 768px) {
  .dashboard-preview {
    min-height: calc(60vh * 0.75) !important;
  }
}

/* Banner Section Specific Reductions - 25% */
.hero-banner-section .hero-title {
  font-size: calc(3.5rem * 0.75) !important;
}

.hero-banner-section .title-highlight,
.hero-banner-section .title-cursor {
  font-size: calc(3.5rem * 0.75) !important;
}

.hero-banner-section .auto-typing-container {
  font-size: calc(2rem * 0.75) !important;
  min-height: calc(3rem * 0.75) !important;
}

.hero-banner-section .typing-prefix,
.hero-banner-section .typing-text,
.hero-banner-section .typing-cursor {
  font-size: calc(2rem * 0.75) !important;
}

.hero-banner-section .hero-description {
  font-size: calc(1.1rem * 0.75) !important;
}

.hero-banner-section .hero-badge .badge-text {
  padding: calc(8px * 0.75) calc(16px * 0.75) !important;
  font-size: calc(14px * 0.75) !important;
}

.hero-banner-section .btn-gradient {
  padding: calc(15px * 0.75) calc(30px * 0.75) !important;
  font-size: calc(1.1rem * 0.75) !important;
}

.hero-banner-section .integration-logos {
  gap: calc(20px * 0.75) !important;
  margin-top: calc(2rem * 0.75) !important;
}

.hero-banner-section .logo-box {
  padding: calc(12px * 0.75) calc(20px * 0.75) !important;
}

.hero-banner-section .logo-text {
  font-size: calc(1rem * 0.75) !important;
}

/* Hide Trustpilot section and center content */
.hero-banner-section .social-proof {
  display: none !important;
}

/* Center content when right side image is removed */
.hero-banner-section .hero-content {
  text-align: center !important;
  max-width: 800px;
  margin: 0 auto !important;
}

.hero-banner-section .integration-logos {
  justify-content: center !important;
}

@media (max-width: 768px) {
  .hero-banner-section .hero-title {
    font-size: calc(2.5rem * 0.75) !important;
  }
  
  .hero-banner-section .title-highlight,
  .hero-banner-section .title-cursor {
    font-size: calc(2.5rem * 0.75) !important;
  }
  
  .hero-banner-section .auto-typing-container {
    font-size: calc(1.5rem * 0.75) !important;
    min-height: calc(2.5rem * 0.75) !important;
  }
  
  .hero-banner-section .typing-prefix,
  .hero-banner-section .typing-text,
  .hero-banner-section .typing-cursor {
    font-size: calc(1.5rem * 0.75) !important;
  }
  
  .hero-banner-section .hero-description {
    font-size: calc(1rem * 0.75) !important;
  }
}

@media (max-width: 576px) {
  .hero-banner-section .hero-title {
    font-size: calc(2rem * 0.75) !important;
  }
  
  .hero-banner-section .title-highlight,
  .hero-banner-section .title-cursor {
    font-size: calc(2rem * 0.75) !important;
  }
  
  .hero-banner-section .auto-typing-container {
    font-size: calc(1.2rem * 0.75) !important;
    min-height: calc(2rem * 0.75) !important;
  }
  
  .hero-banner-section .typing-prefix,
  .hero-banner-section .typing-text,
  .hero-banner-section .typing-cursor {
    font-size: calc(1.2rem * 0.75) !important;
  }
}

/* Hero Title Font Size Reduction */
.hero-title {
  font-size: calc(3.5rem * 0.85) !important;
}

.title-highlight,
.title-cursor {
  font-size: calc(3.5rem * 0.85) !important;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: calc(2.5rem * 0.85) !important;
  }
  
  .title-highlight,
  .title-cursor {
    font-size: calc(2.5rem * 0.85) !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: calc(2rem * 0.85) !important;
  }
  
  .title-highlight,
  .title-cursor {
    font-size: calc(2rem * 0.85) !important;
  }
}

/* Auto Typing Container Size Reduction */
.auto-typing-container {
  font-size: calc(2rem * 0.85) !important;
  min-height: calc(3rem * 0.85) !important;
}

.typing-prefix,
.typing-text,
.typing-cursor {
  font-size: calc(2rem * 0.85) !important;
}

@media (max-width: 768px) {
  .auto-typing-container {
    font-size: calc(1.5rem * 0.85) !important;
    min-height: calc(2.5rem * 0.85) !important;
  }
  
  .typing-prefix,
  .typing-text,
  .typing-cursor {
    font-size: calc(1.5rem * 0.85) !important;
  }
}

@media (max-width: 576px) {
  .auto-typing-container {
    font-size: calc(1.2rem * 0.85) !important;
    min-height: calc(2rem * 0.85) !important;
  }
  
  .typing-prefix,
  .typing-text,
  .typing-cursor {
    font-size: calc(1.2rem * 0.85) !important;
  }
}

/* Hero Description Size Reduction */
.hero-description {
  font-size: calc(1.1rem * 0.85) !important;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: calc(1rem * 0.85) !important;
  }
}

/* Button Size Reduction */
.btn-gradient {
  padding: calc(15px * 0.85) calc(30px * 0.85) !important;
  font-size: calc(1.1rem * 0.85) !important;
}

/* Badge Size Reduction */
.hero-badge .badge-text {
  padding: calc(8px * 0.85) calc(16px * 0.85) !important;
  font-size: calc(14px * 0.85) !important;
}

/* Section Specific Reductions */
section[class*="section"],
section[class*="-section"] {
  padding-top: calc(75px * 0.85) !important;
  padding-bottom: calc(75px * 0.85) !important;
}

/* Features Section */
.enhanced-features-section {
  padding: calc(100px * 0.85) 0 !important;
}

.features-title {
  font-size: calc(3.5rem * 0.85) !important;
}

@media (max-width: 767px) {
  .enhanced-features-section {
    padding: calc(60px * 0.85) 0 !important;
  }
}

/* App Overview Section */
.app-overview-section {
  padding: calc(100px * 0.85) 0 !important;
}

.app-title {
  font-size: calc(2.5rem * 0.85) !important;
}

/* Automation Section */
.automation-section {
  padding: calc(100px * 0.85) 0 !important;
}

/* How It Works Section */
.how-it-works-section {
  padding: calc(100px * 0.85) 0 !important;
}

.how-it-works-title {
  font-size: calc(3.5rem * 0.85) !important;
}

.how-it-works-content {
  margin-bottom: calc(60px * 0.85) !important;
}

/* Brokers Section */
.brokers-section {
  padding: calc(100px * 0.85) 0 !important;
}

.brokers-title {
  font-size: calc(2.5rem * 0.85) !important;
}

/* Testimonials Section */
.testimonials-section {
  padding: calc(100px * 0.85) 0 !important;
}

/* FAQ Section */
.faq-section {
  padding: calc(100px * 0.85) 0 !important;
}

/* Integration Section */
.integration-section {
  padding: calc(100px * 0.85) 0 !important;
}

/* All section-specific title reductions */
.app-title,
.brokers-title,
.how-it-works-title,
.automation-title,
.testimonials-title,
.faq-title,
.integration-title {
  font-size: calc(3.5rem * 0.85) !important;
}

@media (max-width: 991px) {
  .app-title,
  .brokers-title,
  .how-it-works-title,
  .automation-title,
  .testimonials-title,
  .faq-title,
  .integration-title {
    font-size: calc(2.5rem * 0.85) !important;
  }
}

@media (max-width: 767px) {
  .app-title,
  .brokers-title,
  .how-it-works-title,
  .automation-title,
  .testimonials-title,
  .faq-title,
  .integration-title {
    font-size: calc(2rem * 0.85) !important;
  }
  
  .app-overview-section,
  .automation-section,
  .how-it-works-section,
  .brokers-section,
  .testimonials-section,
  .faq-section,
  .integration-section {
    padding: calc(60px * 0.85) 0 !important;
  }
}

/* Footer Section */
.footer-section {
  padding: calc(60px * 0.85) 0 calc(30px * 0.85) !important;
}

@media (max-width: 767px) {
  .footer-section {
    padding: calc(40px * 0.85) 0 calc(20px * 0.85) !important;
  }
}

/* All headings in sections - font size reduction */
section h1 {
  font-size: calc(4rem * 0.85) !important;
}

section h2 {
  font-size: calc(2.5rem * 0.85) !important;
}

section h3 {
  font-size: calc(2rem * 0.85) !important;
}

section h4 {
  font-size: calc(1.5rem * 0.85) !important;
}

section h5 {
  font-size: calc(1.25rem * 0.85) !important;
}

section h6 {
  font-size: calc(1.125rem * 0.85) !important;
}

section p {
  font-size: calc(1.5rem * 0.85) !important;
}

/* Responsive heading reductions */
@media screen and (max-width: 1399px) {
  section h1 {
    font-size: calc(3.125rem * 0.85) !important;
  }
  section h2 {
    font-size: calc(2.8125rem * 0.85) !important;
  }
  section h3 {
    font-size: calc(1.75rem * 0.85) !important;
  }
}

@media screen and (max-width: 1199px) {
  section h1 {
    font-size: calc(2.8125rem * 0.85) !important;
  }
  section h2 {
    font-size: calc(2.5rem * 0.85) !important;
  }
  section h3 {
    font-size: calc(1.5625rem * 0.85) !important;
  }
}

@media screen and (max-width: 991px) {
  section h1 {
    font-size: calc(2.5rem * 0.85) !important;
  }
  section h2 {
    font-size: calc(2.1875rem * 0.85) !important;
  }
  section h3 {
    font-size: calc(1.4375rem * 0.85) !important;
  }
}

@media screen and (max-width: 767px) {
  section h1 {
    font-size: calc(2.25rem * 0.85) !important;
  }
  section h2 {
    font-size: calc(1.875rem * 0.85) !important;
  }
  section h3 {
    font-size: calc(1.375rem * 0.85) !important;
  }
}

@media screen and (max-width: 575px) {
  section h1 {
    font-size: calc(2rem * 0.85) !important;
  }
  section h2 {
    font-size: calc(1.5625rem * 0.85) !important;
  }
  section h3 {
    font-size: calc(1.25rem * 0.85) !important;
  }
}

/* ================================= Home Page Sections Size Reduction End =========================== */
