@charset "utf-8";

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
    url('../fonts/Poppins-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
    url('../fonts/Poppins-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'),
    url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
    url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
    url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
    url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
    url('../fonts/Poppins-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Black.woff2') format('woff2'),
    url('../fonts/Poppins-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Bold.woff2') format('woff2'),
    url('../fonts/OpenSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}









:root {
  --default-font: 'Poppins';
  --heading-font: 'Poppins';
  --nav-font: 'Poppins';
  --text-font: 'Poppins';
}

:root {
  --background-color: #ffffff;
  --default-color: #686868;
  --heading-color: #223D82;
  --accent-color: #5d57f4;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #FCBD02;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #3a3939;
  --nav-dropdown-hover-color: #FCBD02;
}

.light-background {
  --background-color: #f4f4f9;
  --surface-color: #ffffff;
  --heading-color: #223D82;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --text-collor: #ffffff;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  padding: 0;
  margin: 0;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 400;
}


h1 {
  font-size: 60px;
  line-height: 1.25;
  font-weight: 300;
  color: #ffffff;
}

h1 span {
  color: #FCBD02;
  font-weight: 700;
}

h2 {
  font-weight: 400;
  font-size: 50px;
  line-height: 1.225;
  margin: 0 0 25px;
}

h3 {
  font-size: 22px;
  font-weight: 400;
}

h4 {
  font-size: 22px;
  font-weight: 400;
}

h6 {
  font-family: var(--text-font);
  color: #FCBD02;
  letter-spacing: 5px;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

p {
  font-family: var(--text-font);
  font-size: 16px;
  line-height: 28px;
  color: #686868;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

section {
  width: 100%;
  /*overflow-x: hidden;*/
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-130 {
  padding-top: 130px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pt-140 {
  padding-top: 140px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-150 {
  padding-bottom: 150px;
}

.header-right-colum .btn {
  padding: 9px 30px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
  padding: 13px 30px;
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 50px;
  outline: none;
  box-shadow: none;
  stroke: none;
  width: fit-content;
}

.btn img {
  max-width: 14px;
}

.btn:hover {
  background: white;
  color: #000;
}

.btn:hover {
  /*background: #005dad;*/
  /*background: linear-gradient(90deg, #FCBD02, #FCBD02, #0EA2E2, #0EA2E2);*/
  /*background: linear-gradient(to right, #007bff, #ffc107);*/
  background: linear-gradient(90deg, #FCBD02, #0983EB);
  color: #fff;
  border-color: #FCBD02;
}

.btn-gradienty {
  border: 1px solid transparent;
  background-image: linear-gradient(#000, #000),
    linear-gradient(to right, #007bff, #ffc107);
  background-origin: border-box;
  background-clip: content-box, border-box;
  color: white;
}

.btn-gradienty:hover {
  color: #ffc107;
  background-image: linear-gradient(#000, #000),
    linear-gradient(to right, #ffc107, #007bff);
}



.btn-gradient {
  position: relative;
  background: transparent;
  border: none;
  z-index: 1;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(to right, #007bff, #ffc107);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.btn-wrap .btn img {
  max-width: 14px;
}

.btn-wrap .btn {
  padding: 13px 27px;
}

.container {
  max-width: 1430px;
  width: 90%;
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #000000;
  transition: all 0.3s ease-in-out;
}

.header-section .container {
  position: relative;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  max-width: 174px;
  height: auto;
}
.logo a {
    display: block;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    padding: 0 20px;
  }

  .navmenu li:first-child {
    padding-left: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 23px 0;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}


.blueFnt {
  color: #0983EB;
}


.banner-section {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.text-gradient {
  background: linear-gradient(90deg, #FCBD02 40.04%, #0983EB 73.95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-section p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: 1.675;
}

.banner-content {
  display: flex;
  flex-flow: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.banner-content img {
  max-width: 83px;
}

.banner-section p {
  color: var(--text-collor);
}

.banner-section .container {
  height: 924px;
}

.banner-section h1 {
  margin: 0;
}

.btn-wrap {
  gap: 28px;
}

.language-selector {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background-color: #f7901e;
  /* Match button style */
  color: #fff;
  padding: 5px 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}

.lang-btn img {
  width: 20px;
  height: auto;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 80px;
  border: 1px solid #ccc;
  display: none;
  z-index: 999;
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.lang-dropdown li a:hover {
  background: #eee;
}

.language-selector:hover .lang-dropdown {
  display: block;
}



/*About us Start*/
.about-section .container {
  gap: 14%;
}

.about-left {
  width: 50%;
}

.about-right {
  width: 50%;
}

.about-text p {
  margin-bottom: 40px;
}

.section-subtitle {
  color: #ff6a00;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}


.btn-blue {
  display: inline-block;
  padding: 12px 25px;
  background-color: #1a237e;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-blue:hover {
  background-color: #0d155d;
}

.about-image-wrapper {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding-bottom: 50px;
  padding-right: 50px;
}

.image-background {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  background-color: #1a237e;
  z-index: 0;
}

.about-image {
  position: relative;
  width: 100%;
  z-index: 1;
}


/*Our Services Start*/
.services-section {
  background-color: var(--background-color);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 45px;
  row-gap: 32px;
  justify-content: center;
}

.main-title-wrap {
  margin-bottom: 60px;
}

.service-card {
  flex: 1 1 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
  overflow: hidden;
  padding: 25px;
  box-sizing: border-box;
  border-radius: 15px 80px 15px 15px;
  position: relative;
  background: transparent;
  border: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #FCBD02, #005DAD);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::after {
  opacity: 1;
}

/*
.service-card {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    overflow: hidden;
    padding: 25px;
    box-sizing: border-box;
    border-radius: 15px 80px 15px 15px;
    position: relative;
    background: transparent;
    border: none;
    z-index: 1;
    transition: all 0.3s ease;
}
.service-card:hover{
      background: linear-gradient(to right, #facc15, #0ea5e9);
}*/
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px 80px 15px 15px;
  padding: 1px;
  background: linear-gradient(to right, #FCBD02, #005DAD);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.services-image-wrap {
  overflow: hidden;
  border-radius: 15px 65px 15px 15px;
  height: 440px;
  width: 100%;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.card-content {
  box-sizing: border-box;
  width: 100%;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
  justify-content: space-between;
}

.card-content a {
  width: 62px;
  height: 62px;
  display: block;
}

.card-content p {
  color: var(--text-collor);
  margin: 0;
  font-weight: 400;
  max-width: 280px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.service-card h3 {
  margin: 30px 0 50px 0;
}

img.fixed-icon {
  max-width: 83px;
  margin-bottom: 35px;
}

.main-title-wrap {
  position: relative;
}

.main-title-wrap h6 {
  line-height: 1;
  padding: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 26px;
  margin: 0;
}

.main-title-wrap h2 {
  background: linear-gradient(90deg, #FCBD02, #FCBD02, #0983EB, #0983EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}


.custom-cta-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.custom-cta-section .overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.cta-content {
  max-width: 700px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
  background-color: white;
  color: #000;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}



.how-it-works .container {
  max-width: 1250px;
}

.logo-carousel-section {
  background-color: var(--background-color);
  margin-top: -20px;
}

.how-it-works {
  background-color: var(--background-color);
}

.timeline {
  display: flex;
  flex-flow: column;
  gap: 100px;
  position: relative;
  z-index: 2;
}

.timeline:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 1px;
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
  z-index: -1;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 5px;
  height: 5px;
  margin: 0 auto;
  background-color: #fff;
  z-index: -1;
  border-radius: 50%;
}

.timeline-step:last-child:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 5px;
  margin: 0 auto;
  background-color: #fff;
  z-index: -1;
  border-radius: 50%;
}

.timeline-content-left {
  width: 37%;
}

.timeline-content-left img {
  max-width: 100%;
}

.timeline-content {
  width: 37%;
}

.timeline-step {
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.timeline-step:nth-of-type(even) {
  flex-flow: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #0983EB;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

.step-circle span {
  font-size: 38px;
  font-weight: 400;
  color: #ffffff;
}

.timeline-content h3 {
  color: #FCBD02;
  font-size: 38px;
  font-weight: 400;
  margin: 0;
}

span.step-circle {
  display: flex;
  flex-flow: column;
  line-height: 1;
  justify-content: center;
}

.timeline-content p {
  color: var(--text-collor);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}












.tax-swift-section {
  background: #005DAD;
  background: linear-gradient(90deg, rgba(0, 93, 173, 1) 2%, rgba(252, 189, 2, 1) 100%);
  color: white;
  padding: 80px 0px;
}

.tax-swift-container {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.tax-swift-left {
  flex: 1 1 45%;
  position: relative;
}

.why-shift {
  position: absolute;
  bottom: -110px;
  right: -78px;
  max-width: 470px;
}

.tax-swift-left h2 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  margin-bottom: 40px;
}

.tax-swift-left p {
  color: var(--text-collor);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: 0;
}

.tax-swift-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-collor);
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
}

.tax-swift-section .btn {
  margin-top: 40px;
}

.tax-swift-right {
  flex: 1 1 50%;
  display: flex;
  gap: 30px;
  flex-flow: row wrap;
  align-items: flex-start;
  margin-right: 30px;
}

.tax-box {
  background: #000;
  padding: 20px;
  border-radius: 15px 65px 15px 15px;
  position: relative;
  width: calc(50% - 15px);
  box-sizing: border-box;
  min-height: 250px;
}

.tax-box .icon {
  position: absolute;
  right: 60px;
  top: 60px;
}

.tax-box:nth-of-type(2) {
  margin-top: 30px;
}

.tax-box:nth-of-type(3) {
  margin-top: -30px;
  margin-left: 30px;
}

.tax-box:nth-of-type(4) {
  margin-right: -30px;
}

.tax-box h3 {
  font-size: 55px;
  font-weight: 700;
  padding: 0;
  color: #fff;
  margin: 0;
}

.tax-box-Top {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-right: 30px;
  padding-bottom: 30px;
  box-sizing: border-box;
}

.tax-box-Btm {
  width: 100%;
  padding-right: 30px;
  box-sizing: border-box;
}

.tax-box p {
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.tax-box i {
  color: #facc15;
  font-size: 22px;
  margin-top: 10px;
}



.tax-form-section {
  background: var(--background-color);
  text-align: center;
}

.tax-form-section h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 65px;
  margin-bottom: 15px;
}

.tax-form-section .highlight {
  color: #FCBD02;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
}

.tax-form-section p {
  font-size: 22px;
  line-height: 35px;
  color: #fff;
  margin-bottom: 40px;
  max-width: 775px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}



.form-grid .half {
  flex: 1 1 calc(50% - 10px);
  min-width: 260px;
}

.form-grid .full {
  flex: 1 1 100%;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 800px;
  margin: auto;
  justify-content: center;
}

.input-wrapper {
  flex: 1 1 100%;
  border-radius: 15px;
  padding: 1.2px;
  background: linear-gradient(to right, #facc15, #0ea5e9);
}

.half {
  flex: 1 1 calc(50% - 10px);
}

::-webkit-input-placeholder {
  color: #A8A8A8;
}

::-moz-placeholder {
  color: #A8A8A8;
}

:-ms-input-placeholder {
  color: #A8A8A8;
}

:-moz-placeholder {
  color: #A8A8A8;
}

.input-wrapper input {
  width: 100%;
  background-color: #000;
  border: none;
  border-radius: 15px;
  color: #fff;
  padding: 0px 20px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  font-weight: 400;
  box-sizing: border-box;
  line-height: 75px;
}

.form-submit {
  margin-top: 30px;
  flex: 1 1 100%;
}

.submit-wrapper {
  display: inline-block;
  padding: 1px;
  border-radius: 60px;
  background: linear-gradient(to right, #facc15, #0ea5e9);
  width: 100%;
  max-width: 246px;
  margin: auto;
}

.submit-wrapper button {
  background-color: #000;
  color: white;
  padding: 0 40px;
  border: none;
  border-radius: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 2px;
  transition: all 0.3s;
  width: 100%;
  box-sizing: border-box;
  line-height: 64px;
}

.submit-wrapper button:hover {
  background: linear-gradient(to right, #facc15, #0ea5e9);
  color: #000;
}

.testimonials-section {
  background-color: var(--background-color);
}

.profile-image {
  max-width: 94px;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  top: -47px;
  left: 0;
  right: 0;
}

.quotation-icon {
  max-width: 58px;
  margin: 30px auto;
}

.testimonial-item {
  border-radius: 15px 80px 15px 15px;
  border: 1px solid #fff;
  background: transparent;
  border: none;
  z-index: 1;
  position: relative;
  padding: 40px 45px;
  margin-top: 47px;
}

.testimonial-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #FCBD02, #005DAD);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-item:hover::after {
  opacity: 1;
  opacity: 1;
}

.testimonial-item:hover .quotation-icon {
  filter: brightness(200%) inherit(5);
}

.testimonial-item:hover .client-info p {
  color: #fff;
}


.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px 80px 15px 15px;
  padding: 1px;
  background: linear-gradient(to right, #FCBD02, #005DAD);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.client-info h4 {
  margin-top: 30px;
  margin-bottom: 0;
  color: var(--text-collor);
}

.client-info p {
  color: #777777;
  width: fit-content;
  border-bottom: 1px solid #FCBD02;
  margin: 0 auto;
  padding: 15px 10px 30px;
  line-height: 1;
}

.testimonial-text p {
  color: var(--text-collor);
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: 0;
}

.owl-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px 0 0;
}

.owl-dot span {
  width: 15px;
  height: 3px;
  background: #fff;
  display: block;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
}

.owl-dot.active span {
  width: 41px;
  background: #FCBD02;
}






.footer {
  background: #333333;
  color: #fff;
  padding: 70px 0px 0px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.footer-logo {
  max-width: 237px;
  margin-bottom: 20px;
}

.footer-about p {
  color: #fff;
  line-height: 1.6;
  margin: 0 0 30px;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: #fff;
  display: block;
  border-radius: 50%;
  transition: all .3s ease;
}

.social-icons a:hover {
  box-shadow: 0px 2px 8px 0px rgba(60, 64, 67, 0.25);
}

.footer-about {
  max-width: 407px;
}

.footer-contact {
  min-width: 241px;
}

.footer-links h5,
.footer-contact h5 {
  color: #facc15;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 16px;
  color: #FCBD02;
  margin: 18px 0 25px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 39px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
}

.footer-links ul li a:hover {
  color: #FCBD02;
}

.footer-contact p {
  color: #fff;
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.275;
}

.footer-contact p a {
  color: #B4B4B4;
  margin-bottom: 30px;
  display: block;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
}

.footer-contact p a:hover {
  color: #FCBD02;
}

.footer-contact .highlight {
  color: #fff;
  margin-bottom: 15px;
}

.footer-bottom {
  text-align: center;
  padding: 17px 0;
  margin-top: 40px;
  color: #ccc;
  font-size: 14px;
  background: #262626;
  box-sizing: border-box;
}

.footer-bottom p {
  font-size: 16px;
  line-height: 28px;
  color: #FFFFFF;
  font-weight: 400;
  margin: 0;
}







#field_3_11 .datepicker.datepicker-dropdown {
  height: auto !important;
  border: 0 !important;
  padding: 0 !important;
  margin-right: 20px;
}

div#gform_3_validation_container {
  display: none;
}

#gform_3 #gform_fields_3 {
  grid-row-gap: 20px !important;
  row-gap: 20px !important;
}

#gform_3 #gform_fields_3 {
  -moz-column-gap: 20px !important;
  column-gap: 20px !important;
}

#field_3_11 .ginput_container.ginput_container_text {
  display: flex;
  justify-content: space-between;
}

#field_3_11 ul.timeslots {
  margin-top: 10px;
}

#field_3_11 .ginput_container .border-primary {
  border-color: #0d6efd !important;
  color: #0d6efd;
}

#field_3_11 ul.timeslots li.slottime {
  width: calc(33.33% - 7px) !important;
}








.service-card .card-content img:hover {
  filter: invert(1);
}

.mobile-menu-head {
  display: none;
}


/*=== New header css start ===*/

.main-menu li a {
  color: var(--nav-color);
  padding: 23px 0;
  font-size: 16px;
  font-family: var(--nav-font);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.main-menu li:hover>a,
.main-menu .active>a,
.main-menu .active:focus {
  color: var(--nav-hover-color);
}

.main-menu li:hover>a,
.main-menu .current-menu-item>a,
.main-menu .current-menu-item:focus {
  color: var(--nav-hover-color);
}

.main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu li {
  position: relative;
  padding: 0 20px;
}

.mobile-menu {
  display: none;
}

/*=== New header css end ===*/


.banner-section.inner-banner .container {
  height: 420px;
}

.inner-banner .banner-content {
  gap: 10px;
}

.our-services-sec {
  background: var(--background-color);
}

.services-container {
  display: flex;
  flex-flow: column;
  gap: 100px;
}

.our-services-sec h2 {
  color: #929393;
  margin: 0 0 30px 0;
}

.services-content p {
  margin: 0 0 50px 0;
  color: #fff;
  font-weight: 400;
}

.our-services-sec h2 span {
  background: linear-gradient(90deg, #FCBD02, #FCBD02, #0EA2E2, #0EA2E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.services-left {
  width: calc(50% - 50px);
}

.services-right {
  width: calc(50% - 50px);
}

.services-row {
  justify-content: space-between;
  gap: 100px;
  align-items: center;
}

.services-row:nth-of-type(even) {
  flex-flow: row-reverse;
}

.services-left .image-wrap img {
  border-radius: 15px 80px 15px 15px;
  width: 100%;
}

.services-left .image-wrap {
  padding: 25px;
  border-radius: 15px 80px 15px 15px;
  position: relative;
  background: transparent;
  border: none;
  z-index: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
  width: 100%;
}

.services-left .image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px 80px 15px 15px;
  padding: 1px;
  background: linear-gradient(to right, #FCBD02, #005DAD);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.our-services-details-sec {
  background: var(--background-color);
}

.services-details-left h3 {
  color: #929393;
  font-size: 40px;
  line-height: 50px;
  max-width: 611px;
  margin: 30px 0 0 0;
}

.services-details-row {
  justify-content: space-between;
  gap: 100px;
}

.services-details-right .services-content p {
  margin: 0 0 30px 0;
}

.services-details-right .services-content p:last-child {
  margin-bottom: 0;
}


.taxswift-section {
  background: var(--background-color);
}

.taxswift-section .taxswift-container {
  background: linear-gradient(120deg, #FCBD02, #0EA2E2);
  /*background: #FCBD02;
  background: linear-gradient(100deg,rgba(252, 189, 2, 1) 0%, rgba(14, 162, 226, 1) 100%);*/
  justify-content: space-between;
  padding: 110px 67px;
  border-radius: 15px;
  align-items: center;
  box-sizing: border-box;
}

.taxswift-image {
  width: 30%;
  max-width: 360px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 6px;
}

.taxswift-content {
  width: 64%;
}

.taxswift-image-wrap {
  width: calc(50% - 3px);
  padding: 0;
  margin: 0;
  border-radius: 15px 80px 15px 15px;
}

.taxswift-image-wrap img {
  margin: 0;
  padding: 0;
  border-radius: 15px 80px 15px 15px;
  display: block;
  max-width: 100%;
}

.full {
  width: 100%;
}

.taxswift-content h3 {
  color: #000;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  margin: 0;
}

.taxswift-content p {
  font-size: 18px;
  line-height: 28px;
  color: #000;
  margin: 20px 0 30px;
}

.taxswift-content .btn:before {
  display: none;
}

.taxswift-content .btn {
  background: linear-gradient(90deg, #FCBD02, #0983EB);
  border-color: #FCBD02 !important;
}

.taxswift-content .btn:hover {
  background: linear-gradient(to right, #007bff, #ffc107);
  border-color: #FCBD02 !important;
}


.mission-vision-section {
  background: var(--background-color);
}

.card-container {
  justify-content: space-between;
  gap: 50px;
  flex-flow: row wrap;
}

.mission-card {
  background: #D9D9D9;
  border-radius: 15px 80px 15px 15px;
  padding: 50px 70px;
  width: calc(50% - 25px);
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
}

.mission-card:nth-of-type(even) {
  display: flex;
  flex-flow: column-reverse;
}

.mission-card:nth-of-type(even) .image-wrap {
  margin-top: 40px;
}

.mission-card:nth-of-type(odd) .image-wrap {
  margin-bottom: 40px;
}

.image-wrap {
  width: 100%;
}

.image-wrap img {
  max-width: 100%;
}

.mission-card h3 {
  font-size: 40px;
  line-height: 50px;
  padding: 0;
  margin: 0 0 30px 0;
  color: #000000;
}

.mission-card p {
  padding: 0;
  margin: 0;
  color: #000000;
}

.about-banner .justify-content-center {
  justify-content: flex-start !important;
  align-items: flex-end !important;
}

.about-banner .banner-content {
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 150px;
}

.about-banner .banner-content p {
  text-align: left;
}



/*resources Start*/
.resources-section {
  background: var(--background-color);
}

.accordion-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 35px;
  margin: 0 auto;
  max-width: 1095px;
  box-sizing: border-box;
}

.accordion__item {
  border-bottom: 1px solid #474747;
}

.accordion {
  width: 100%;
  overflow: hidden;
}

.accordion__link {
  cursor: pointer;
  display: block;
  padding: 58px 45px 58px 0px;
  position: relative;
  transition: all 0.4s ease;
  width: 100%;
  overflow: hidden;
  font-size: 35px;
  font-weight: 400;
  color: #fff;
  border-radius: 0;
  box-sizing: border-box;
}

.accordion__link:before,
.accordion__link:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: #fff;
  transition: transform 0.4s ease;

}

.accordion__link:after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion__submenu {
  display: none;
  font-size: 14px;
}

.accordion__submenu-item {
  padding: 10px;
}

.accordion__submenu-link {
  color: #ccd1dd;
}

.is-open .accordion__link:after {
  transform: translateY(-50%) rotate(0deg);
}

.easy-setup .taxswift-content {
  width: 100%;
}

.easy-setup .taxswift-container {
  padding: 80px 100px;
}

.easy-setup .btn {
  margin: 0 auto;
}

.accordion__submenu p {
  color: #ffffff;
  margin: 0 0 30px 0;
  font-size: 18px;
  line-height: 28px;
}

.accordion__submenu p:last-child {
  margin-bottom: 70px;
}


/**********contact start*********/
.contactForm {
  border-radius: 15px 80px 15px 15px;
  border: 1px solid #fff;
  padding: 80px;
  width: 70%;
  margin: 0 auto;
  box-sizing: border-box;
}

.contactForm .input-wrapper {
  border-radius: 0;
  background: none;
}

.contactForm .input-wrapper input {
  border: none;
  border-bottom: 1px solid #474747;
  border-radius: 0;
  padding: 0;
}

.contactForm .input-wrapper textarea {
  width: 100%;
  background-color: #000;
  border: none;
  border-radius: 15px;
  color: #fff;
  padding: 0px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  font-weight: 400;
  box-sizing: border-box;
  line-height: 75px;
  border: none;
  border-bottom: 1px solid #474747;
  border-radius: 0;
  font-family: 'Poppins';
  height: 120px;
  resize: none;
}

.contactForm .form-submit {
  text-align: center;
}

.contactForm .submit-wrapper {
  background: transparent;
  border: 1px solid #fff;
}

.contactForm .form-submit .submit-wrapper button {
  background-color: #ffffff00;
  letter-spacing: 3px;
  font-size: 16px;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.contactForm .form-submit .submit-wrapper button img {
  width: 18px;
}

.contactForm .form-grid {
  max-width: 100%;
}

.contactForm .form-submit .submit-wrapper button:hover {
  color: #fff;
}

.contactinfo {
  background: var(--background-color);
}

.contactinfo .dFlx {
  width: 65%;
  margin: 0 auto;
  justify-content: center;
}

.contactinfo .dFlx .contactinfoarea {
  width: 50%;
  border-right: 1px solid #fff;
  padding-left: 110px;
}

.contactinfo .dFlx .contactinfoarea:first-child {
  padding-left: 0;
  padding-right: 110px;
}

.contactinfo .dFlx .contactinfoarea:last-child {
  border: none;
}

.contactinfo .main-title-wrap {
  margin: 0;
}

.contactinfoarea p {
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.contactinfoarea p:last-child{
  margin-bottom: 0;
}

.contactinfo .dFlx .contactinfoarea:last-child p {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contactinfo .dFlx .contactinfoarea p a {
  color: #fff;
}

.contactpagefooterup {}



/**********contact end*********/


.how-it-works-step {
  position: relative;
  background: var(--background-color);
}

.step {
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 140px;
  position: relative;
  padding-left: 50px;
  box-sizing: border-box;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  font-family: 'Open Sans';
  font-size: 240px;
  line-height: 200px;
  font-weight: bold;
  color: #f6b100;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  ;
  justify-content: center;
  z-index: 2;
}

.number-wrap {
  background: #000;
}

.step-number::after {
  content: "";
  position: absolute;
  left: -40px;
  right: 0;
  margin: 0 auto;
  top: 0%;
  width: 2px;
  height: calc(100% + 140px);
  background-color: #ffffff;
  z-index: -1;
}

.step-number::before {
  content: "";
  position: absolute;
  left: -40px;
  right: 0;
  margin: 0 auto;
  top: -33px;
  width: 33px;
  height: 33px;
  background: url(../images/Arrow-1.png);
  z-index: -1;
  background-repeat: no-repeat;
  background-position: bottom center !important;
}

.step:last-child .step-number::after {
  display: none;
}

.step:first-child .step-number::before {
  display: none;
}

.step-icon {
  width: 137px;
  height: 137px;
  background-color: #000;
  border-radius: 15px 80px 15px 15px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.step-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px 80px 15px 15px;
  padding: 1px;
  background: linear-gradient(to right, #FCBD02, #005DAD);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.step-content {
  max-width: 1060px;
}

.step-content h2 {
  margin: 0 0 30px 0;
}

.step-content h2 span {
  background: linear-gradient(90deg, #FCBD02, #FCBD02, #0EA2E2, #0EA2E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.step-content p {
  color: #fff;
}

.step-content p:last-child {
  margin-bottom: 0;
}

.step-title span {
  color: #00bfff;
}

.step-desc {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.step-icon img {
  max-width: 100%;
}


.login-section {
  background: var(--background-color);
  padding-top: 290px;
  padding-bottom: 200px;
}

.login-container {
  background: #30A6C2;
  background: linear-gradient(0deg, rgba(48, 166, 194, 1) 0%, rgba(214, 184, 38, 1) 100%);
  border-radius: 15px 80px 15px 15px;
  padding: 100px;
  max-width: 1115px;
  width: 85%;
  height: 585px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 auto;
}

.login-container h2 {
  background: linear-gradient(90deg, #0C0C0C, #0C0C0C, #0983EB, #0983EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.login-container input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #000000;
  padding: 10px 0px;
  font-size: 16px;
  line-height: 25px;
  color: #000000;
  outline: none;
  box-shadow: none;
  stroke: none;
}

.login-container input::placeholder {
  color: #000000;
}

.login-container button {
  letter-spacing: 3px;
  font-size: 16px;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 5px;
  border: 1px solid #FCBD02;
  background: linear-gradient(to right, #FCBD02, #0983EB);
  padding: 16px 50px;
  margin: 30px auto 0 auto;
  width: fit-content;
  border-radius: 50px;
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  transition: al .3s ease;
  -webkit-transition: al .3s ease;
  -moz-transition: al .3s ease;
}

.login-container button:hover {
  background: linear-gradient(to right, #0983EB, #FCBD02);
}
.form-button-wrapper button{
    margin: 0 !important;
}
.form-button-wrapper .register-link {
  letter-spacing: 3px;
  font-size: 16px;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 5px;
  border: 1px solid #FCBD02;
  background: linear-gradient(to right, #FCBD02, #0983EB);
  padding: 16px 50px;
  width: fit-content;
  border-radius: 50px;
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  transition: al .3s ease;
  -webkit-transition: al .3s ease;
  -moz-transition: al .3s ease;
}

.form-button-wrapper .register-link:hover {
  background: linear-gradient(to right, #0983EB, #FCBD02);
}
.form-button-wrapper{
    margin-top: 30px;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
}
.login-container .login-error, .login-error {
    font-size: 20px;
    font-weight: 600;
    text-shadow: none;
    stroke: none;
    outline: none;
}
.login-container .login-error a{
    color: #000 ;
}

/*!!!!###### ****** ###### Dashboard Css Start ###### ****** ######!!!!*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.dashboard {
  display: flex;
  height: 100vh;
  overflow: hidden;
  background: #1E1E1E;
}

.sidebar {
  max-width: 460px;
  min-width: 250px;
  width: 24%;
  background: #141414;
  display: flex;
  flex-direction: column;
  padding: 30px 36px;
  overflow-y: auto;
  transition: transform 0.3s ease;
  z-index: 1000;
  position: relative;
}

.sidebar.hide-mobile {
  transform: translateX(0);
}

.sidebar .close-btn {
  display: none;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 10px;
  position: absolute;
}

.sidebar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
}

.sidebar .logo img {
  margin: 0 auto;
}

.sidebar ul {
  list-style: none;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
}

.sidebar li a {
  color: #ffffff;
  cursor: pointer;
  font-family: 'Poppins';
  font-size: 16px;
  line-height: 50px;
  font-weight: 400;
}

.sidebar li:hover a,
.sidebar li.active a {
  color: #FCBD02;
}

.sidebar footer {
  font-size: 15px;
  color: #9F9F9F;
  margin-top: 30px;
  position: absolute;
  bottom: 20px;
  font-weight: 400;
  font-family: 'Poppins';
  left: 30px;
}

main.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 12% 30px 7%;
  overflow-y: auto;
  position: relative;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.logout-btn {
  padding: 8px 16px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  margin-left: auto;
}

.upload-box {
  margin-top: 30px;
}

.upload-box h2 {
  color: #868686;
  margin-bottom: 50px;
}

.upload-box h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
}

.upload-box h1 span {
  font-weight: 400;
}

.gradient-text {
  background: linear-gradient(to right, #FCBD02, #0983EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.drop-zone p {
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 40px;
}

.upload-box .title-wrap {
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-flow: row wrap;
}

.drop-zone {
  border: 1px dashed #555;
  border-radius: 15px 80px 15px 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 35px;
  max-width: 920px;
  height: 575px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.drop-zone .icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.logo-wrap-onMobile {
  display: none;
}

button.browse-btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'Poppins';
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  width: 274px;
  height: 74px;
  color: #fff;
  cursor: pointer;
  background: transparent;
  margin: 0 auto;
}

button.browse-btn:hover {
  background: linear-gradient(90deg, #FCBD02, #0983EB);
  color: #fff;
  border-color: #FCBD02;
}

input[type="file"] {
  display: none;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.file-preview {
  position: relative;
  height: 160px;
  border: 1px dashed #868686;
  border-radius: 15px;
  background: #1a1a1a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.file-preview iframe,
.file-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 15px;
}

.text-preview {
  color: #ccc;
  font-size: 12px;
  padding: 10px;
  text-align: center;
}

.file-actions {
  position: absolute;
  top: -20px;
  right: 5px;
  display: flex;
  gap: 5px;
  visibility: hidden;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.file-preview:hover .file-actions {
  top: 0;
  visibility: visible;
}

.file-actions button {
  background: rgba(30, 30, 30, 1);
  border: none;
  padding: 4px 7px;
  font-size: 10px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}

.file-actions button:hover {
  background: #FCBD02;
}

@media (max-width: 768px) {
  .sidebar.hide-mobile {
    transform: translateX(-100%);
  }

  .dashboard {
    flex-direction: column;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background: #111;
  }

  .sidebar .close-btn {
    display: block;
  }

  .hamburger {
    display: block;
    color: #fff;
  }
}


/*!!!!###### ****** ###### Dashboard Css End ###### ****** ######!!!!*/



span.mega-indicator {
  position: absolute !important;
  top: 0 !important;
  right: 0;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
  padding-right: 20px !important;
}




.post-grid {
  display: flex;
  gap: 40px;
  flex-flow: row wrap;
}

.post-grid .file-box {
  border: 1px solid #ffffff;
  border-radius: 15px;
  overflow: hidden;
  padding: 14px;
  text-align: center;
  width: calc(50% - 20px);
  border-style: dashed;
  position: relative;
}

.post-grid .file-box a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/iconoir_zoom-in.png) rgb(0 0 0 / 53%);
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
}

.post-grid .file-box a:hover:after {
  opacity: 1;
}

.post-grid .file-box a {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.post-grid .file-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  object-position: center;
}

.pagination {
  text-align: center;
  margin-top: 50px;
  display: flex;
  gap: 5px;
  justify-content: center;
}

.pagination a {
  font-family: 'Poppins';
  text-decoration: none;
  margin: 0 0px;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #44444400;
  display: block;
  font-size: 20px;
  color: #fff;
  line-height: 1;
}

.pagination a.active, .pagination a:hover {
  color: #FCBD02;
}

.sort-bar label {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Poppins';
  color: #ffffff;
}

.sort-bar select {
  color: #ffff;
  border-radius: 50px;
  padding: 6px 20px 6px 10px;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Poppins';
  background: url(../images/meteor-icons_angle-down.png) #1e1e1e !important;
  background-repeat: no-repeat !important;
  background-position: right 3px center !important;
}

.sort-bar {
  margin-bottom: 40px;
  display: flex;
  gap: 15px;
  align-items: center;
}

select,
input,
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #00ed16;
}
.wpcf7 form.sent .wpcf7-response-output{
    padding: 16px !important;
    color: #00ed16;
    font-weight: 600;
    text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output {
    padding: 16px !important;
    color: #ff0000;
    font-weight: 600;
    text-align: center;
}

.contactForm .wpcf7-not-valid-tip {
    margin-top: 6px;
}

.privacy-policy-content {
  max-width: 1060px;
  margin: 0 auto;
}

.privacy-policy-content h2 {
  margin: 40px 0 30px 0;
}

.privacy-policy-content h2 span {
  background: linear-gradient(90deg, #FCBD02, #FCBD02, #0EA2E2, #0EA2E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.privacy-policy-content p {
  color: #fff;
  margin-bottom: 30px;
}

.privacy-policy-content p:last-child {
  margin-bottom: 0;
}

.privacy-policy-content span {
  color: #00bfff;
}

/*#########################Thank You Page Start###############################*/
.thank-you-sec h1 {
  font-family: 'Poppins';
  font-size: 4em;
  letter-spacing: 3px;
  color: #005dad;
  margin: 0;
  margin-bottom: 20px;
}

.thank-you-sec .wrapper-2 p {
  margin: 0;
  font-size: 1.3em;
  color: #aaa;
  font-family: 'Poppins';
  letter-spacing: 1px;
}

.thank-you-sec .go-home {
  color: #fff;
  background: #5892FF;
  border: none;
  padding: 10px 50px;
  margin: 30px 0;
  border-radius: 30px;
  text-transform: capitalize;
  box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
}

.thank-you-sec .footer-like {
  margin-top: auto;
  background: #D7E6FE;
  padding: 6px;
  text-align: center;
}

.thank-you-sec .footer-like p {
  margin: 0;
  padding: 4px;
  color: #5892FF;
  font-family: 'Poppins';
  letter-spacing: 1px;
}

.thank-you-sec .footer-like p a {
  text-decoration: none;
  color: #5892FF;
  font-weight: 600;
}
.wrapper-2 .btn{
    margin: 25px auto 0 auto;
}
  .thank-you-sec {
    padding: 7rem 2rem;
    background: #1c1c1c;
    min-height: 60vh;
  }
  .thank-you-sec .wrapper-1 {
    height: initial;
    max-width: 620px;
    margin: 0 auto;
    margin-top: 50px;
    box-shadow: 4px 8px 40px 8px rgb(0 93 173 / 46%);
    padding: 50px;
    text-align: center;
    border-radius: 15px 80px 15px 15px;
    position: relative;
    z-index: 1;
}
.thank-you-sec .wrapper-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px 80px 15px 15px;
    padding: 1px;
    background: linear-gradient(to right, #FCBD02, #005DAD);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.thank-you-sec h1 {
    font-size: 4.5em;
    font-weight: 500;
}
.thank-you-sec .go-home {
    margin-bottom: 20px;
}


@media(max-width: 767px) {
.thank-you-sec h1 {
    font-size: 2.5em;
}
.thank-you-sec .wrapper-1 {
    padding: 30px 20px;
}
}

/*#########################Thank You Page End###############################*/


.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.menu-item-has-children:hover > .sub-menu {
  display: block;
}

.menu-item-has-children {
  position: relative;
}
.oneall_social_login label {
    color: #000;
    font-weight: 600;
}

.plugin .footer #branding {
    color: #ffffff !important;
}
.plugin .footer #branding .company-service {
    color: #ffffff !important;
    text-decoration: none;
}
.plugin .footer #branding .company-service a{
    color: #000000 !important;
}
.register-new .oneall_social_login label {
    color: #000000;
}
.register-new .oneall_social_login {
    padding: 20px;
    background: #fff;
    right: 25px;
    bottom: 25px;
    position: absolute;
    width: 186px;
    border-radius: 20px;
}
.register-new .login-container {
    position: relative;
    padding-bottom: 150px;
}
.login-new .oneall_social_login{
    padding: 20px;
    background: #fff;
    border-radius: 20px;
}


/*/=== July-24-2025 start ===/*/

.services-details-right ul {
    margin: 0 0 0 19px;
}

.services-details-right ul li {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}
.services-details-right ul {
    margin: 0 0 20px 19px;
}
.taxswift-content ul {
    margin: 0 0 20px 19px;
}

.taxswift-content ul li {
    font-size: 18px;
    line-height: 28px;
    color: #000;
}
/*/=== July-24-2025 end ===/*/

