@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  background-color: #030202 !important;
}
.yellow {
  color: #f9d94c;
}
.white {
  color: #fff;
}
.bg-blk {
  background-color: #030202;
}
p,
a {
  font-family: "Inter", sans-serif;
}
.sora {
  font-family: "Sora", sans-serif;
}
.fx-column {
  flex-direction: column;
}
/* header css=============================== */
.header {
  color: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header {
      background-color: #020202a6;
    padding: 20px 0px;
    position: sticky;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header-btn {
  text-decoration: none !important;
  padding: 12px 32px !important;
  border-radius: 100px;
  font-family: "inter";
  background: #212020;
  color: #f9d94c !important;
  backdrop-filter: blur(24px);
  font-size: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
  position: relative;
  display: inline-block;
}
.header-btn:before,
.free-trial:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  height: 110%;
  width: 0;
  background: #f9d94c;
  top: 0;
  margin: auto;
  transform: scaleX(0) skewX(-35deg);
  transition: 0.5s;
  z-index: -1;
}
.header-btn:hover,
.free-trial:hover {
  color: #030202 !important;
}
.header-btn:hover:before {
  transform: scaleX(1.5) skewX(-35deg);
  width: 100%;
}
.main-title {
  font-size: 64px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 120%;
  margin: 1rem 0rem 2rem;
  color: #fff;
}
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #ffd700;
}

.menu-toggler {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  padding: 0;
  z-index: 1000;
}

.menu-toggler .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.3s ease-in-out;
}

/* --- Mobile Responsiveness (Max-width 768px) --- */
@media (max-width: 768px) {
  .menu-toggler {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .nav-menu li {
    margin: 20px 0;
  }

  .nav-menu a {
    font-size: 24px;
  }

  .cta-item {
    margin-top: 40px;
  }
  .cta-button {
    display: block;
    text-align: center;
    width: 150px;
    padding: 12px 20px;
  }

  .menu-toggler.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggler.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggler.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
/* hero-section css======================== */
.hero {
  background: #030202;
  padding: 60px 0px 60px;
  background-image: url("../assets/images/0_Bokeh_Infinity_1920x1080.png");
  background-repeat: no-repeat;
  background-position-y: top;
  background-position-x: center;
  background-size: 110%;
  animation: zoom-in-out 4s linear infinite alternate;
}
@keyframes zoom-in-out {
  0% {
    background-size: 110%;
  }

  100% {
    background-size: 120%;
  }
}
.hero-head {
  padding: 0px 200px;
  background: #030202;
}
.hero-head p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 200;
}
.star-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  background: #ffffff20;
  backdrop-filter: blur(20px);
  box-shadow: inset 1px 1px 0px #e1dfdcc2, inset -2px -1px 1px #e1dfdc36;
}
.star {
  display: flex;
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  gap: 4px;
}
.star-p {
  font-size: 16px !important;
  line-height: 30px;
  font-weight: 200;
  font-family: "Inter", sans-serif;
  opacity: 80%;
}
.sb-p b {
  font-weight: 800;
}
.star li i {
  color: #f7d54a;
}
.btn-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin-top: 2rem;
}
.btn-box a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 20px;
  padding: 20px 48px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.loader {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: inline-block;
  border-top: 2px solid #eacc47;
  border-left: 2px solid #eacc47e3;
  border-right: 2px solid transparent;
  box-sizing: border-box;
  animation: rotation 1.5s linear infinite;
  background: #0000;
  top: 0;
  position: absolute;
  left: 0px;
  right: 0;
  margin: auto;
  bottom: 0;
  display: none;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.free-trial {
  background: #f9d94c;
  color: #212020;
  box-shadow: 0px 8px 24px rgb(247 208 73 / 24%);
}
.demo-btn {
  background: #212020;
  color: #f9d94c;
  backdrop-filter: blur(24px);
}
.demo-btn:hover{
    background: #282727;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78, 63, 13, 0.3);
}
.hero-img {
  margin-top: 6rem;
  display: none;
}
.hero-img img {
  width: 100%;
}

/* marketting section css */
.marketting {
  background: #030202;
  padding: 60px 0px 0px;
  background-image: url("../assets/images/0_Grid_Square.png");
  background-repeat: no-repeat;
  background-position: right;
  animation: zoom-in-out-agent 6s linear infinite alternate;
}
.market-head {
  margin-bottom: 1rem;
}
.h2-heading h2 {
  font-size: 48px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
.market-head p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 200;
}
.nav-item .av-img {
  border-radius: 100px !important;
  padding: 6px !important;
  background: transparent !important;
  transition: all 0.3s ease;
  width: 80px;
  height: 80px;
  display: flex;
}
.av-data {
  display: none;
  bottom: -4.5rem;
}
.av-data h5 {
  font-size: 14px;
  font-family: "inter";
  font-weight: 500;
  margin-bottom: 2px;
}
.nav-link.active .loader {
  display: block;
}
.nav-link.active .av-data {
  display: block;
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: -2.5rem;
  padding: 8px 16px;
  background: rgb(255 255 255 / 10%);
  backdrop-filter: blur(8px);
  transform: translate(-50%, 0px);
  box-shadow: inset 1px 1px 0px #e1dfdcc2, inset -2px -1px 1px #e1dfdc36;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.av-data p {
      color: #91908f;
    white-space: nowrap;
    font-size: 12px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: transparent !important;
}
.marketting .nav-link {
  padding: 0px !important;
  position: relative;
}
.marketting .nav-pills {
  /* gap: 15px; */
}
.nav-link .av-img {
  filter: grayscale(1);
}
.nav-link.active .av-img {
  filter: grayscale(0) !important;
}
.mrkt-avatar {
  width: 100%;
  display: block;
  max-width: 522px;
  margin: 3rem auto 0rem;
  position: relative;
  z-index: 1;
}
.tab-content {
  margin-top: 4rem;
}
.market-box {
  border-radius: 40px;
  background: #bd8a00;
}
.mrkt-left h4 {
  margin-top: 3rem;
  margin-top: 3rem;
  z-index: 1;
  position: relative;
}

.mrkt-left::before {
  content: "";
  background-image: url(../assets/images/rctngle.png);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
}
.mrkt-right {
  padding: 40px !important;
}
.mrkt-right p {
  font-size: 16px;
  color: #fff;
  font-family: "inter";
  line-height: 150%;
}
.bubble-txt {
  border-top: 1px solid rgb(255 255 255 / 16%);
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  padding: 1rem 0rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1rem 0rem;
}
.bubble-txt p {
  border: 1px solid rgb(255 255 255 / 16%);
  padding: 8px 12px;
  border-radius: 50px;
  color: #fff;
  margin-bottom: 0px;
  font-size: 14px;
}
.scene-p {
  font-weight: 700;
}
.mrkt-left {
  border-right: 1px solid rgb(255 255 255 / 16%);
  position: relative;
  display: flex;
  flex-direction: column;
}
.msg-left {
  /* margin: 0rem 0rem 1.5rem 0rem; */
  margin-bottom: 16px;
}
.msg-left p {
  margin-bottom: 0px;
  border: 1px solid rgb(255 255 255 / 16%);
  display: inline-block;
  padding: 12px 16px;
  border-radius: 16px 32px 32px 4px;
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 18%);
}
.msg-right p {
  margin-bottom: 0px;
  border: 1px solid rgb(255 255 255 / 16%);
  display: inline-block;
  padding: 12px 16px;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 18%);
  background: rgb(255 255 255 / 16%);
}
.msg-right p img {
  margin-right: 8px;
}
.msg-right {
  display: flex;
  justify-content: end;
  margin-bottom: 16px;
  
}
.bb{
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}
.ad-btn {
  background: #fff;
  padding: 20px 48px;
  display: inline-flex;
  margin-top: 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  color: #bd8a00;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.3s ease;
}
.ad-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(77, 77, 76, 0.3);
}
.mb-display{
  display: none !important;
}
/* tools section css============================ */
.tools {
  background-color: #030202;
  padding: 120px 0px;
  background-image: url(../assets/images/0_Grid_Square.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  animation: zoom-in-out-agent 6s linear infinite alternate;
}
.tool-head {
  margin-bottom: 2rem;
}
.tool-head p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 200;
}
.meta-box {
  background: rgb(255 255 255 / 8%);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 2rem;
  min-height: 90%;
  backdrop-filter: blur(16px);
  position: relative;
  transition: all 0.3s ease;
}
.meta-box:hover,
.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgb(15 15 15 / 50%);
}
.coming p {
  position: absolute;
  right: 2rem;
  top: 2rem;
  background: #f9d94c;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: "Inter";
  text-transform: capitalize;
  font-weight: 300 !important;
  color: #000;
  font-size: 12px !important;
}
.meta-head {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: start;
}
.meta-head img {
  padding: 8px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 8px;
}
.meta-head h4 {
  font-size: 18px;
  font-weight: 700;
}
.meta-box p {
  font-size: 16px;
  font-weight: 200;
  line-height: 150%;
  /* display: -webkit-box; */
  /* -webkit-line-clamp: 4; */
  /* -webkit-box-orient: vertical; */
  /* overflow: hidden; */
}
.last-meta .meta-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.meta-box a {
  text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 20px;
    padding: 20px 48px;
    border-radius: 50px;
    margin-top: .5rem;
}
/* steps section css */
.steps {
  background-color: #030202;
  padding: 0px 0px 0px !important;
}
.step-box img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.step-box {
  border-radius: 16px;
  overflow: visible;
  position: relative;
  transition: all 0.3s ease;
}
.st-step p {
  position: absolute;
  top: -1rem;
  padding: 8px 16px;
  left: 1rem;
  background: #1a1c1e;
  font-family: "Inter";
  color: #a0a0a0;
  font-size: 14px;
  border-radius: 100px;
  text-transform: capitalize;
  border: 1px solid #6f7173;
}
.step-data {
  padding: 32px 24px;
  background: #1a1c1e;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.step-data h4 {
  font-size: 22px;
  font-family: "inter";
  font-weight: bold;
  margin-bottom: 1rem;
}
.step-box p {
  font-size: 14px;
  font-weight: 200;
}
.staps-head {
  margin-bottom: 4rem;
}
/* testimonial css */
.testimonial {
  background-color: #030202;
  padding: 120px 0px !important;
  background-image: url(../assets/images/0_Grid_Squares_2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  animation: zoom-in-out-agent 7s linear infinite alternate;
}
.testimonial-box {
  width: 90%;
  background: rgb(255 255 255 / 8%);
  padding: 32px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
}
.testimonial-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 1rem 0rem;
  line-height: 39px;
}
.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-box p {
  font-size: 16px;
  font-weight: 200;
}
.test-head {
  margin-bottom: 3rem;
}
/* faq-section===================== */
.faq {
  background-color: #1a1c1e;
  padding: 120px 0px !important;
  border-radius: 64px;
}
.faq-head p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 200;
}
.faq-item {
  /* margin-bottom: 20px; */
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: transparent;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-question:hover {
  background: #333333;
}

.faq-item.active .faq-question {
  background: transparent;
  border: 2px solid #d4af37;
  border-radius: 15px 15px 0 0;
}

.faq-question h3 {
  font-size: 20px;
  font-family: "Inter";
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: #d4af37;
}

.faq-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #d4af37;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: transparent;
  border: 1px solid #3a3e3c;
  border-top: none;
  border-radius: 0 0 15px 15px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 20px;
  border: 2px solid #d4af37;
  border-top: none !important;
}

.faq-answer-content {
  color: #e0e0e0;
}

.faq-answer-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.faq-answer-content ul {
  list-style: none;
  padding-left: 0;
}

.faq-answer-content li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 7px;
  padding-left: 24px;
  position: relative;
  font-family: "Inter";
}

.faq-answer-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af37;
  top: 0px;
  font-size: 26px;
  line-height: 1;
}
.bottom-hero-cta {
  padding: 120px 0px !important;
}
.bottom-hero-cta .hero-head {
  padding: 0px 100px !important;
}
.free-trial:hover{
  background: #c49d2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@media (max-width: 992px) {
  .faq-question h3 {
    font-size: 24px;
  }

  .faq-answer-content p,
  .faq-answer-content li {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .marketting .mrkt-left{
    display: none;
  }
  .header-btn{
    padding: 12px 24px !important;

  }
  .cta-hide{
    display: none !important;
  }
  .dash-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .mb-display{
    display: flex !important;
        margin-top: 0px !important;
        justify-content: center;
        align-items: center !important;
  }
  .mrkt-right{
    padding: 20px !important;
  }
  .main-title {
    font-size: 30px;
    margin-bottom: 1rem;
  }
  .hero-head,
  .agent-head {
    padding: 0px 12px;
  }
  .star-p {
    width: 80%;
    display: block;
    margin: auto;
  }
  .btn-box {
    flex-direction: column;
    gap: 20px;
  }
  .hero {
    background-size: auto !important;
    padding-bottom: 0px !important;
  }
  .hero-head {
    background: transparent !important;
  }
  .bubble-txt p {
    border: 1px solid rgb(255 255 255 / 16%);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    margin-bottom: 0px;
    font-size: 14px;
  }
  .msg-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .meta-head {
    gap: 22px !important;
    margin-bottom: 15px !important ;
  }
  .nav-item .av-img {
    width: 70px !important;
    height: 70px !important;
  }
  .free-trial {
    width: 100%;
  }
  .faq-head.text-start {
    text-align: center !important;
  }
  .bottom-hero-cta .hero-head {
    padding: 0px 0px 60px !important;
  }
  .tools,
  .testimonial {
    padding: 60px 0px !important;
  }
  .faq {
    padding: 64px 24px !important;
  }
  .step-box {
    margin-bottom: 2rem;
  }
  .btn-box a {
    width: 100%;
    justify-content: center;
  }
  .h2-heading h2 {
    font-size: 24px;
    line-height: 120%;
  }
  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 20px;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
    margin-left: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 20px;
  }

  .faq-answer-content p,
  .faq-answer-content li {
    font-size: 16px;
  }

  .faq-answer-content li {
    padding-left: 25px;
  }
}

@media (max-width: 576px) {
  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer-content p,
  .faq-answer-content li {
    font-size: 15px;
  }
}

/* agents -page css */
.agent-hero {
  background: #030202;
  padding: 60px 0px 0px;
  background-image: url("../assets/images/agent-grid.png");
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: center;
  background-size: 110%;
  animation: zoom-in-out-agent 6s linear infinite alternate;
  height: 85vh;
}

@keyframes zoom-in-out-agent {
  0% {
    background-size: 50%;
  }

  100% {
    background-size: 80%;
  }
}
@keyframes zoom-in-out-agent1{
  0% {
    background-size: 200%;
  }

  100% {
    background-size: 150%;
  }

}
.av img {
  border-radius: 80px;
  position: absolute;
  
}
@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}
.av-1 img {
  top: 8%;
  left: 52%;
  transform: translate(-50%, 0%);
  width: 100%;
  max-width: 80px;
  animation: float 4s ease-in-out infinite;
}
.agent-hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}
.av-2 img {
  top: 30%;
  transform: translate(-50%, 0px);
  right: 5%;
  width: 112px;
  height: 112px;
  animation: float 4s ease-in-out infinite;
}
.av-3 img {
  right: 10%;
  bottom: 20px;
  width: 160px;
  height: 160px;
  animation: float 8s ease-in-out infinite;
}
.av-4 img {
  width: 160px;
  height: 160px;
  bottom: 10%;
  left: 10%;
  animation: float 5s ease-in-out infinite;
}
.av-5 img {
  width: 112px;
  height: 112px;
  top: 20%;
  left: 10%;
  animation: float 10s ease-in-out infinite;
}
.svc-tabs .nav-item {
  /* width: 20%;     */
}
.svc-tabs .nav-link {
  width: 100%;
  border-radius: 50px !important;
  color: #fff;
  padding: 16px 40px;
  text-transform: uppercase !important;
}
.svc-tabs .nav-tabs {
  padding: 10px;
  border-radius: 50px !important;
  background: rgb(255 255 255 / 8%);
  border-bottom: 0px;
  width: fit-content;
  display: inline-flex;
  border: none !important;
  backdrop-filter: blur(20px);
  box-shadow: inset 1px 1px 0px #e1dfdcc2, inset -2px -1px 1px #e1dfdc36;
}
.svc-tabs .nav-link:hover {
  color: #bd8a00 !important;
  border: none !important;
}
.svc-tabs .nav-link.active {
  background: rgb(255 255 255 / 8%) !important;
  color: #fff !important;
  border: none !important;
}
.svc-tabs .nav-tabs .nav-link:focus {
  border: none !important;
}
.svc-tabs .nav-link:focus-visible {
  border: none !important;
}
.nav-center {
  display: flex;
  justify-content: center;
}
.svc-tabs .tab-content {
  margin-top: 2rem !important;
}
.mrkt-blue {
  background-color: #437ab0 !important;
}
.mrkt-green {
  background-color: #848d21 !important;
}
.mrkt-purple {
  background-color: #8e4db2 !important;
}
.mrkt-blue .mrkt-left::before,
.mrkt-s-blue .mrkt-left::before {
  rotate: 180deg;
}
.mrkt-s-blue {
  background-color: #008ea4 !important;
}
.agent-hero .plan-tabs .nav-link.active {
  background: #ffc107 !important;
  color: #000000 !important;
  border: none !important;
}

.pricing-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid #2d2d2d;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #3d3d3d;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.plan-header {
  margin-bottom: 20px;
}

.plan-name {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 15px;
  text-align: start;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
}

.price-amount {
  font-family: "inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.price-period {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #999999;
  margin-left: 8px;
}

.custom-title {
  font-family: "inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 48px;
  text-align: left;
}

.plan-description {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 80px;
  text-align: start;
}

.cta-button {
  width: 100%;
  padding: 18px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  line-height: 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 30px;
}

.cta-button-yellow {
  background: #d4af37;
  color: #000000;
}

.cta-button-yellow:hover {
  background: #c49d2e;
  transform: scale(1.02);
  color: #000000;
}

.cta-button-dark {
  background: #2d2d2d;
  color: #d4af37;
  border: 2px solid #3d3d3d;
}

.cta-button-dark:hover {
  background: #3d3d3d;
  border-color: #d4af37;
  color: #d4af37;
}

.features-section {
  flex-grow: 1;
}

.feature-category {
  margin-bottom: 25px;
}

.category-title {
  font-family: "Inter", sans-serif;
  text-align: start;
  font-size: 14px;
  color: #999999;
  margin-bottom: 15px;
  font-weight: 500;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  /* border: 2px solid #4caf50; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon i {
  font-size: 10px;
  color: #4caf50;
}

.feature-icon.disabled {
  border-color: #444444;
}

.feature-icon.disabled i {
  color: #444444;
}

.feature-text {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.5;
  font-weight: 400;
  font-family: "inter";
  text-align: start !important;
}

.feature-text.disabled {
  color: #666666;
  text-decoration: line-through;
}

.divider {
  height: 1px;
  background: #2d2d2d;
  margin: 25px 0;
}

@media (max-width: 992px) {
  .pricing-card {
    margin-bottom: 30px;
  }

  .price-amount,
  .custom-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {

  .pricing-card {
    padding: 30px 20px;
  }

  .price-amount,
  .custom-title {
    font-size: 42px;
  }

  .plan-description {
    font-size: 14px;
    min-height: auto;
  }

  .feature-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .price-amount,
  .custom-title {
    font-size: 36px;
  }

  .cta-button {
    padding: 15px;
    font-size: 15px;
  }
}
.plan-hero {
  height: 100% !important;
  background-position-y: top !important;
  padding-top: 60px;
}
.book-hero .container {
  display: unset !important;
}
.cta-item {
  display: flex;
  align-items: center;
}
.form-container {
  background: #1a1c1e;
  border-radius: 30px;
  padding: 50px;
  max-width: 850px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 4rem auto 0rem;
}

.form-label {
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 12px;
  display: block;
  font-family: "Inter";
}

.form-control {
  background: rgb(255 255 255 / 8%) !important;
  border: 2px solid transparent !important;
  border-radius: 15px !important;
  color: #fff !important;
  font-size: 18px !important;
  padding: 10px 18px !important;
  transition: all 0.3s ease !important;
  font-family: "Inter", sans-serif;
}
.form-control::placeholder {
  color: #fff !important;
  font-family: "inter";
  font-weight: 400;
  font-size: 16px;
}

.form-control:focus {
  background: #404040;
  border-color: #d4af37;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: #808080;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #808080;
  font-size: 18px;
  width: 100%;
  pointer-events: none;
  max-width: 22px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper .form-control {
  padding-left: 50px !important;
}

.submit-button {
  background: #f7d049;
  color: #000000;
  border: none;
  border-radius: 50px;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  font-family: "inter";
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-button:hover {
  background: #c49d2e;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button .arrow-icon {
  width: 24px;
  height: 24px;
  /* border: 2px solid #000000; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.submit-button:hover .arrow-icon {
  transform: translateX(5px);
}

.form-group {
  margin-bottom: 25px;
}

/* Animation for form validation */
.form-control.is-invalid {
  border-color: #dc3545;
  animation: shake 0.3s;
}

.form-control.is-valid {
  border-color: #4caf50;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

.invalid-feedback {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  display: none;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Success message */
.success-message {
  background: #4caf50;
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  display: none;
  margin-top: 20px;
  animation: slideDown 0.5s ease;
}

.success-message.show {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading state */
.submit-button.loading {
  pointer-events: none;
  opacity: 0.7;
}

.submit-button.loading::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 3px solid #000000;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .agent-hero{
    animation: zoom-in-out-agent1 6s linear infinite alternate !important;
  }
  .svc-tabs .nav-tabs {
    padding: 10px;
        border-radius: 30px !important;
        flex-wrap: nowrap;
        overflow: scroll;
  }
  .av {
    display: none;
  }
  .plan-hero {
    padding-top: 60px;
  }
  .form-container {
    padding: 30px 25px;
    border-radius: 20px;
  }

  .form-label {
    font-size: 14px;
  }

  .form-control {
    font-size: 16px;
    padding: 15px 18px;
  }

  .input-wrapper .form-control {
    padding-left: 45px;
  }

  .input-icon {
    font-size: 16px;
    left: 18px;
  }

  .submit-button {
    font-size: 16px;
    padding: 18px 30px;
  }
}

@media (max-width: 576px) {

  .form-container {
    padding: 25px 20px;
  }

  .submit-button {
    font-size: 15px;
    padding: 16px 25px;
  }
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.image-container img:hover {
  transform: scale(1.02);
}

/* --- MODAL STYLES --- */

/* The Modal (background/overlay) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
  backdrop-filter: blur(5px); /* Optional: Adds a nice blur effect */
}

/* Modal Content/Box */
.modal-content {
  /* Use flexbox to center content */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* Position and size for centering */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 90%; /* Max width on small screens */
  max-width: 800px; /* Max width on large screens */
  padding: 20px;
}

/* The Close Button (x) */
.close-btn {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-end; /* Position X top right */
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.close-btn:hover,
.close-btn:focus {
  opacity: 1;
}

/* --- RESPONSIVE VIDEO HACK (16:9 Aspect Ratio) --- */

/* Container for the responsive video element */
.video-responsive {
  position: relative;
  overflow: visible;
  /* Maintain 16:9 aspect ratio (9/16 = 0.5625 = 56.25%) */
  /* padding-top: 56.25%; */
  width: 100%;
  height: 0;
  background: #000; /* Black background while loading */
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* The actual iframe inside the container */
.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100% !important;
  height: 100% !important;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: transparent !important;
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
  justify-content: center;
}
#video-frame {
  width: 100% !important;
}

/* sign-up page css */
.signup-section {
  background: #030202;
  padding: 60px 0px 0px;
  background-image: url(../assets/images/sign-bg.svg);
  background-repeat: no-repeat;
  background-position: top;
  animation: zoom-in-out 4s linear infinite alternate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow-x: hidden;
}

/* .signup-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/images/0_Grid_Square.png");
  background-size: 100px 100px;
  opacity: 0.03;
  pointer-events: none;
} */

.signup-section .signup-container {
  background: #1a1c1e;
  border-radius: 30px;
  padding: 48px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 1;
}

.signup-section .signup-header {
  text-align: center;
  margin-bottom: 40px;
}

.signup-section .signup-title {
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.signup-section .login-link-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #b0b0b0;
}

.signup-section .login-link {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.signup-section .login-link:hover {
  color: #c49d2e;
  text-decoration: underline;
}

.signup-section .google-signin-btn {
  background: rgb(255 255 255 / 8%);
  border: 2px solid #3a3a3a;
  border-radius: 15px;
  padding: 16px;
  width: 100%;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 35px;
}

.signup-section .google-signin-btn:hover {
  background: #3a3a3a;
  border-color: #4a4a4a;
  transform: translateY(-2px);
}

.signup-section .google-icon {
  width: 24px;
  height: 24px;
}

.signup-section .divider-container {
  display: flex;
  align-items: center;
  margin: 35px 0;
}

.signup-section .divider-line {
  flex: 1;
  height: 1px;
  background: #3a3a3a;
}

.signup-section .divider-text {
  font-family: "Inter", sans-serif;
  color: #808080;
  padding: 0 20px;
  font-size: 16px;
}

.signup-section .form-label {
  font-family: "Inter", sans-serif;
  color: #e0e0e0;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.signup-section .form-control,
.signup-section .form-select {
  background: hsl(0deg 0% 100% / 8%) !important;
  border: 2px solid transparent !important;
  border-radius: 15px !important;
  color: #fff !important;
  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  padding: 16px 20px !important;
  transition: all 0.3s ease !important;
}

.signup-section .form-control:focus,
.signup-section .form-select:focus {
  background: #3a3a3a !important;
  border-color: #d4af37 !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
  outline: none !important;
}

.signup-section .form-control::placeholder {
  color: #fff !important;
}

.signup-section .input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #808080;
  font-size: 16px;
  pointer-events: none;
}

.signup-section .input-wrapper {
  position: relative !important;
}

.signup-section .input-wrapper .form-control,
.signup-section .input-wrapper .form-select {
  padding-left: 50px !important;
}

.signup-section .form-group {
  margin-bottom: 25px !important;
}

.signup-section .checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.signup-section .custom-checkbox {
  width: 22px;
  height: 22px;
  background: #2d2d2d;
  border: 1px solid #d4af38;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.signup-section .custom-checkbox.checked {
  background: #d4af37;
  border-color: #d4af37;
}

.signup-section .custom-checkbox i {
  color: #000000;
  font-size: 12px;
  display: none;
}

.signup-section .custom-checkbox.checked i {
  display: block;
}

.signup-section .checkbox-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.5;
  cursor: pointer;
}

.signup-section .checkbox-label a {
  color: #d4af37;
  text-decoration: underline;
}

.signup-section .checkbox-label a:hover {
  color: #c49d2e;
}

.signup-section .submit-button {
  background: #d4af37;
  color: #000000;
  border: none;
  border-radius: 50px;
  padding: 20px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.signup-section .submit-button:hover {
  background: #c49d2e;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.signup-section .submit-button:active {
  transform: translateY(0);
}

.signup-section .arrow-icon {
  width: 24px;
  height: 24px;
  /* border: 2px solid #000000; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.signup-section .submit-button:hover .arrow-icon {
  transform: translateX(5px);
}

.signup-section .password-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #808080;
  cursor: pointer;
  transition: color 0.3s ease;
}

.signup-section .password-toggle:hover {
  color: #d4af37;
}
.signup-section{
    margin-top: 2rem;
  }
  .footer{
    background: #1a1c1e;
    padding: 80px 0px;
    border-top-left-radius: 64px;
    border-top-right-radius: 64px;
    margin-top: 1rem;
  }
  .avatar-hero-img img{
    width: 100%;
    max-width: 250px;
    -webkit-transform: translate3d(0, 0, 0);
  }
  .ftr-ul,
  .social-ful{
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 1.5rem 0rem;
    padding-left: 0px !important;
  }
  .ftr-ul li a,
  .social-ful li a{
    color: #fff;
    text-decoration: none;
  }

@media (max-width: 1024px){
  .av-4 img{
    left: 0%;
  }
}
@media (max-width: 768px) {
  .index-hero{
    padding-top: 60px !important;
  }
  .sign-body .main-header{
    padding: 0px !important;
  }
  .signup-section .google-signin-btn{
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
  }
  .signup-section .form-control{
    font-size: 14px !important;
    padding: 12px 20px !important;
  }
  .signup-section .form-control::placeholder{
    font-size: 14px !important;
  }
  .signup-section .divider-container{
    margin: 10px 0px;
  }
  .signup-section .form-label {
    font-size: 14px;    
    margin-bottom: 5px;
   
}
.signup-section .checkbox-wrapper{
  margin-bottom: 10px;
}
.signup-section .checkbox-label{
  font-size: 14px;
}
  .mrkt-avatar{
        width: 100%;
    display: block;
    max-width: 200px;
  }

  .signup-section{
    margin-top:3rem ;
  }
  
  .login-body .main-header,
  .sign-body .main-header{
  position: unset !important;
          padding: 20px 0px !important;
}
  .sign-logo {
    margin-top: 2rem;
  }
  .sign-body {
    padding: 0px 0px !important;
  }
  .signup-section {
    padding: 50px 0px;
        gap: 40px !important;
  }
  .signup-section .signup-container {
    padding: 32px 24px;
    border-radius: 20px;
  }
  .login-link-text{
    margin-bottom: 0px !important;
  }
  .signup-section .signup-header{
    margin-bottom: 15px;
  }

  .signup-title {
    font-size: 24px !important;
  }

  .login-link-text {
    font-size: 14px !important;
  }
  .signup-section .form-group {
    margin-bottom: 18px !important;
}
  .google-signin-btn {
    font-size: 16px;
    padding: 16px;
  }

  .form-control,
  .form-select {
    font-size: 15px;
    padding: 14px 18px;
  }

  .input-wrapper .form-control,
  .input-wrapper .form-select {
    padding-left: 45px;
  }

  .submit-button {
    font-size: 16px;
    padding: 18px;
  }
}

@media (max-width: 576px) {
  
  .signup-container {
    padding: 30px 20px;
  }

  .signup-title {
    font-size: 32px;
  }

  .google-signin-btn {
    font-size: 15px;
  }

  .checkbox-label {
    font-size: 14px;
  }
}
/* sign up page  */
.login-section {
  /* background: #000000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow-x: hidden; */
}

.login-section::before {
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 48%,
      #d4af37 48%,
      #d4af37 52%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      #d4af37 48%,
      #d4af37 52%,
      transparent 52%
    );
  background-size: 100px 100px;
  opacity: 0.03;
  pointer-events: none; */
}

.login-section .login-container {
  background: #1A1C1E;
  border-radius: 30px;
  padding: 48px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 1;
}

.login-section .login-header {
  text-align: center;
  margin-bottom: 20px;
}

.login-section .login-title {
  font-family: "Sora", sans-serif;
  font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.login-section .signup-link-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.login-section .signup-link {
  color: #d4af37;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-section .signup-link:hover {
  color: #c49d2e;
}

.login-section .google-signin-btn {
  background: rgb(255 255 255 / 8%);
  border: 2px solid #4a4a4a;
  border-radius: 15px;
  padding: 18px;
  width: 100%;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0px;
}

.login-section .google-signin-btn:hover {
  background: #4a4a4a;
  border-color: #5a5a5a;
  transform: translateY(-2px);
}

.login-section .google-icon {
  width: 24px;
  height: 24px;
}

.login-section .divider-container {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.login-section .divider-line {
  flex: 1;
  height: 1px;
  background: #4a4a4a;
}

.login-section .divider-text {
  font-family: "Inter", sans-serif;
  color: #808080;
  padding: 0 20px;
  font-size: 16px;
}

.login-section .form-label {
  font-family: "Inter", sans-serif;
  color: #e0e0e0;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.login-section .form-control {
  background: #3a3a3a;
  border: 2px solid transparent;
  border-radius: 15px;
  color: #b0b0b0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.login-section .form-control:focus {
  background: #404040;
  border-color: #d4af37;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  outline: none;
}

.login-section .form-control::placeholder {
  color: #808080;
}

.login-section .input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #808080;
  font-size: 16px;
  pointer-events: none;
}

.login-section .input-wrapper {
  position: relative;
}

.login-section .input-wrapper .form-control {
  padding-left: 50px;
}

.login-section .form-group {
  margin-bottom: 25px;
}

.login-section .remember-forgot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 20px;
}

.login-section .remember-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.login-section .custom-checkbox {
  width: 22px;
  height: 22px;
  background: #3a3a3a;
  border: 2px solid #d4af37;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.login-section .custom-checkbox.checked {
  background: #d4af37;
  border-color: #d4af37;
}

.login-section .custom-checkbox i {
  color: #000000;
  font-size: 12px;
  display: none;
}

.login-section .custom-checkbox.checked i {
  display: block;
}

.login-section .remember-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #e0e0e0;
  cursor: pointer;
}

.login-section .forgot-link {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.login-section .forgot-link:hover {
  color: #d4af37;
}

.login-section .submit-button {
  background: #d4af37;
  color: #000000;
  border: none;
  border-radius: 50px;
  padding: 20px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.frgt-a{
  color: #fff;
  font-size: 16px;
  text-decoration: none !important;
}
.login-a{
  width: 100%;
    margin-top: 1.5rem;
}
.login-section .submit-button:hover {
  background: #c49d2e;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.login-section .submit-button:active {
  transform: translateY(0);
}

.login-section .arrow-icon {
  width: 24px;
  height: 24px;
  /* border: 2px solid #000000; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.login-section .submit-button:hover .arrow-icon {
  transform: translateX(5px);
}

.login-section .password-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #808080;
  cursor: pointer;
  transition: color 0.3s ease;
}

.login-section .password-toggle:hover {
  color: #d4af37;
}
.sign-body .main-header,
.login-body .main-header{
  position: absolute  !important;
}

@media (max-width: 768px) {
  .star{
    gap: 2px !important;
  }
  .star li i {
    color: #f7d54a;
    font-size: 12px;
}
  .ad-btn{
            font-size: 16px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;

  }
  .login-section .login-container {
    padding: 40px 30px;
    border-radius: 20px;
  }

  .login-section .login-title {
    font-size: 36px;
  }

  .login-section .signup-link-text {
    font-size: 14px;
  }

  .login-section .google-signin-btn {
    font-size: 16px;
    padding: 16px;
  }

  .login-section .form-control {
    font-size: 15px;
    padding: 14px 18px;
  }

  .login-section .input-wrapper .form-control {
    padding-left: 45px;
  }

  .login-section .input-icon {
    font-size: 16px;
    left: 18px;
  }

  .login-section .submit-button {
    font-size: 16px;
    padding: 18px;
  }

  .login-section .remember-forgot-row {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .login-section {
    padding: 20px 0px;
  }

  .login-section .login-container {
    padding: 30px 20px;
  }

  .login-section .login-title {
    font-size: 32px;
  }

  .login-section .google-signin-btn {
    font-size: 15px;
  }

  .login-section .remember-label,
  .login-section .forgot-link {
    font-size: 14px;
  }
}

.newsletter-container {
    padding: 20px;
    text-align: center;
    width: 90%;
    max-width: 600px;
    DISPLAY: block;
    MARGIN: auto;
}

/* Title Styling */
.newsletter-title {
    color: white;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.newsletter-form {
    display: flex; 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    border-radius: 50px; 
    overflow: hidden; 
    background-color: rgba(255, 255, 255, 0.1); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.email-input {
    flex-grow: 1; 
    padding: 15px 25px;
    border: none;
    background: transparent; 
    color: white;
    font-size: 1em;
    outline: none;
}
.social-ful li a i{
  font-size: 22px;
}

/* Placeholder text color */
.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Sign Up Button Styling */
.signup-button {
    background-color: #f9d94c;
    color: #000;
    border: none;
    font-family: "inter";
    padding: 15px 30px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    transition: background-color 0.3s 
ease;
    flex-shrink: 0;
}

.signup-button:hover {
    background-color: #f9d94cc1; /* Slightly darker blue on hover */
}

/* --- Media Query for Responsiveness (e.g., small mobile screens) --- */
@media (max-width: 500px) {
    .newsletter-form {
        /* On very small screens, switch to a vertical stack for better usability */
        flex-direction: column;
        border-radius: 20px; /* Less rounded for a vertical stack */
    }

    .email-input {
        padding: 15px 20px;
        text-align: center;
        border-radius: 20px 20px 0 0; /* Round the top corners of the input */
    }

    .signup-button {
        padding: 15px;
        border-radius: 20px;
        width: auto;
        color: #000;
        font-size: 14px;
    }

    .newsletter-title {
        font-size: 1.5em;
    }
}

.mrkt-blue .ad-btn{
  color: #437ab0 !important;
}
.mrkt-green .ad-btn{
  color: #848d21 !important;
}
.mrkt-s-blue .ad-btn{
  color:#008ea4 !important;
}
.mrkt-purple .ad-btn{
  color: #8e4db2 !important;
}

/* Newsletter success pill */
.newsletter-success-message {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
