@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&family=Smooch&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* body{
  height: 100vh;
 
} */
.container  {
  height: 4900px;
  /* width: 100% !important; */
  /* padding:0px 5% 110px 5%!important; */
  display: flex;
  justify-items: center;
  flex-direction: column;
  padding-bottom: 110px !important;
  /* margin: 0px 8%; */
}

/* navbar */
.navbar {
  height: 65px !important;
  background: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition:
    color 0.18s,
    background 0.18s;
  white-space: nowrap;
  user-select: none;
}

.nav-link:hover,
.nav-item:hover .nav-link {
  color: var(--text);
  background: #f5f5f5;
}

.nav-link svg {
  transition: transform 0.2s;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* MEGA DROPDOWN */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 250%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px 32px;
  width: 820px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  pointer-events: none;
  background: #ffffff;
}

.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}

.mega-col h4 {
  font-family: "Syne", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.mega-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-col ul a {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  display: block;
  padding: 2px 0;
}

.mega-col ul a:hover {
  color: var(--accent);
}

/* Divider row in mega grid */
.mega-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.mega-row-2 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
  align-items: start;
}

/* CTA links column */
.mega-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
}

.mega-cta a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.15s;
}

.mega-cta a:hover {
  gap: 10px;
}

.mega-cta a svg {
  flex-shrink: 0;
}

.navbar-brand img {
  height: 26px;
  width: 100px;
}

.navbar .nav-item {
  font-size: 16px;
  font-family: dm sans;
}

.navbar .nav-item a:hover {
  color: #108a00;
}

.nav-btn {
  gap: 0px 10px;
  height: 40px;
}

.nav-btn .signupbtn {
  border-radius: 10px;
  background: #108a00;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 600;
  padding: 0px 25px;
}

.nav-btn .signupbtn:hover {
  background: #169e04;
}

.nav-btn .loginbtn {
  background: transparent;
  border: none;
  font-size: 14px;
  color: #000;
  font-family: Poppins;
}

/* nav end */

.signuptoday {
  height: 75px;
  width: 100%;
  background: #eefacd;
  background: linear-gradient(96deg,
      rgba(238, 250, 205, 1) 0%,
      rgba(238, 250, 205, 1) 25%,
      rgba(206, 244, 209, 1) 64%,
      rgba(211, 251, 216, 1) 100%);
  margin-top: 40px;
  /* margin: 40px 80px; */
  padding: 24px 32px;
  border-radius: 25px;
  display: flex;
  align-items: center;
}

.signuptoday p {
  font-size: 25px;
  font-family: inter;
  font-weight: 600;
  margin-bottom: 0px;
  margin-top: 4.5px;
}

.linkandicon {
  display: flex;
  justify-content: flex-end;
  width: 300px;
  /* background: #f80303; */
  align-items: center;
  margin-left: 100px;
}

.signuptoday .linkandicon a {
  color: #000;
  font-size: 16px;
  font-family: inter;
  margin-right: 3px;
}

.signuptoday .linkandicon i {
  font-size: 16px;
  margin-top: 5px;
  cursor: pointer;
}

.card {
  margin-top: 40px;
  margin-bottom: 80px;
  padding: 0 !important;
  width: 100% !important;
}

.card .card-img {
  height: 630px;
  width: 1296px;
  border-radius: 25px;
  /* position: relative;right: 30px; */
}

.cardoverlay {
  height: 460px !important;
  width: 740px !important;
  background: transparent !important;
  margin: 85px 0px 0px 55px;
}

.cardoverlay .card-title {
  font-size: 72px;
  font-family: DM Sans;
  line-height: 70px;
  margin-bottom: 35px;
  color: rgb(255, 255, 255);
}

.cardoverlay .card-text {
  font-size: 24px;
  font-weight: 600;
  font-family: inter;
  line-height: 28px;
}

.btn-and-search-card {
  height: fit-content;
  width: fit-content;
  background: #161e21;
  background: linear-gradient(44deg,
      rgba(22, 30, 33, 1) 0%,
      rgba(22, 30, 33, 1) 54%,
      rgba(50, 53, 47, 1) 100%);
  border-radius: 25px;
  padding: 32px;
}

.btns {
  background: #565955;
  background: #565955;
  background: linear-gradient(90deg,
      rgba(86, 89, 85, 1) 100%,
      rgba(86, 89, 85, 1) 0%);
  height: 38px;
  width: 608.95px;
  border-radius: 23px;
}

.btn-and-search-card .hirebtn {
  border: 2px solid wheat;
  height: 38px;
  width: 302px;
  background: #565955;
  background: linear-gradient(90deg,
      rgba(86, 89, 85, 1) 100%,
      rgba(86, 89, 85, 1) 0%);
  border-radius: 23px;
  font-size: 16px;
  font-family: inter;
}

.btn-and-search-card .workbtn {
  height: 38px;
  width: 302px;
  border-radius: 23px;
  background: #565955;
  background: linear-gradient(90deg,
      rgba(86, 89, 85, 1) 100%,
      rgba(86, 89, 85, 1) 0%);

  border-color: #525652;
  font-size: 16px;
  font-family: inter;
}

.search {
  height: px;
  width: 610px;
  /* background: #fffefe; */
  padding-top: 25px;
  display: flex;
}

.search input {
  width: 100%;
  border-radius: 28px;
  padding: 12px 155px 12px 24px;
}

.smallcards {
  margin-bottom: 65px;
}

.smallcards .small-card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 32px;
}

.smallcards h4 {
  font-size: 40px;
  font-family: DM Sans;

  margin-bottom: 35px;
}

.smallcards .card1,
.card2,
.card3,
.card4,
.card5,
.card6,
.card7,
.card8,
.card9,
.card10 {
  height: 160px;
  width: 230px;
  display: flex;
  flex-direction: column;
  gap: 22px 0px;
  padding: 16px;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 8px;

}

@keyframes card1 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes card2 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes card3 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes card4 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes card5 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes card6 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes card7 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes card8 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes card9 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes card10 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}


.card1 {
  animation: card1 2.6s ease-in-out infinite;
}

.card2 {
  animation: card2 2.6s ease-in-out infinite;
}

.card3 {
  animation: card3 2.6s ease-in-out infinite;
}

.card4 {
  animation: card4 2.6s ease-in-out infinite;
}

.card5 {
  animation: card5 2.6s ease-in-out infinite;
}

.card6 {
  animation: card6 2.6s ease-in-out infinite;
}

.card7 {
  animation: card7 2.6s ease-in-out infinite;
}

.card8 {
  animation: card8 2.6s ease-in-out infinite;
}

.card9 {
  animation: card9 2.6s ease-in-out infinite;
}

.card10 {
  animation: card10 2.6s ease-in-out infinite;
}


.card1:hover {
  border: 2px solid #108a00;
  cursor: pointer;
}

.card2:hover {
  border: 2px solid #108a00;
  cursor: pointer;
}

.card3:hover {
  border: 2px solid #108a00;
  cursor: pointer;
}

.card4:hover {
  border: 2px solid #108a00;
  cursor: pointer;
}

.card5:hover {
  border: 2px solid #108a00;
  cursor: pointer;
}

.card6:hover {
  border: 2px solid #108a00;
  cursor: pointer;
}

.card7:hover {
  border: 2px solid #108a00;
  cursor: pointer;
}

.card8:hover {
  border: 2px solid #108a00;
  cursor: pointer;
}

.card9:hover {
  border: 2px solid #108a00;
  cursor: pointer;
}

.card10:hover {
  border: 2px solid #108a00;
  cursor: pointer;
}

.smallcards .card1 p,
.card2 p,
.card3 p,
.card4 p,
.card5 p,
.card6 p,
.card7 p,
.card8 p,
.card9 p,
.card10 p {
  font-size: 20px;
  font-family: DM Sans;
  margin: 0 !important;
  font-weight: 600;
}

.howitwork {
  display: flex;
  margin-bottom: 35px;
}

.howitwork p {
  font-size: 29px;
  font-family: DM Sans;
  margin: 0 !important;
  font-weight: 600;
}

.howitwork .buttons {
  width: 1120px;
  /* background: #fa0404; */
  display: flex;
  justify-content: flex-end;
  gap: 0px 10px;
}

.buttons button {
  height: 40px;
  border-radius: 25px;
  font-size: 16px;
  font-family: inter;
  font-weight: 600;
  padding: 0px 25px;
  background: transparent;
  color: black;
  border-color: #000;
}

.buttons button:hover {
  background: #0000007c;
  border-color: #0000007c;
}

.buttons button:active {
  background: #000 !important;
}

.three-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 40px;
}

.three-cards .card {
  height: fit-content !important;
  width: 405px !important;
  border-radius: 20px !important;
  border: none;
  cursor: pointer;
  padding: 0 !important;
  transition: all 1s;
}

.three-cards .card:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 1s;
}

.three-cards .card img {
  height: 270px;
  width: 405px;
  border-radius: 20px !important;
}

.three-cards .card-body .headings {
  font-size: 22px;
  font-family: DM Sans;
  font-weight: 600;
}

.three-cards .card .card-text {
  font-size: 14.5px;
  font-family: inter;
}

.three-cards .card .btn {
  width: 100%;
  background: #108a00;
  border-color: #108a00;
}

.three-cards .card .btn:hover {
  background: #169e04;
}

.stage {
  width: 405px;
  height: 270px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #000;
}

/* ─── SCENES ─── */
.scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.scene.active {
  opacity: 1;
  pointer-events: auto;
}

/* ─── SCENE 1: gradient intro ─── */
#s1 {
  background: radial-gradient(ellipse at 30% 40%,
      #e8ff80 0%,
      #9effa0 40%,
      #b5ffb0 70%,
      #d4ffd0 100%);
}

#s1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 60%, #f5ff60 0%, transparent 55%);
}

.logo-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.upwork-logo {
  font-family: "Arial Black", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #0d0d0d;
  letter-spacing: -2px;
  line-height: 1;
}

.upwork-logo span {
  display: inline-block;
}

.upwork-logo .u {
  font-style: italic;
}

.tagline {
  font-family: "Georgia", serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ─── SCENE 2: logo zoom ─── */
#s2 {
  background: radial-gradient(ellipse at 30% 40%,
      #e8ff80 0%,
      #9effa0 40%,
      #b5ffb0 70%,
      #d4ffd0 100%);
}

#s2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 60%, #f5ff60 0%, transparent 55%);
}

.logo-big {
  font-family: "Arial Black", sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  color: #0d0d0d;
  letter-spacing: -4px;
  position: relative;
  z-index: 1;
  animation: none;
}

.logo-big .u {
  font-style: italic;
}

/* ─── SCENE 3: hire ─── */
#s3 {
  background: #0a0a0a;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-yellow {
  width: 70px;
  height: 70px;
  top: 30px;
  right: 100px;
  background: radial-gradient(circle at 40% 35%, #f5ff80, #c8d400);
  box-shadow: 0 0 40px 10px rgba(220, 240, 0, 0.4);
}

.orb-green-sm {
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 130px;
  background: radial-gradient(circle at 40% 35%, #80ff90, #00cc44);
  box-shadow: 0 0 40px 10px rgba(0, 220, 80, 0.4);
}

.hire-text {
  font-family: "Georgia", serif;
  font-size: 2.4rem;
  color: #ffffff;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

/* ─── SCENE 4: 4 orbs ─── */
#s4 {
  background: #080808;
}

.orbs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.orb-big {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #a0ffb0, #00cc55);
  box-shadow: 0 0 50px 15px rgba(0, 230, 80, 0.5);
  filter: blur(1px);
}

.all-text {
  position: absolute;
  bottom: 50px;
  font-family: "Georgia", serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  z-index: 2;
}

/* ─── SCENE 5: cards ─── */
#s5 {
  background: #0a0a0a;
  overflow: hidden;
}

.cards-track {
  display: flex;
  gap: 16px;
  padding: 0 20px;
  animation: scroll-cards 4s linear infinite;
  width: max-content;
}

@keyframes scroll-cards {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 16px;
  width: 130px;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
  background: #444;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.card-name {
  font-family: inter;
  font-size: 0.78rem;
  color: #fff;
  font-weight: 700;
}

.card-title {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.card-location {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.card-stats {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.stat {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
}

.stat strong {
  display: block;
  font-size: 0.7rem;
  color: #fff;
}

.stars {
  color: #f5c518;
  font-size: 0.55rem;
  margin-top: 6px;
}

.glow-arc {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  border-top: 3px solid rgba(100, 255, 120, 0.6);
  border-radius: 50%;
  filter: blur(2px);
}

/* ─── SCENE 6: outro ─── */
#s6 {
  background: #050505;
}

.glow-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%,
      #d4ff80 0%,
      #70ff90 40%,
      #30cc60 70%,
      #004020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 80px 30px rgba(100, 255, 120, 0.3),
    0 0 150px 60px rgba(80, 200, 80, 0.15);
}

.outro-logo {
  font-family: "Arial Black", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0d0d0d;
  letter-spacing: -1px;
}

.outro-logo .u {
  font-style: italic;
}

/* ─── PAUSE BUTTON ─── */
.pause-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.pause-btn:hover {
  background: #fff;
}

.pause-btn svg {
  width: 10px;
  height: 12px;
  fill: #222;
}

/* ─── PROGRESS DOTS ─── */
.dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 100;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s;
}

.dot.on {
  background: rgba(255, 255, 255, 0.85);
}

.wrapper {
  position: relative;
  z-index: 1;
  height: 550px;
  width: 100%;
  /* max-width: 1080px; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: #141414;
  border-radius: 25px;
  padding: 0px 40px 0px 0px;
}

.left {
  padding: 115px 50px;
  background-image: repeating-linear-gradient(-45deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.022) 18px,
      rgba(255, 255, 255, 0.022) 19px);
}

h1 {
  font-family: DM Sans;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: white;
}

.subtitle {
  font-size: 0.95rem;
  font-family: inter;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
  color: white;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.input-box {
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px 14px 20px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  min-height: 100px;
}

.input-box textarea {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 0.94rem;
  color: #333;
  resize: none;
  min-height: 62px;
  line-height: 1.55;
}

.input-box textarea::placeholder {
  color: #bbb;
}

.btn-next {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    transform 0.15s,
    background 0.2s;
}

.btn-next:hover {
  background: #2a2a2a;
  transform: scale(1.04);
}

.btn-next .icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1.5px solid #c8e630;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step2-title {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step2-sub {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 20px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  border-radius: 30px;
  padding: 8px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 0.18s;
  user-select: none;
}

.chip.on {
  background: #c8e630;
  border-color: #c8e630;
  color: #111;
  font-weight: 600;
}

.btn-calc {
  background: #c8e630;
  color: #111;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.btn-calc:hover {
  opacity: 0.88;
  transform: scale(1.03);
}

.right {
  display: flex;
  justify-content: center;
}

.freelancer-price .card {
  background: #1c1c1c;
  border-radius: 20px;
  padding: 26px 28px 30px;
  height: 350px;
  width: 100%;
  /* max-width: 420px; */
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  margin: 40px 0px;
}

.freelancer-price .card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 210px;
  background: radial-gradient(ellipse,
      rgba(155, 200, 15, 0.48) 0%,
      transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.freelancer-price .card-title {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.chart-wrap {
  position: relative;
  z-index: 1;
}

.pills-row {
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  margin-bottom: 8px;
}

.pill {
  background: #c8e630;
  color: #111;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  border-radius: 20px;
  padding: 5px 12px;
  transition: all 0.4s;
}

canvas {
  width: 100%;
  height: 140px;
  display: block;
}

.labels-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 0;
  position: relative;
  z-index: 1;
}

.labels-row span {
  font-size: 0.73rem;
  color: #777;
}

.labels-row .mid {
  font-size: 0.78rem;
  color: #ccc;
  font-weight: 500;
}

.price-result {
  font-family: "Syne", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  text-align: center;
  color: #c8e630;
  margin-top: 14px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s,
    transform 0.4s;
}

.price-result.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.HandP-inner {
  background: url("https://res.cloudinary.com/upwork-cloud-acquisition-prod/image/upload/v1745328156/brontes/graphic-lg.png") center no-repeat;
  height: fit-content;
  width: 956px;
  display: flex;
  flex-direction: column;
}

.HandP {
  height: fit-content;
  width: fit-content;

  margin: 0px 10px;
}

.HandP h3 {
  font-size: 35px;
  font-family: dm sans;
  margin-bottom: 30px;
  padding: 0px 228px;
}

.HandP p {
  font-size: 16px;
  font-weight: 600;
  font-family: dm sans;
  margin-bottom: 50px;
  padding: 0px 280px;
}

.two-cards {
  background: url("https://res.cloudinary.com/upwork-cloud-acquisition-prod/image/upload/v1745328156/brontes/graphic-lg.png") center no-repeat;

  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  padding: 0px 150px;
  gap: 40px;

  margin-top: 80px;
  justify-content: center;
}

.two-cards .card {
  height: fit-content !important;
  width: 450px !important;
  padding: 32px !important;
  border: 0.5px solid rgba(128, 128, 128, 0.195);
  transition: all 1s;
  margin: 10px 0px !important;
  background: #ffffff;
}

.two-cards .card:hover {
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border: 0.5px solid #108a00;
  transition: all 1s;
}

.two-cards .card .card-title {
  color: #000;
  font-size: 20px;
  font-family: dm sans;
}

.two-cards .card .btn {
  width: 100%;
  background: #fff;
  border-color: #108a00;
  font-family: DM Sans;
  color: #108a00;
  font-size: 16px;
  border: 2px solid;
  margin-top: 20px;
}

.two-cards .card .btn:hover {
  background: #108a00;
  color: white;
}

.card-text-para1,
.card-text-para2 {
  color: #676767;
  font-size: 14px;
  font-family: inter;
}

.card-text-para2 {
  margin: 16px 0px;
}

.two-cards .card .Basic-includes {
  font-size: 16px;
  color: #676767;
  font-family: dm sans;
  margin-bottom: 24px;
}

.card-text-tik1,
.card-text-tik2,
.card-text-tik3,
.card-text-tik4,
.card-text-tik5 {
  font-size: 14px;
  font-family: inter;
}

.Real-clients-cards {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 40px;
}

.lastheading {
  display: block;
  height: fit-content;
  width: fit-content;
  margin-top: 80px;
}

.lastheading .Real-text {
  font-family: dm sans;
  font-size: 35px;
  font-weight: 600;
  /* margin-bottom: 45px; */

}

.review-card {
  width: 380px;
  padding: 24px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  position: relative;
  border: 0.5px solid rgba(128, 128, 128, 0.212);

}

.card--one,
.card--three,
.card--five {
  animation: floatCardone 2.6s ease-in-out infinite;
}

.card--two,
.card--four,
.card--six {
  animation: floatCardtwo 2.6s ease-in-out infinite;
}

@keyframes floatCardone {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes floatCardtwo {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}





.top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  /* background: #3bb54a; */
  margin: 0px 5px 6px 0px;
}

.badge svg {
  width: 26px;
  height: 26px;

}

.service {
  font-size: 14px;
  letter-spacing: 1px;
  color: #333;
  font-weight: 600;
  font-family: dm sans;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 18px;
  font-family: dm sans;
}

.stars {
  color: #ff8a00;
  font-size: 18px;
  margin-bottom: 22px;
}

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

}

.card--two .bottom {
  margin-top: 65px;
}

.author {
  font-weight: 600;
  margin: 0;
  font-size: 14px;
}

.type {
  margin: 6px 0;
  font-size: 13px;
  color: #444;
}

.date {
  font-size: 13px;
  color: #777;
}


.image-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ddd;
}

.image-placeholder img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.explore-freelancer {
  margin-top: 80px;
  width: 100%;
  height: 205px;
  border-radius: 15px;
  background: url("./last\ bg.png");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.explore-freelancer h1 {
  text-align: center;
  font-family: dm sans;
  font-size: 35px;
  margin-bottom: 35px;
}

/* height: 40px;
  padding:0px 25px;
  border-radius: 10px;
  font-size: 16px;
  font-family:dm sans ;
  outline: none;
  background: #ffffff;
  border: none; */
.explore-freelancer .button {


  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  gap: 10px;
  font-weight: bold;
  font-family: inter;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(91, 218, 0, 0.813),
      rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.6;
}



@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/* footer */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 80px 40px;
  margin-top: 80px;
  border-radius: 8px;
  height: fit-content;
  margin: 0px 125px 25px 125px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 13px;
  /* font-weight: 600; */
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  font-family: dm sans;
}

.footer-col ul {
  list-style: none;
  padding: 0 !important;
}

.footer-col ul li {
  margin-bottom: 8px;
  width: fit-content;
  font-family: inter;
}

.footer-col ul li a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.social-label {
  font-size: 13px;
  color: #fff;
  margin-right: 4px;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.7;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-app {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.mobile-app span {
  font-size: 13px;
  color: #fff;
}

.mobile-app svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

.mobile-app svg:hover {
  opacity: 0.7;
}

.social-and-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.copyright {
  font-size: 12px;
  color: #b0b0b0;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  font-size: 12px;
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: #fff;
}

.privacy-choices {
  display: flex;
  align-items: center;
  gap: 6px;
}

.privacy-badge {
  background: #1a6cff;
  border-radius: 4px;
  padding: 2px 4px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.privacy-badge .x-mark {
  color: #ff4444;
}

@media only screen and (max-width:1024px){
  .navbar {
  height: 65px !important;
  width: 100% !important;
  background: #fff;
}
  .container {
  height: 5900px;
  /* width:  100%!important; */
  /* padding: 0px 65px !important; */
  display: flex;
  flex-direction: column;
  padding-bottom: 110px !important;
  /* justify-content: center; */
  margin: 0px auto!important;
  /* margin-top: 50px !important; */
  
}
.signuptoday {
  height: 75px;
  width: 100%;
  background: #eefacd;
  background: linear-gradient(96deg,
      rgba(238, 250, 205, 1) 0%,
      rgba(238, 250, 205, 1) 25%,
      rgba(206, 244, 209, 1) 64%,
      rgba(211, 251, 216, 1) 100%);
  margin-top: 40px;
  /* margin: 40px 80px; */
  padding: 24px 32px;
  border-radius: 25px;
  display: flex;
  align-items: center;
}

.signuptoday p {
  font-size: 25px;
  font-family: inter;
  font-weight: 600;
  margin-bottom: 0px;
  margin-top: 4.5px;
}

.linkandicon {
  display: flex;
  justify-content: flex-end;
  width: 300px;
  /* background: #f80303; */
  align-items: center;
  margin-left: 100px;
}

.signuptoday .linkandicon a {
  color: #000;
  font-size: 16px;
  font-family: inter;
  margin-right: 3px;
}

.signuptoday .linkandicon i {
  font-size: 16px;
  margin-top: 5px;
  cursor: pointer;
}
.card {
  margin-top: 40px;
  margin-bottom: 80px;
  padding: 0 !important;
  width: 100% !important;
}

.card .card-img {
  height: 630px;
  width: 936px;
  border-radius: 25px;
  /* position: relative;right: 30px; */
}

.cardoverlay {
  height: 460px !important;
  width: 740px !important;
  background: transparent !important;
  margin: 85px 0px 0px 55px;
}

.cardoverlay .card-title {
  font-size: 72px;
  font-family: DM Sans;
  line-height: 70px;
  margin-bottom: 35px;
  color: rgb(255, 255, 255);
}

.cardoverlay .card-text {
  font-size: 24px;
  font-weight: 600;
  font-family: inter;
  line-height: 28px;
}

.btn-and-search-card {
  height: fit-content;
  width: fit-content;
  background: #161e21;
  background: linear-gradient(44deg,
      rgba(22, 30, 33, 1) 0%,
      rgba(22, 30, 33, 1) 54%,
      rgba(50, 53, 47, 1) 100%);
  border-radius: 25px;
  padding: 32px;
}

.btns {
  background: #565955;
  background: #565955;
  background: linear-gradient(90deg,
      rgba(86, 89, 85, 1) 100%,
      rgba(86, 89, 85, 1) 0%);
  height: 38px;
  width: 608.95px;
  border-radius: 23px;
}

.btn-and-search-card .hirebtn {
  border: 2px solid wheat;
  height: 38px;
  width: 302px;
  background: #565955;
  background: linear-gradient(90deg,
      rgba(86, 89, 85, 1) 100%,
      rgba(86, 89, 85, 1) 0%);
  border-radius: 23px;
  font-size: 16px;
  font-family: inter;
}

.btn-and-search-card .workbtn {
  height: 38px;
  width: 302px;
  border-radius: 23px;
  background: #565955;
  background: linear-gradient(90deg,
      rgba(86, 89, 85, 1) 100%,
      rgba(86, 89, 85, 1) 0%);

  border-color: #525652;
  font-size: 16px;
  font-family: inter;
}

.search {
  height: px;
  width: 610px;
  /* background: #fffefe; */
  padding-top: 25px;
  display: flex;
}

.search input {
  width: 100%;
  border-radius: 28px;
  padding: 12px 155px 12px 24px;
}

footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 80px 40px;
  margin-top: 80px;
  border-radius: 8px;
  height: fit-content;
  margin: 0px 25px 25px 25px;
}
}