/* Reset margins, paddings, borders */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}
/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}
.container {
  overflow-x: hidden;
}
/* Remove outlines on focus (Optional, but good for custom focus styles) */
:focus {
  outline: none;
}

/* Remove default button and input styles */
button,
input,
select,
textarea {
  border: none;
  outline: none;
  background: none;
  font: inherit;
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Basic body styles */
body {
  line-height: 1.5;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}
/* Hide Offcanvas Toggle Button on large screens */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

/* Show the horizontal navbar menu only on large screens */
@media (max-width: 991.98px) {
  .desktop-menu {
    display: none !important;
  }
}
/* ///////////////// */
.navbar-brand img {
  margin-top: 10px;
}
.navbar-nav {
  margin-top: 13px;
}
.nav-link {
  margin-left: 53px;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  position: relative;
  transition: color 0.4s ease, transform 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: #48fbff;
  transition: width 0.4s ease;
}

.nav-link:hover {
  color: #48fbff;
}

.nav-link:hover::after {
  width: 100%;
}

/* 👇 Active state (adds same effect as hover) */
.nav-link.active {
  color: #48fbff !important;
}

.nav-link.active::after {
  width: 100%;
}


.main-hero-section {
  width: 100%;
  height: 500px;
  background: linear-gradient(
    100.32deg,
    rgba(0, 0, 0, 0.1) 0.52%,
    rgba(163, 253, 255, 0.1) 25.39%,
    rgba(164, 253, 255, 0.55) 61.15%,
    rgba(72, 251, 255, 0.1) 86.54%,
    rgba(0, 0, 0, 0.05) 107.79%
  );
  margin-top: 15px;
  border-radius: 15px;
}
.main-hero-inner{
  height: 300px;
}
.hero-title h1 {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 50px;
  color: #000000;
  text-align: center;
}
.hero-section-content p {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 28px;
  text-align: center;
}
.button-grp {
  margin-top: 45px;
}
.regster-btn {
  width: 206px;
  height: 56px;
  background: #48fbff;
  color: #000000;
  border-radius: 30px;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 20px;
  margin-right: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 4px 10px rgba(72, 251, 255, 0.4);
}

.regster-btn:hover {
  background: #00dfe4;
  transform: scale(1);
  box-shadow: 0 6px 15px rgba(0, 223, 228, 0.6);
}

.talk-btn {
  width: 206px;
  height: 56px;
  background: #ffffff;
  color: #000000;
  border-radius: 30px;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 20px;
  margin-left: 5px;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.talk-btn:hover {
  background: #000000;
  color: #ffffff;
  transform: scale(1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
.about-content-text h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 32px;
  color: #000000;
  margin-top: 90px;
  margin-bottom: 0;
  line-height: 160%;
}
.text-bg {
  font-family: "Roboto Slab", serif;
  font-weight: 600;
  font-size: 32px;
  background: linear-gradient(
    100.32deg,
    rgba(0, 0, 0, 0.1) 0.52%,
    rgba(163, 253, 255, 0.1) 25.39%,
    rgba(164, 253, 255, 0.55) 61.15%,
    rgba(72, 251, 255, 0.1) 86.54%,
    rgba(0, 0, 0, 0.05) 107.79%
  );
}
.about-content-text h6 {
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  font-size: 26px;
  margin-top: 46px;
  margin-bottom: 0;
}
.about-paragraph {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 0;
}
.list-paraghraph p {
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 0;
}
.knowMore-btn button {
  width: 154px;
  height: 46px;
  background: #48fbff;
  border-radius: 20px;
  margin-top: 36px;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 19px;
}
.about-section-img img {
  margin-top: 25px;
}
.box-wrapper {
  max-width: 315px;
  width: 100%;
  height: 168px;
  border-radius: 20px;
  border: 1px solid #00c6cb;
  background: #eefeff;
  transition: transform 0.4s ease;
}

.box-wrapper:hover {
  transform: translateY(-10px);
}

.box-content {
  display: flex;
  justify-content: center;
  align-items: center; /* Vertically center icon and text */
  gap: 8px; /* Space between icon and text */
  padding: 15px;
}
.about-section-second h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 32px;
  color: #000000;
  margin-bottom: 0;
  line-height: 160%;
  margin-top: 167px;
}
.about-section-second p {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 150%;
  margin-top: 41px;
}
.box-row {
  margin-top: 35px;
}
.box-content h6 {
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  margin: 0;
}
.contact-form-wrapper {
  margin-bottom: 86px;
}
.app-connect-wrapper {
  width: 100%;
  height: 414px;
  border-radius: 15px;
  background-image: url("../assets/image/connect-container-bg.png");
  margin-top: 100px;
}
.app-connect-content h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 26px;
  color: #000000;
  line-height: 150%;
}
.app-connect-content p {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 150%;
  margin-bottom: 0;
}
.lg-horizontal {
  display: block;
}

.btn-title span {
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 18px;
}
.download-btn {
  width: 250px;
  height: 56px;
  border-radius: 30px;
  background: #48fbff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 20px;
  margin-top: 5px;
}
.main-page-btn-grp {
  gap: 10px;
  margin-top: 34px;
}
.forMarketers-row {
  margin-top: 100px;
}
.earn-money-section h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 32px;
  color: #000000;
  margin-top: 100px;
  line-height: 160%;
  margin-bottom: 0;
}
.earn-money-section p {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 28px;
  margin-top: 40px;
}
.sm-horizontal {
  display: none;
}

.leads-box-wrapper {
  max-width: 315px;
  width: 100%;
  height: 168px;
  border-radius: 20px;
  background: #48fbffcc;
  display: flex;
  align-items: center; /* Vertically center icon and text */
}
.table-wrapper {
  width: 100%;
  height: auto;
  border: 0.6px solid #00c6cb;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 63px;
}
.table-cell.col-4 {
  border-right: none !important;
}
.table-row:last-child {
  border-bottom: none;
}

.table-wrapper {
  width: 100%;
  border: 0.6px solid #00c6cb;
  border-radius: 5px;
  overflow: hidden;
}
.table-col-1 {
  font-family: "Crimson Pro", serif;
  font-weight: 00;
  font-size: 28px;
}

.table-row {
  display: flex;
  height: 95px;
  border-bottom: 0.6px solid #00c6cb;
}

.table-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 0.6px solid #00c6cb;
  font-size: 16px;
}

/* Column widths */
.col-1 {
  width: 100%;
  max-width: 268px;
}

.col-2,
.col-3,
.col-4 {
  max-width: 350px;
  width: 100%;
}
.table-col-one {
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  font-size: 24px;
}
.company-points-wrapper {
  display: flex;
  align-items: center;
  gap: 20px; /* Optional: space between icon and text */
}
.company-points-wrapper img {
  width: 30px; /* adjust size as needed */
  height: 30px;
}
.company-points-wrapper h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 24px;
}
/* Align col-2 content to the start (left) */
.col-2,
.col-3,
.col-4 {
  justify-content: flex-start !important;
  padding-left: 53px; /* Optional: space from left border */
}

.connecting-add-title h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 32px;
  color: #000000;
  margin-top: 80px;
  line-height: 160%;
}
.for-bussiness-left {
  max-width: 650px;
  width: 100%;
  height: 414px;
  background: linear-gradient(
    95.38deg,
    rgba(72, 251, 255, 0.1) 8.85%,
    rgba(225, 225, 225, 0.1) 143.96%
  );
  border-radius: 15px;
}
.for-bussiness-points h6 {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  margin-left: 29px;
}

.for-bussiness-points h6 span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: #00c6cb;
  color: #000000;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 20px;
  border-radius: 5px;
}
.for-bussiness-img img {
  max-width: 100%;
  height: 414px;
}
.for-bussiness-img-sm img {
  display: none;
}
.for-bussiness-title h6 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 20px;
  margin-top: 75px;
  margin-bottom: 18px;
}
.for-marketers-title h6 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 20px;
  margin-top: -32px;
}
.network-leads-title h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 32px;
  color: #000000;
  line-height: 150%;
  margin-top: 100px;
}
.box-group-wrapper {
  max-width: 307px;
  width: 100%;
  height: 160px;
  border: 0.5px solid #00c6cb;
  background: #fbfbfb;
  border-radius: 10px;
}
.box-group-wrapper {
  display: flex;
  align-items: center;
}
.box-group-wrapper h6 {
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  margin-bottom: 0;
}
.next-work-points-2 {
  margin-top: 32px;
}
.box-group-wrapper-2 {
  max-width: 419px;
  width: 100%;
  height: 160px;
  border: 0.5px solid #00c6cb;
  background: #fbfbfb;
  border-radius: 10px;
}
.box-group-wrapper-2 h6 {
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  margin-bottom: 0;
}
.app-conect-section {
  width: 100%;
  height: 414px;
  border-radius: 15px;
  background: linear-gradient(
    95.38deg,
    rgba(72, 251, 255, 0.1) 8.85%,
    rgba(225, 225, 225, 0.1) 143.96%
  );
  margin-top: 167px;
  margin-bottom: 202px;
  position: relative;
}

.man-with-phone {
  position: absolute;
  bottom:-15px;
}

.app-conect-title h5 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 35px;
  color: #000000;
  line-height: 150%;
}

.app-connect-content-two p {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 20px;
}
.footer-container {
  width: 100%;
  height: 400px;
  background: #48fbff;
}
.for-bussiness-points {
  padding-top: 57px;
}

/* ABOUT_PAGE */
.aboutPage-about-title h2 {
  margin-top: 117px;
  margin-bottom: 65px;
}
.aboutPage-about-left p {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 25px;
}
.about-text-bg {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 32px;
  display: inline-block;
  background: linear-gradient(
    100.32deg,
    rgba(0, 0, 0, 0.1) 0.52%,
    rgba(163, 253, 255, 0.1) 25.39%,
    rgba(164, 253, 255, 0.55) 61.15%,
    rgba(72, 251, 255, 0.1) 86.54%,
    rgba(0, 0, 0, 0.05) 107.79%
  );
}
.about-img img {
max-width: 100%;
height: auto;
}
.about-img-sm img {
  max-width: 90%;
  height: auto;
  margin: auto;
  display: none;
}
.aboutPage-about-right p {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 30px;
}
.aboutPage-about-right h3 {
  margin-bottom: 40px;
}
.what-we-belive-img img {
  margin-top: 60px;
}
.benifit-title h3 {
  margin-top: 153px;
}
.benifit-row-1 {
  margin-top: 63px;
}
.benifit-row-2 {
  margin-top: 32px;
  margin-bottom: 129px;
}
/* Collaborate */
.partner-with-us h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 32px;
  color: #000000;
  margin-top: 86px;
  line-height: 160%;
}
.partner-with-us img{}
.main-paragraph {
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  font-size: 24px;
  margin-top: 40px;
}
.connecting-people-row {
  margin-top: 92px;
}
.collaborate-text-bg {
  font-family: Roboto Slab, serif;
  font-weight: 600;
  font-size: 32px;
  background: linear-gradient(
    100.32deg,
    rgba(0, 0, 0, 0.1) 0.52%,
    rgba(163, 253, 255, 0.1) 25.39%,
    rgba(164, 253, 255, 0.55) 61.15%,
    rgba(72, 251, 255, 0.1) 86.54%,
    rgba(0, 0, 0, 0.05) 107.79%
  );
}
.sec-paragraph {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 24px;
  margin-top: 50px;
}
.how-work-content span {
  width: 38px;
  height: 35px;
  background: #48fbff;
  display: inline-block;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 18px;
}
.how-work-content h6 {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 22px;
  color: #000000;
  margin-top: 5px;
}

.how-work-content p {
  font-family: "Roboto Slab", serif;
  font-weight: 300;
  font-size: 18px;
  color: #000000;
  margin-top: 19px;
}
.contact-section-title h4 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  margin-top: 116px;
  line-height: 160%;
}
.connecting-people-row-2 {
  margin-top: 44px;
}
.contact-container {
  width: 100%;
  height: 627px;
  background: #48fbff0d;
  margin-bottom: 116px;
  margin-top: 69px;
  padding: 60px 60px 100px 60px;
  overflow: hidden;
}

.custom-input {
  max-width: 590px;
  width: 100%;
  height: 42px;
  border-radius: 4px;
}
.custom-textarea {
  max-width: 590px;
  width: 100%;
  height: 275px;
}
.form-label {
  margin-top: 13px;
  margin-bottom: 0;
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 15px;
}
.businessName {
  margin-top: 0px;
  margin-bottom: 0;
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 15px;
}
.form-btn {
  width: 100%;
  height: 42px;
  background: #00edf3;
  margin-top: 38px;
  border-radius: 7px;
  font-family: "Crimson Pro", serif;
  font-weight: 700;
  font-size: 15px;
}
input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.contact-details p {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1px;
  margin-left: 20px;
  display: flex;
  align-items: center;
}
.contact-from-left h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  margin-top: 98px;
  line-height: 160%;
  margin-bottom: 0;
}
.contact-from-left h6 {
  font-family: "Crimson Pro", serif;
  font-weight: 300;
  font-size: 18px;
  margin-top: 19px;
}
.number-wrapper {
  margin-bottom: 33px;
}
.main-form-container {
  max-width: 100%;
  height: 571px;
  background: #48fbff0d;
  overflow-x: hidden !important;
  margin-top: 53px;
}
.main-custom-from {
  width: 650px;
  height: 42px;
  margin-bottom: 10px;
}
.main-custom-textarea {
  height: 129px;
  margin-bottom: 10px;
}
.main-submit-btn {
  width: 100%;
  background: #48fbff;
  height: 42px;
  border-radius: 7px;
  font-family: "Crimson Pro", serif;
  font-weight: 700;
  font-size: 15px;
}
.contact-details {
  margin-top: 63px;
}

input::placeholder,
textarea::placeholder {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 15px;
}
.footer-logo img {
  margin-left: 60px;
  padding-top: 58px;
}
.quick-link-title h5,
.address-title h5 {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 22px;
  margin-top: 79px;
}
.for-marketers-title-sm {
  display: none;
}
.footer-ul-link {
  margin-top: 35px;
  padding-left: 20px;
}
.footer-ul-link li {
  font-family: "Crimson Pro", serif;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 18px;
}
.address-wrapper p {
  margin-bottom: 0;
  margin-top: 26px;
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 20px;
}
.main-address-wrapper {
  margin-top: 10px;
}
.address-wrapper img {
  margin-top: 26px;
}
.social-container {
  position: relative;
  margin-top: 30px;
}
.socialMediaIcon-container {
  width: 140px;
  height: 25px;
  background: #48fbff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.socialMediaIcon-container img {
  max-width: 100%;
  height: auto;
  z-index: 10;
}
.map-container {
  margin-bottom: 86px;
}
.rights-reserved-section h5 {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 20px;
  margin-top: 10px;
}
.map-container {
  margin-top: 86px;
}
.table-heading {
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0;
}
.bussiness-card-wrapper {
  width: 100%;
  height: 300px;
  box-shadow: 0px 4px 4px 0px #00000040;
  cursor: pointer;
}
.custom-card {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
}

.custom-card-left {
  /* background-color: #00c8d7; */
  color: white;
  width: 65%;
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.custom-card-right {
  width: 50%;
  position: relative;
}
.custom-card-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  /* background-color: #00c8d7; */
  clip-path: ellipse(100% 100% at 100% 50%);
  z-index: 1;
}

.custom-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  position: relative;
  clip-path: ellipse(100% 100% at 100% 50%);
}
.custom-card-left p {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  padding-left: 15px;
}
.card-container {
  padding: 40px 20px 40px 40px;
}
.modal-content {
  box-shadow: 0px 4px 4px 0px #00000040;
}
.card-container-2 {
  padding: 40px 40px 40px 20px;
}
.company-log img {
  max-width: 100%;
  height: auto;
}
.custom-card-title h6{
  font-family: "Roboto", sans-serif;
  font-size:20px;
  font-weight: 600;
}