* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #000;
  position: relative;
  cursor: none;
}

ul {
  margin-bottom: 0;
}

#work {
  scroll-margin-top: 30vh;
}

#projects {
  scroll-margin-top: 30vh;
}

#testimonials {
  scroll-margin-top: 30vh;
}

#contact {
  scroll-margin-top: 30vh;
}

.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #cc00ff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 5px solid rgba(132, 0, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border 0.2s;
}

.cursor-ring::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.2), transparent 70%);
  filter: blur(10px);
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #fff;
}

.margin {
  margin: 10%;
}

button {
  background: #000;
  color: #fff;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.08);
}

.btn-purple {
  background: #8b3dff;
  color: #fff;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
  border: none;
  width: auto;
  text-align: center;
}
.btn-purple:hover {
  transform: scale(1.08);
  color: #fff;
}

.heading {
  width: 100%;
  letter-spacing: 0px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.89);
}

.gradient-text {
  background-image: linear-gradient(to right, #6557ff, #aa3fff 80%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.paragraph {
  color: rgba(255, 255, 255, 0.7490196078);
  font-size: 18px;
  letter-spacing: 0.6px;
  font-weight: 400;
}

.sub-heading {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0px;
}

.banner-img {
  width: 80%;
  border-radius: 20px;
}

.cube-image {
  position: absolute;
  top: -8%;
  right: 0%;
  width: 120px;
  animation: floatCube 6s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

.cube-image1 {
  position: absolute;
  bottom: -15%;
  left: 0%;
  width: 120px;
  animation: floatCube 6s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

.scrolled {
  padding: 0 !important;
  transition: all 0.5s ease;
}

.scrolled .container-fluid {
  padding: 0;
}

.scrolled nav {
  border-radius: 0;
}

header {
  padding: 0 10%;
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}
header nav {
  background: linear-gradient(359deg, rgba(156, 91, 255, 0.8705882353) 25%, rgba(139, 61, 255, 0.9450980392) 100%);
  border: none;
  border-radius: 15px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
header .navbar {
  padding: 0% 2%;
}
header .navbar-brand .logo {
  width: 130px;
}
header .navbar-light .navbar-nav .nav-link {
  color: #fff !important;
}
header ul li {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.hero {
  padding: 12% 8% 13% 8%;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.hero h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.7490196078);
}

.gradient-text {
  background: linear-gradient(45deg, #6a5af9, #b44cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: rgba(255, 255, 255, 0.7098039216);
  font-size: 17px;
  max-width: 650px;
  margin: 20px auto 40px;
  letter-spacing: 1px;
  font-weight: 500;
}

.logo-section {
  overflow: hidden;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 80px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}

.logo-track img {
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.dashboard-area {
  position: relative;
  height: 180vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* Background huge text */
}
.dashboard-area .bg-text {
  position: absolute;
  font-size: 12vw;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.368627451);
  white-space: nowrap;
  pointer-events: none;
}
.dashboard-area .bg-text.left {
  left: -2%;
  top: 20%;
}
.dashboard-area .bg-text.right {
  right: -20%;
  bottom: -2%;
}
.dashboard-area {
  /* Image */
}
.dashboard-area .image-wrapper {
  position: sticky;
  top: 58%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  z-index: 2;
}
.dashboard-area .image-wrapper img {
  width: 80%;
  border-radius: 20px;
  transform: scale(0.5);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.moneys-worth-area .card {
  z-index: 0;
  width: 100%;
  height: 100%;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: rgba(248, 249, 252, 0.2705882353);
  border: none;
  border-radius: 30px;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.moneys-worth-area .card1 {
  background-color: rgba(248, 249, 252, 0.2705882353);
  border: none;
  border-radius: 15px;
  padding: 30px;
  position: relative;
}
.moneys-worth-area .card1 img {
  position: absolute;
  width: 70px;
  right: 15px;
  bottom: 3px;
  animation: floatCube 6s ease-in-out infinite;
}
.moneys-worth-area .cone-image {
  width: 330px;
  animation: spin 12s linear infinite;
  transform-style: preserve-3d;
  will-change: transform;
  position: absolute;
  right: 0;
  top: 15%;
}
@keyframes spin {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
.moneys-worth-area .img-dash {
  width: 100%;
  border-radius: 20px;
}

.cta-area {
  background: linear-gradient(359deg, rgba(139, 61, 255, 0.6784313725) 25%, rgba(139, 61, 255, 0.9450980392) 100%);
  padding: 3% 5%;
  border-radius: 20px;
  position: relative;
}
.cta-area .sub-heading {
  color: #fff;
  margin-bottom: 20px;
}
.cta-area .paragraph {
  color: #fff;
  width: 700px;
}
.cta-area img {
  position: absolute;
  width: 300px;
  right: 15px;
  bottom: 3px;
  animation: twistLeft 4s ease-in-out infinite;
}
@keyframes twistLeft {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.empowering-area {
  background: linear-gradient(359deg, rgba(139, 61, 255, 0.3568627451) 25%, rgba(139, 61, 255, 0.7411764706) 100%);
  padding: 5% 0%;
}
.empowering-area h2 {
  color: rgba(255, 255, 255, 0.89);
}
.empowering-area h2 span {
  color: #fff;
}
.empowering-area p {
  color: rgba(255, 255, 255, 0.89);
}
.empowering-area h3 {
  color: rgba(255, 255, 255, 0.89);
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
}
.empowering-area ul {
  padding: 20px;
}
.empowering-area ul li {
  color: rgba(255, 255, 255, 0.89);
  font-size: 17px;
  letter-spacing: 0.6px;
  font-weight: 500;
  margin-bottom: 15px;
}
.empowering-area .white-card .img {
  border-radius: 300px 300px 0 0;
  width: 400px;
  margin: auto;
  display: flex;
}
.empowering-area .white-card .cube1 {
  left: -6%;
}
.empowering-area .white-card .cube,
.empowering-area .white-card .cube1 {
  position: absolute;
  bottom: -15%;
  right: 0%;
  width: 250px;
  animation: floatCube 6s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
  border-radius: 0;
}
@keyframes floatCube {
  0% {
    transform: translate3d(0px, 0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate3d(10px, -15px, 0px) rotate(3deg);
  }
  50% {
    transform: translate3d(0px, -25px, 0px) rotate(0deg);
  }
  75% {
    transform: translate3d(-10px, -15px, 0px) rotate(-3deg);
  }
  100% {
    transform: translate3d(0px, 0px, 0px) rotate(0deg);
  }
}
.empowering-area .lang-card {
  display: flex;
  gap: 20px;
  border-radius: 50px;
}
.empowering-area {
  /* Image size */
}
.empowering-area .lang-card img {
  width: 50px;
  transition: transform 0.3s ease;
  border-radius: 10px;
  cursor: pointer;
}
.empowering-area .lang-card img:hover {
  transform: scale(1.1);
}

.portfolio-area {
  padding: 0% 3%;
}
.portfolio-area .card {
  border: none;
  padding: 20px;
  border-radius: 20px;
  background-color: rgba(248, 249, 252, 0.18);
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  display: none;
}
.portfolio-area .card img {
  width: 400px;
  border-radius: 10px;
}
.portfolio-area .card:hover {
  transform: scale(1.1);
}
.portfolio-area .show {
  display: block;
}
.portfolio-area button {
  background: #8b3dff;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.6px;
  font-weight: 500;
}

.testmonials-area .card {
  background-color: rgba(248, 249, 252, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  width: 50%;
  padding: 2% 3%;
}
.testmonials-area .card .profile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testmonials-area .card h4 {
  font-size: 20px;
  letter-spacing: 0.65px;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
  color: #fff;
}
.testmonials-area .card p {
  font-size: 18px;
  letter-spacing: 0.6px;
  font-weight: 500;
  margin: 3px 0;
  color: #fff;
}
.testmonials-area .card span {
  font-size: 16px;
  letter-spacing: 0.6px;
  font-weight: 500;
  margin: 5px 0;
  color: #fff;
}
.testmonials-area .slider {
  overflow: hidden;
  width: 100%;
}
.testmonials-area .slide-track {
  display: flex;
  gap: 20px;
  animation: scroll 15s linear infinite;
}
.testmonials-area .slider:hover .slide-track {
  animation-play-state: paused;
}
.testmonials-area .card {
  min-width: 300px;
  /* adjust as needed */
  flex-shrink: 0;
}
.testmonials-area {
  /* Animation */
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.contact-form {
  background: linear-gradient(359deg, rgba(139, 61, 255, 0.3568627451) 25%, rgba(139, 61, 255, 0.7411764706) 100%);
  padding: 30px;
  border-radius: 20px;
  margin: 5%;
}
.contact-form h4 {
  font-size: 30px;
  color: #f1f5f9;
  margin-bottom: 25px;
  padding-left: 16px;
  border-left: 4px solid #fff;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.contact-form .border-left {
  border-left: 1px solid rgba(211, 211, 211, 0.281);
}
.contact-form .card {
  background: rgba(255, 255, 255, 0.0588235294);
  backdrop-filter: blur(15px);
  width: 180px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.contact-form .card span,
.contact-form .card p {
  color: #fff;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
}
.contact-form .contact-img {
  width: 300px;
  position: absolute;
  bottom: -20%;
  left: 5%;
}
.contact-form .mini-dashboard {
  width: 200px;
  position: absolute;
  bottom: -5%;
  right: 20%;
  animation: floatRound 6s ease-in-out infinite;
}
@keyframes floatRound {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(-25px);
  }
  75% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.contact-form .mini-rokect {
  width: 100px;
  position: absolute;
  bottom: 45%;
  right: 35%;
  animation: floatRocket 6s ease-in-out infinite;
}
@keyframes floatRocket {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10px, -15px);
  }
  50% {
    transform: translate(0, -25px);
  }
  75% {
    transform: translate(-10px, -15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.contact-form .form-group {
  margin-bottom: 24px;
  position: relative;
}
.contact-form .form-group.full-width {
  grid-column: 1/-1;
}
.contact-form label {
  display: block;
  margin-bottom: 10px;
  color: #cbd5e1;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(30, 41, 59, 0.5);
  border: 1.5px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  font-size: 15px;
  color: #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  cursor: pointer;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(30, 41, 59, 0.8);
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 0 20px rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
}
.contact-form .btn-submit {
  width: 50%;
  padding: 10px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  margin: auto;
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.contact-form .btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.contact-form .btn-submit:hover::before {
  left: 100%;
}
.contact-form .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

footer {
  background: linear-gradient(359deg, rgba(139, 61, 255, 0.3568627451) 25%, rgba(139, 61, 255, 0.7411764706) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1% 5%;
}
footer img {
  width: 130px;
}
footer ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
footer ul li {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.6px;
}

.right-up {
  position: fixed;
  right: 5%;
  bottom: 15%;
  cursor: pointer;
  background-color: transparent;
  animation: rightUp 4s ease-in-out infinite;
  border: 1px dashed lightgray;
  border-radius: 50%;
  padding: 5px;
}
.right-up img {
  width: 50px;
  transform: rotate(42deg);
}

@keyframes rightUp {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.modal-content {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.modal-content p {
  font-size: 18px;
  letter-spacing: 0.6px;
  color: #333;
  font-weight: 500;
  margin-bottom: 0;
}

.modal-title {
  color: #6f42c1; /* same purple tone */
}

/* Small devices (phones)----------------------------------------------------------------------- */
@media (max-width: 575px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .modal-content {
    margin: 4%;
  }
  [data-aos] {
    max-width: 100%;
  }
  .margin {
    margin: 5%;
  }
  .btn-purple {
    padding: 6px 15px;
    font-size: 14px;
  }
  button {
    padding: 7px 10px;
    font-size: 12px;
  }
  .heading {
    font-size: 26px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .paragraph {
    font-size: 14px;
    text-align: center;
  }
  .sub-heading {
    font-size: 22px;
    line-height: inherit;
  }
  .navbar-collapse {
    padding: 12px;
  }
  button:focus:not(:focus-visible) {
    outline: 0;
    /* border: none; */
    box-shadow: none;
  }
  header ul li {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.6px;
  }
  header nav {
    border-radius: 8px;
  }
  header .navbar-brand .logo {
    width: 100px;
  }
  .hero {
    padding: 27% 5%;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero p {
    font-size: 14px;
    margin: 15px auto 15px;
  }
  .hero .cube-image {
    top: -8%;
    right: 2%;
    width: 75px;
  }
  .hero .cube-image1 {
    bottom: -15%;
    left: 2%;
    width: 75px;
  }
  .dashboard-area {
    height: 50vh;
    margin-bottom: 20%;
  }
  .dashboard-area .bg-text {
    font-size: 12vw; /* bigger but controlled */
    opacity: 0.2;
  }
  .dashboard-area .bg-text.left {
    left: 4%;
    top: 0%;
    color: #fff;
  }
  .dashboard-area .bg-text.right {
    right: 4%;
    bottom: 5%;
    color: #fff;
  }
  .dashboard-area .image-wrapper {
    top: 55%; /* better center */
  }
  .dashboard-area .image-wrapper img {
    width: 100%;
    transform: scale(0.8); /* less zoom-out */
    border-radius: 12px;
  }
  .cta-area {
    margin-bottom: 30%;
    border-radius: 8px;
  }
  .cta-area .paragraph {
    font-size: 14px;
    width: 100%;
    text-align: start;
  }
  .cta-area .sub-heading {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .cta-area img {
    position: absolute;
    width: 100px;
    right: 10px;
    bottom: -60px;
  }
  footer {
    flex-wrap: wrap;
  }
  .right-up {
    display: none;
  }
  .empowering-area {
    margin-bottom: 15%;
  }
  .empowering-area .white-card .img {
    width: 60%;
  }
  .empowering-area .white-card .cube {
    bottom: -15%;
    right: 10%;
    width: 100px;
  }
  .empowering-area .white-card .cube1 {
    left: 11%;
    width: 100px;
  }
  .empowering-area h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .empowering-area ul li {
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 400;
  }
  .empowering-area .lang-card {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10%;
  }
  .empowering-area .lang-card img {
    width: 42px;
  }
  .portfolio-area .card {
    padding: 10px;
    border-radius: 10px;
  }
  .portfolio-area .card img {
    width: 100%;
  }
  .portfolio-area button {
    font-size: 12px;
  }
  .moneys-worth-area .card {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .moneys-worth-area .card p {
    text-align: start;
  }
  .moneys-worth-area .cone-image {
    width: 130px;
    right: 15px;
    top: 35%;
  }
  .moneys-worth-area .img-dash {
    border-radius: 5px;
  }
  .moneys-worth-area .card1 {
    padding: 15px;
  }
  .moneys-worth-area .card1 img {
    width: 45px;
  }
  .moneys-worth-area .card1 p {
    text-align: start;
  }
  .testmonials-area {
    padding: 10px;
    margin-bottom: 30px;
  }
  .testmonials-area .card h4 {
    font-size: 12px;
    line-height: inherit;
  }
  .testmonials-area .card p {
    font-size: 12px;
  }
  .testmonials-area .card span {
    font-size: 12px;
  }
  .contact-form {
    padding: 15px;
    margin: 3%;
  }
  .contact-form h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .contact-form .form-group {
    margin-bottom: 5px;
  }
  .contact-form input {
    border-radius: 8px;
    font-size: 12px;
    padding: 10px;
  }
  .contact-form .btn-submit {
    width: 75%;
    font-size: 12px;
  }
  .contact-form .contact-img, .contact-form .mini-rokect, .contact-form .mini-dashboard {
    display: none;
  }
  .contact-form .card {
    width: 48%;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
  }
  .contact-form .card span {
    font-size: 11px;
  }
  .contact-form .card p {
    font-size: 11px;
  }
  .contact-form .border-left {
    border: none;
  }
  footer {
    padding: 3% 2%;
  }
  footer img {
    width: 80px;
  }
  footer ul {
    gap: 10px;
    margin-bottom: 0px;
  }
  footer ul li {
    font-size: 14px;
    font-weight: 400;
  }
  .modal-content p {
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .heading {
    font-size: 60px;
  }
  .hero {
    padding: 14% 5% 13% 5%;
  }
  .hero h1 {
    font-size: 40px;
  }
  .dashboard-area {
    height: 120dvh;
  }
  .dashboard-area .bg-text.left {
    left: 5%;
  }
  .dashboard-area .bg-text.right {
    right: 1%;
  }
  .empowering-area h3 {
    font-size: 40px;
  }
  .empowering-area .lang-card {
    flex-wrap: wrap;
    justify-content: center;
  }
  .contact-form {
    margin: 3%;
  }
  .contact-form .mini-rokect {
    bottom: 30%;
    right: 15%;
  }
  .contact-form .btn-submit {
    width: 70%;
  }
  .moneys-worth-area .img-dash {
    margin-top: 40%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .hero {
    padding: 14% 5% 13% 5%;
  }
  .hero h1 {
    font-size: 50px;
  }
  .dashboard-area {
    height: 150vh;
  }
  .dashboard-area .bg-text.left {
    left: -4%;
  }
  .dashboard-area .bg-text.right {
    right: -15%;
  }
}/*# sourceMappingURL=style.css.map */