/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");

:root {
  --primary-color: #1d4ed8;
  --primary-light: #eff6ff;
  --secondary: #0b1f3a;
  --dark: #111827;
  --black: #000000;
  --light: #f8fafc;
  --accent: #f59e0b;
  --white: #ffffff;
  --white-light: rgba(255 255 255 / 80%);
  --surface: rgba(255, 255, 255, 0.8);
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --text: rgba(0 0 0 / 54%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none !important;
}

body {
  font-family: "Geist", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
  height: 48px;
  line-height: 1;
  min-width: 170px;
  text-align: center;
}

.theme-btn.fill {
  background: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color) !important;
}

.theme-btn.fill:hover {
  background: transparent;
  color: var(--primary-color);
}

.theme-btn.light {
  background: var(--primary-light);
  color: var(--primary-color);
  border: 1px solid var(--primary-light) !important;
}

.theme-btn.light:hover {
  background: var(--primary-color);
  color: var(--white);
}

.theme-btn.outline {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 10%) !important;
}

.theme-btn.outline:hover {
  background: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color) !important;
}

.theme-btn.outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white) !important;
}

.theme-btn.outline-white:hover {
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--white) !important;
}

.theme-btn.white {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--white) !important;
}

.theme-btn.white:hover {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white) !important;
}

.text-theme {
  color: var(--primary-color);
}

.title-box h2 {
  font-size: 50px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0;
}

.title-box p {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0;
  max-width: 800px;
}

.section-pd {
  padding: 80px 0px;
}

/* =============== HEADER CSS STARTS HERE =============== */

.web-header {
  width: 100%;
  height: auto;
  padding: 1rem 0px;
  border: 1px solid rgba(205, 211, 219, 12%);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  z-index: 999;
  transition: background 0.3s ease;
}

.web-header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: headerSlideDown 0.4s ease forwards;
}

@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.web-header .navbar li.nav-item a {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  padding: 0px 15px;
}

.web-header .navbar li.nav-item a:hover,
.web-header .navbar li.nav-item a.active {
  color: var(--primary-color);
}

.web-header .theme-btn {
  height: 36px;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 500;
  min-width: auto;
}

/* =============== HEADER CSS ENDS HERE =============== */

/* =============== BANNER CSS STARTS HERE =============== */

.banner-area {
  width: 100%;
  min-height: calc(100vh - 140px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 0px 120px;
  background: linear-gradient(
    142.5deg,
    #ffffff 20.23%,
    #eff6ff 71.62%,
    #60a5fa 91.02%
  );
}

.banner-area .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.banner-area .banner-content .banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.08);
}

.banner-area .banner-content .banner-title {
  font-size: 64px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 1rem;
}

.banner-area .banner-content .banner-title span {
  color: #60a5fa;
}

.banner-area .banner-content .banner-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 3.5rem;
  max-width: 750px;
  text-align: start;
}

.banner-area .banner-content .banner-btns {
  display: flex;
  gap: 20px;
}

.banner-image-box {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}

.main-img {
  position: relative;
  z-index: 1;
}

.banner-image-box .bnr-layer {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.layer1 {
  top: -1rem;
  left: -2rem;
  z-index: 1;
}

.layer2 {
  bottom: 1rem;
  left: -4rem;
  z-index: 1;
}

.layer3 {
  top: 0rem;
  right: -5rem;
  z-index: 0;
}

.layer4 {
  bottom: 3rem;
  right: -6rem;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* =============== BANNER CSS ENDS HERE =============== */

/* =============== COUNTER AREA CSS STARTS HERE =============== */

.counter-area {
  width: 100%;
  height: auto;
}

.counter-card {
  width: 100%;
  height: calc(100% - 1rem);
  margin-bottom: 1rem;
  padding: 2rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 182px;
  border-radius: 18px;
  overflow: hidden;
}

.counter-card.card1 {
  background-image: url("../images/investors-bg1.png");
}

.counter-card.card2 {
  background-image: url("../images/investors-bg2.png");
}

.counter-card.card3 {
  background-image: url("../images/investors-bg3.png");
}

.counter-content {
  width: 100%;
  height: auto;
  text-align: start;
}

.counter-title {
  font-size: 54px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.counter-description {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}

/* =============== COUNTER AREA CSS ENDS HERE =============== */

/* =============== MATCHMAKING AREA CSS STARTS HERE =============== */

.matchmaking-area {
  width: 100%;
  height: auto;
  background-color: rgba(33, 33, 33, 0.02);
}

.matchmaking-box {
  width: 100%;
  height: calc(100% - 1rem);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem 2rem 0;
  background: linear-gradient(180deg, #1e56a0 0%, #0b1f3a 72.12%);
  border: 1px solid rgba(33, 33, 33, 0.1);
  border-radius: 24px;
  transition: var(--transition);
}

.matchmaking-box:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.3);
}

.matchmaking-box.box3 {
  align-items: start;
  flex-direction: row;
}

.matchmaking-image {
  width: 100%;
  height: auto;
  text-align: center;
}

.matchmaking-content {
  width: 100%;
  height: auto;
  text-align: start;
}

.matchmaking-box.box3 .matchmaking-content {
  width: 50%;
  max-width: 100%;
}

.matchmaking-title {
  font-size: 60px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.matchmaking-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--white-light);
  margin-bottom: 0;
}

/* =============== MATCHMAKING AREA CSS ENDS HERE =============== */

/* =============== INVESTOR BRAND AREA CSS STARTS HERE =============== */

.investor-brand-area {
  width: 100%;
  height: auto;
}

.investor-brand-area .investor-brand-box {
  width: 100%;
  height: calc(100% - 1rem);
  margin-bottom: 1rem;
  padding: 2rem;
  overflow: hidden;
  background:
    linear-gradient(
      152.97deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #ffffff;
  border: 1px solid #ebebeb;
  backdrop-filter: blur(15.494px);
  border-radius: 30px;
  transition: var(--transition);
}

.investor-brand-area .investor-brand-box:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.1);
}

.investor-brand-area .investor-brand-box .investor-brand-content {
  width: 100%;
  height: auto;
  text-align: start;
}

.investor-brand-area
  .investor-brand-box
  .investor-brand-content
  .investor-brand-title {
  font-size: 30px;
  line-height: 2.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2rem;
}

.investor-brand-area .investor-brand-box .investor-brand-content ul li {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.investor-brand-area .investor-brand-box .investor-brand-content ul li i {
  color: var(--primary-color);
}

/* =============== INVESTOR BRAND AREA CSS ENDS HERE =============== */

/* =============== CTA AREA CSS STARTS HERE =============== */

.cta-area .cta-inner {
  width: 100%;
  height: auto;
  background-color: var(--dark);
  padding: 50px 0px;
  border-radius: 18px;
}

.cta-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.cta-content h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0px;
}

.cta-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0;
}

/* =============== CTA AREA CSS ENDS HERE =============== */

/* =============== TOOLS AREA CSS STARTS HERE =============== */

.tools-area {
  width: 100%;
  height: auto;
}

.tools-area .tool-card {
  width: 100%;
  height: calc(100% - 1rem);
  margin-bottom: 1rem;
  padding: 2rem;
  min-height: 182px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(
      152.97deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #ffffff;
  border: 1px solid #ebebeb;
  backdrop-filter: blur(15.494px);
  border-radius: 16px;
  transition: var(--transition);
}

.tools-area .tool-card:hover {
  transform: translateY(-5px);
}

.tools-area .tool-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--black);
}

.tools-area .tool-card p {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}

.tools-area .tool-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tools-area .tool-icon.icon1 {
  color: #3b82f6;
  background-color: #dbeafe;
}

.tools-area .tool-icon.icon2 {
  color: #7c3aed;
  background-color: #f3e8ff;
}

.tools-area .tool-icon.icon3 {
  color: #6366f1;
  background-color: #e0e7ff;
}

.tools-area .tool-icon.icon4 {
  color: #f97316;
  background-color: #ffedd5;
}

/* =============== TOOLS AREA CSS ENDS HERE =============== */

/*=============== JOURNEY AREA CSS STARTS HERE =============== */

.journey-area {
  width: 100%;
  height: auto;
  background-color: rgba(33, 33, 33, 0.02);
}

.journey-card {
  width: 100%;
  height: calc(100% - 1rem);
  margin-bottom: 1rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(33, 33, 33, 0.1);
  border-radius: 12px;
  transition: var(--transition);
  text-align: center;
}

.journey-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.journey-card .journey-icon {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.journey-card .journey-content {
  width: 100%;
  height: auto;
}

.journey-card .journey-content h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-card .journey-content p {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}

/* =============== JOURNEY AREA CSS ENDS HERE =============== */

/*=============== PRICING AREA CSS STARTS HERE =============== */

.pricing-area {
  width: 100%;
  height: auto;
}

.pricing-card {
  width: 100%;
  height: calc(100% - 1rem);
  margin-bottom: 1rem;
  padding: 3rem;
  text-align: center;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid #ebebeb;
  backdrop-filter: blur(15.494px);
  transition: var(--transition);
}

.pricing-card:hover,
.pricing-card.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.pricing-card:hover .pricing-card-header h3,
.pricing-card.active .pricing-card-header h3,
.pricing-card:hover .pricing-card-price,
.pricing-card.active .pricing-card-price,
.pricing-card:hover .pricing-card-body ul li,
.pricing-card.active .pricing-card-body ul li,
.pricing-card:hover .pricing-card-body ul li i,
.pricing-card.active .pricing-card-body ul li i {
  color: var(--white);
}

.pricing-card:hover .pricing-card-header p,
.pricing-card.active .pricing-card-header p {
  color: var(--white-light);
}

.pricing-card .pricing-card-header {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.pricing-card .pricing-card-price {
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.pricing-card .pricing-card-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0;
}

.pricing-card .pricing-card-header p {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}

.pricing-card .pricing-card-price span:nth-child(1),
.pricing-card .pricing-card-price span:nth-child(2) {
  font-size: 60px;
  font-weight: 400;
}

.pricing-card .pricing-card-price span:last-child {
  font-size: 24px;
  font-weight: 400;
}

.pricing-card .pricing-card-body ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
}

.pricing-card .pricing-card-body ul li i {
  color: var(--primary-color);
}

.pricing-card:hover .theme-btn.fill,
.pricing-card.active .theme-btn.fill {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--white) !important;
}

/* =============== PRICING AREA CSS ENDS HERE =============== */

/*=============== FAQ AREA CSS STARTS HERE =============== */

.faq-area {
  width: 100%;
  height: auto;
}

.faq-content {
  width: 100%;
  height: auto;
  background: var(--white);
  box-shadow: 0px 1px 5px rgba(45, 74, 170, 0.14);
  border-radius: 8px;
}

.faq-area .accordion-item {
  background-color: transparent;
  border: none !important;
  border-bottom: 1px solid #e5e7eb !important;
  border-radius: 0 !important;
  overflow: hidden;
  transition: var(--transition);
}

.faq-area .accordion-item:has(.show) {
  border: none !important;
}

.faq-area .accordion-button {
  background-color: transparent !important;
  color: var(--black) !important;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 25px;
  box-shadow: none !important;
}

.faq-area .accordion-button:not(.collapsed) {
  color: var(--black);
}

.faq-area .accordion-button::after {
  background-image: none;
  content: "\f077";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  transform: none;
  color: var(--black);
}

.faq-area .accordion-button:not(.collapsed)::after {
  content: "\f078";
}

.faq-area .accordion-body {
  padding: 0 25px 25px 25px;
  color: var(--text);
  font-size: 1.125rem;
  line-height: 1.6;
}

.faq-area .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
/* =============== FAQ AREA CSS ENDS HERE =============== */

/* =============== CTA AREA CSS STARTS HERE =============== */

.cta-area-one {
  width: 100%;
  height: auto;
}

.cta-area-one .cta-inner {
  width: 100%;
  height: auto;
  background-color: #0b1f3a;
  padding: 8.401rem 2rem;
  border-radius: 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-area-one .cta-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/cta-one-bg.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.cta-area-one .cta-content h2 {
  font-size: 58px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0;
}

.cta-area-one .cta-content p {
  font-size: 20px;
  font-weight: 400;
  color: var(--white-light);
  margin-bottom: 0;
}

.cta-area-one .cta-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

/* =============== CTA AREA CSS ENDS HERE =============== */

/* =============== FOOTER CSS STARTS HERE =============== */

.footer-area {
  width: 100%;
  height: auto;
  background-color: var(--white);
  color: var(--black);
}

.footer-area .text-light-custom {
  color: var(--black);
}

.footer-area .footer-brand p {
  max-width: 350px;
  font-size: 0.95rem;
  color: var(--black);
}

.footer-area .social-links a {
  color: var(--black);
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  margin-right: 12px;
  transition: var(--transition);
}

.footer-area .social-links a:hover {
  color: var(--white);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.footer-area .link-group h6 {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-area .link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-area .link-group ul li {
  margin-bottom: 12px;
}

.footer-area .link-group ul li a {
  color: var(--black);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-area .link-group ul li a:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 5px;
}

.footer-area .bottom-footer {
  border-top: 1px solid rgba(0, 0, 0, 10%);
}

.footer-area .copyright {
  font-size: 16px;
  font-weight: 500;
}

.footer-area .copyright a {
  color: var(--black);
}

.footer-area .copyright a:hover {
  color: var(--primary-color);
}

.footer-area .contact-links a {
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-area .contact-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-area .contact-links a i {
  color: var(--black);
}

/* =============== FOOTER CSS ENDS HERE =============== */

/* =============== INNER PAGE CSS STARTS HERE =============== */

.inner-banner {
  width: 100%;
  height: auto;
  padding: 120px 0 60px;
  background: linear-gradient(
    168deg,
    #ffffff 25.23%,
    #eff6ff 65.62%,
    #60a5fa 90.02%
  );
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-bottom: 10px solid #b9d9ff;
}

.inner-banner .breadcrumb {
  margin-bottom: 10px;
  font-size: 14px;
}

.inner-banner .breadcrumb a {
  text-decoration: none;
  color: var(--dark);
}

.inner-banner .breadcrumb a:hover {
  color: var(--primary-color);
}

.inner-banner .breadcrumb .separator {
  margin: 0 5px;
  color: var(--dark);
}

.inner-banner .breadcrumb .current {
  color: var(--primary-color);
  font-weight: 600;
}

.inner-banner h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
}

/* =============== HOW IT WORKS PAGE CSS STARTS HERE =============== */

.how-it-works-main .hiw-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.how-it-works-main .tab-btn {
  padding: 12px 30px;
  border: 2px solid var(--primary-light);
  background: var(--white);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.how-it-works-main .tab-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(29, 78, 216, 0.2);
}

.how-it-works-main .path-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.how-it-works-main .path-content.active {
  display: block;
}

.how-it-works-main .hiw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.how-it-works-main .hiw-card {
  background: var(--primary-light);
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}

.how-it-works-main .hiw-card:hover {
  transform: translateY(-10px);
  background: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.how-it-works-main .step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
  top: 20px;
  right: 20px;
}

.how-it-works-main .hiw-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary);
  position: relative;
}

.how-it-works-main .hiw-card p {
  color: var(--text);
  line-height: 1.5;
  font-size: 0.95rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-overview {
  width: 100%;
  height: auto;
}

.features-overview .features-flex {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.features-overview .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: var(--white);
  border: 1px solid rgba(33, 33, 33, 0.1);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.features-overview .feature-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.features-overview .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.features-overview .feature-text h4 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.features-overview .feature-text p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* =============== HOW IT WORKS PAGE CSS ENDS HERE =============== */

/* =============== OPPORTUNITIES PAGE CSS STARTS HERE =============== */

.opp-hero {
  text-align: center;
}

.opp-hero .opp-search-bar {
  background: var(--white);
  padding: 15px;
  border-radius: 50px;
  display: inline-flex;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.opp-hero .opp-search-bar input {
  border: none;
  padding: 10px 20px;
  outline: none;
  border-right: 1px solid #eee;
}

.opp-hero .search-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

.opp-categories {
  padding: 80px 0;
  background: rgba(33, 33, 33, 0.02);
}

.opp-categories .cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.opp-categories .cat-card {
  padding: 30px;
  background: var(--primary-light);
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.opp-categories .cat-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.opp-categories .cat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.opp-listings {
  background: var(--white);
}

.opp-listings .listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.opp-listings .listing-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}
.opp-listings .listing-card:hover {
  transform: translateY(-10px);
}

.opp-listings .card-image {
  height: auto;
  width: 100%;
  overflow: hidden;
}
.opp-listings .card-body {
  padding: 25px;
}

.opp-listings .tag {
  font-size: 0.7rem;
  background: var(--primary-light);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-flex;
}
.opp-listings .card-meta {
  margin: 20px 0;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* =============== OPPORTUNITIES PAGE CSS ENDS HERE =============== */

/* =============== INVESTOR PAGE CSS STARTS HERE =============== */

.investor-hero {
  background-color: var(--white);
  text-align: center;
}

.investor-hero .highlight {
  color: var(--primary-color);
}

.investor-hero .hero-stats-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.investor-hero .h-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-weight: 600;
  flex: 1;
  width: 100%;
  height: calc(100% - 1rem);
  margin-bottom: 1rem;
  padding: 2rem;
  overflow: hidden;
  background:
    linear-gradient(
      152.97deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #ffffff;
  border: 1px solid #ebebeb;
  backdrop-filter: blur(15.494px);
  border-radius: 12px;
  transition: var(--transition);
}

.investor-hero .h-stat:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.1);
}

.investor-hero .h-stat i {
  font-size: 2rem;
  color: var(--primary-color);
}

.investor-matching {
  background-color: var(--primary-light);
}

.investor-matching .matching-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.investor-matching .check-list {
  list-style: none;
  padding: 0;
}

.investor-matching .check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 500;
}

.investor-matching .check-list i {
  color: var(--primary-color);
}

.investor-matching .phone-mockup {
  background: var(--white);
  height: 350px;
  border-radius: 30px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.investor-matching .phone-mockup img {
  width: 45%;
}

.investor-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.investor-benefits .benefit-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  transition: var(--transition);
}

.investor-benefits .benefit-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
}

.investor-benefits .benefit-card i {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-color);
  background-color: var(--primary-light);
  margin-bottom: 20px;
}

.investor-benefits .benefit-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary);
}

.investor-benefits .benefit-card p {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--text);
}

/* =============== INVESTOR PAGE CSS ENDS HERE =============== */

/* =============== FEATURES PAGE CSS STARTS HERE =============== */

.feat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feat-profiles {
  background: var(--white);
}

.feat-messaging {
  background: var(--primary-light);
}

.feat-content .f-list-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.feat-content .f-list-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: var(--primary-light);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.feat-content .f-list-item h4 {
  color: var(--secondary);
  margin-bottom: 5px;
}

.feat-content .f-list-item p {
  color: var(--text);
  font-size: 0.95rem;
}

.feat-img .profile-card-mockup,
.feat-img .chat-mockup {
  height: 550px;
  border-radius: 20px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #ebebeb;
}

.feat-algorithm {
  background: var(--white);
  text-align: center;
}

.feat-algorithm .algo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feat-algorithm .algo-box {
  padding: 40px 30px;
  background: var(--primary-light);
  border-radius: 20px;
  transition: var(--transition);
}

.feat-algorithm .algo-box:hover {
  transform: translateY(-10px);
  background: var(--white);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.feat-algorithm .algo-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feat-algorithm .algo-box h4 {
  color: var(--secondary);
  margin-bottom: 15px;
}

/* =============== FEATURES PAGE CSS ENDS HERE =============== */

/* =============== COMMUNITY PAGE CSS STARTS HERE =============== */

.comm-discussions {
  background: var(--primary-light);
}

.comm-discussions .topic-list {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comm-discussions .topic-item {
  background: var(--white);
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.comm-discussions .topic-item:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.comm-discussions .topic-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.comm-discussions .topic-info {
  flex-grow: 1;
}

.comm-discussions .topic-info h4 {
  color: var(--secondary);
  margin-bottom: 5px;
}

.comm-discussions .topic-info p {
  color: var(--text);
  font-size: 0.9rem;
  margin: 0;
}

.comm-discussions .topic-meta {
  display: flex;
  gap: 15px;
  color: var(--text);
  font-size: 0.85rem;
}

.comm-stories {
  background: var(--white);
}
.comm-stories .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.comm-stories .story-card {
  background: var(--primary-light);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 20px;
}
.comm-stories .story-img {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.comm-stories .story-content i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

.comm-stories .story-content p {
  font-style: italic;
  color: var(--secondary);
  line-height: 1.6;
}

.comm-stories .story-content h5 {
  margin-top: 15px;
  color: var(--primary-color);
}

/* =============== COMMUNITY PAGE CSS ENDS HERE =============== */

/* =============== SAFETY RULES PAGE CSS STARTS HERE =============== */

.safe-hero {
  background: var(--white);
  text-align: center;
}

.safe-hero .highlight {
  color: var(--primary-color);
}

.safe-hero .safe-hero-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.safe-hero .safe-badge-item {
  background: var(--primary-light);
  padding: 30px;
  border-radius: 20px;
  width: 200px;
  transition: var(--transition);
  flex: 1;
}

.safe-hero .safe-badge-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.safe-hero .safe-badge-item h4 {
  font-size: 1rem;
  color: var(--secondary);
}

.safe-investor {
  background: var(--primary-light);
}

.safe-investor .rules-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.safe-investor .rule-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}
.safe-investor .rule-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
  top: 20px;
  right: 30px;
}

.safe-investor .rule-card h4 {
  color: var(--secondary);
  margin-bottom: 15px;
  position: relative;
}

.safe-investor .rule-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.safe-data {
  background: var(--white);
}

.safe-data .data-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.safe-data .data-features {
  margin-top: 30px;
}

.safe-data .df-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.safe-data .df-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.safe-data .data-visual {
  background: var(--primary-light);
  height: 300px;
  width: 300px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: var(--primary-color);
  opacity: 0.8;
  margin-left: auto;
}

/* =============== SAFETY RULES PAGE CSS ENDS HERE =============== */

/* =============== PRICING PLANS PAGE CSS STARTS HERE =============== */

.price-grid-area {
  background: var(--white);
}

.price-grid-area .pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.price-grid-area .price-card {
  padding: 40px;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  background: var(--white);
}

.price-grid-area .price-card.active {
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(29, 78, 216, 0.1);
  transform: scale(1.05);
}

.price-grid-area .popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.price-grid-area .card-head h4 {
  color: var(--secondary);
  margin-bottom: 20px;
}

.price-grid-area .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
}

.price-grid-area .price span:last-child {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 400;
}

.price-grid-area .card-feats {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.price-grid-area .card-feats li {
  padding: 12px 0;
  border-bottom: 1px solid #f8f8f8;
  color: var(--text);
}

.price-grid-area .card-feats li.disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

/* =============== PRICING PLANS PAGE CSS ENDS HERE =============== */

/* =============== CONTACT US PAGE CSS STARTS HERE =============== */

.contact-area {
  background-color: var(--white);
}

.contact-area .contact-sidebar {
  padding-right: 20px;
}

.contact-area .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--primary-light);
  border-radius: 15px;
  transition: var(--transition);
}

.contact-area .info-item:hover {
  transform: translateX(10px);
  background: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-area .icon-box {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-area .info-text h6 {
  margin: 0 0 5px 0;
  font-weight: 700;
  color: var(--secondary);
}

.contact-area .info-text p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-area .contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--primary-light);
}

.contact-area label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.9rem;
}

.contact-area .form-control-custom {
  width: 100%;
  padding: 15px 20px;
  background: var(--primary-light);
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}

.contact-area .form-control-custom:focus {
  background: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
}

.contact-area .form-control-custom::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

/* =============== CONTACT US PAGE CSS ENDS HERE =============== */

/* =============== PRIVACY POLICY PAGE CSS STARTS HERE =============== */

.privacy-area {
  background-color: var(--white);
  color: var(--dark);
}

.privacy-area .text-theme {
  color: var(--primary-color);
}

.privacy-area .privacy-sidebar {
  position: sticky;
  top: 100px;
  padding: 30px;
  background: var(--primary-light);
  border-radius: 20px;
}

.privacy-area .privacy-sidebar h5 {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(29, 78, 216, 0.1);
}

.privacy-area .privacy-sidebar .nav-link {
  color: var(--text);
  padding: 10px 0;
  font-weight: 500;
  transition: var(--transition);
}

.privacy-area .privacy-sidebar .nav-link:hover,
.privacy-area .privacy-sidebar .nav-link.active {
  color: var(--primary-color);
  padding-left: 10px;
}

.privacy-area .privacy-content-wrap {
  padding-left: 30px;
}

.privacy-area .intro-text {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 40px;
}

.privacy-area .privacy-section {
  margin-bottom: 50px;
  scroll-margin-top: 120px;
}

.privacy-area .privacy-section h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  font-weight: 700;
}

.privacy-area .privacy-section p,
.privacy-area .privacy-section li {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 10px;
}

.privacy-area .ai-highlight-box {
  background: var(--primary-light);
  padding: 30px;
  border-radius: 20px;
  border-left: 5px solid var(--primary-color);
}

.privacy-area .ai-highlight-box h3 {
  color: var(--primary-color);
}

.privacy-area .contact-box {
  background: var(--secondary);
  padding: 40px;
  border-radius: 20px;
  color: var(--white);
}

.privacy-area .contact-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.privacy-area .contact-box a {
  font-size: 1.2rem;
  text-decoration: none;
}

/* =============== PRIVACY POLICY PAGE CSS ENDS HERE =============== */

/* =============== TERMS & CONDITIONS PAGE CSS STARTS HERE =============== */

.terms-area {
  background-color: var(--white);
}

.terms-area .text-theme {
  color: var(--primary-color);
}

.terms-area .terms-sidebar {
  position: sticky;
  top: 100px;
  padding: 30px;
  background: var(--primary-light);
  border-radius: 20px;
}

.terms-area .terms-sidebar h5 {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.terms-area .terms-sidebar .nav-link {
  color: var(--text);
  padding: 12px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.terms-area .terms-sidebar .nav-link:last-child {
  border-bottom: none;
}

.terms-area .terms-sidebar .nav-link.active,
.terms-area .terms-sidebar .nav-link:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.terms-area .terms-content-wrap {
  padding-left: 20px;
}

.terms-area .last-updated {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}

.terms-area .terms-section {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}

.terms-area .terms-section h3 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 20px;
  font-weight: 700;
}

.terms-area .terms-section p,
.terms-area .terms-section li {
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 15px;
}

.terms-area .warning-box {
  background: #fff5f5;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #ef4444;
}

.terms-area .warning-box h3 {
  color: #ef4444;
  font-size: 1.3rem;
}

.terms-area .warning-box p strong {
  color: var(--dark);
}

/* =============== TERMS & CONDITIONS PAGE CSS ENDS HERE =============== */

.menu-btn {
  height: 35px;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: 500;
  min-width: auto;
  background: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  line-height: 0;
}

/* =============== SCROLL REVEAL ANIMATIONS =============== */

.scroll-reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-top {
  transform: translateY(-50px);
}

.reveal-bottom {
  transform: translateY(50px);
}

.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* =============== INNER PAGE CSS ENDS HERE =============== */

@media (min-width: 1600px) {
  .footer-area .row .col-lg-4:nth-child(2) {
    padding-left: 16rem;
  }
  .footer-area .row .col-lg-4:nth-child(3) {
    padding-left: 18rem;
  }
}

@media (max-width: 1440px) {
  .banner-area .banner-content .banner-title {
    font-size: 54px;
  }
}

@media (max-width: 1199px) {
  .banner-area .banner-content .banner-title {
    font-size: 48px;
  }
  .title-box h2 {
    font-size: 40px;
  }
  .matchmaking-title {
    font-size: 48px;
  }
  .investor-brand-title {
    font-size: 28px;
  }
  .cta-area-one .cta-content h2 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .how-it-works-main .tab-btn {
    padding: 7px 20px !important;
    font-size: 15px;
  }
  .opp-hero .opp-search-bar {
    gap: 10px !important;
  }
  .opp-hero .search-btn {
    padding: 12px 13px !important;
    font-size: 15px !important;
  }
  .section-pd {
    padding: 60px 0;
  }
  .banner-area {
    padding: 100px 0 60px;
  }

  .banner-area .banner-content .banner-badge {
    font-size: 12px;
  }

  .banner-area .banner-content .banner-title {
    font-size: 40px;
  }

  .banner-area .banner-content .banner-description {
    margin-bottom: 2rem;
  }

  .title-box h2 {
    font-size: 34px;
  }

  .matchmaking-title {
    font-size: 40px;
  }

  .matchmaking-box {
    gap: 2rem;
    padding: 1.5rem 1.5rem 0;
  }

  .matchmaking-box.box3 {
    flex-direction: column;
  }

  .investor-brand-box {
    margin-bottom: 2rem;
    padding: 2rem;
  }

  .cta-area .cta-content h2,
  .cta-area .cta-content h3 {
    font-size: 36px;
  }

  .pricing-card {
    margin-bottom: 2rem;
    padding: 2rem;
  }

  .journey-card {
    margin-bottom: 2rem;
  }

  .banner-image-box .bnr-layer {
    display: none;
  }

  .cta-area-one .cta-inner {
    padding: 3rem 2rem;
  }

  .cta-area-one .cta-content h2 {
    font-size: 40px;
  }

  .faq-area .accordion-button {
    font-size: 1rem;
  }

  .opp-categories .cat-grid,
  .opp-listings .listings-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feat-split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .feat-split.reverse {
    direction: ltr;
  }

  .feat-content .f-list-item {
    flex-direction: column;
    align-items: center;
  }

  .feat-algorithm .algo-grid {
    grid-template-columns: 1fr;
  }

  .safe-investor .rules-flex {
    grid-template-columns: 1fr;
  }

  .safe-data .data-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .safe-data .df-item {
    justify-content: center;
    text-align: left;
  }

  .contact-area .contact-sidebar {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact-area .contact-form-wrapper {
    padding: 30px 20px;
  }

  .privacy-area .privacy-content-wrap {
    padding-left: 0;
  }

  .terms-area .terms-content-wrap {
    padding-left: 0;
  }

  .terms-area .terms-section {
    margin-bottom: 40px;
  }

  .price-grid-area .pricing-wrapper {
    grid-template-columns: 1fr;
  }

  .price-grid-area .price-card.active {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .tools-area .tool-card {
    flex-direction: column;
    text-align: left;
    padding: 30px;
    margin-top: 1.5rem;
  }

  .tools-area .tool-image {
    margin-top: 20px;
    width: 100px;
    align-self: flex-end;
  }

  .contact-area .contact-form-wrapper {
    padding: 30px 20px;
  }

  .how-it-works-main .hiw-intro h3 {
    font-size: 1.8rem;
  }

  .how-it-works-main .hiw-grid {
    grid-template-columns: 1fr;
  }

  .features-overview .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .features-overview .feature-icon {
    margin-bottom: 10px;
  }

  .opp-hero .opp-search-bar {
    flex-direction: column;
    border-radius: 20px;
    width: 100%;
  }

  .opp-categories .cat-grid,
  .opp-listings .listings-grid {
    grid-template-columns: 1fr;
  }

  .investor-matching .matching-wrapper {
    grid-template-columns: 1fr;
  }

  .investor-hero .hero-stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .investor-cta .cta-btns {
    flex-direction: column;
  }

  .comm-hero .comm-hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .comm-stories .story-grid {
    grid-template-columns: 1fr;
  }

  .comm-discussions .topic-item {
    flex-direction: column;
    text-align: center;
  }

  .comm-events .event-card {
    flex-direction: column;
  }

  .comm-events .event-date {
    flex-direction: row;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .section-pd {
    padding: 40px 0;
  }

  .banner-area .banner-content .banner-title {
    font-size: 34px;
  }

  .banner-area .banner-content .banner-description {
    font-size: 16px;
  }

  .title-box h2 {
    font-size: 28px;
  }

  .counter-title {
    font-size: 40px;
  }

  .matchmaking-title {
    font-size: 32px;
  }

  .investor-brand-title {
    font-size: 24px;
  }

  .investor-brand-box ul li span {
    font-size: 14px;
  }

  .cta-area .cta-content h2,
  .cta-area .cta-content h3 {
    font-size: 28px;
  }

  .three-step-area .step-container::before {
    display: none;
  }

  .three-step-area .step-item {
    margin-bottom: 40px;
  }

  .cta-area-one .cta-content h2 {
    font-size: 32px;
  }

  .cta-area-one .cta-btns {
    flex-direction: column;
  }

  .cta-area-one .cta-btns .theme-btn {
    width: 100%;
  }

  .tool-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575px) {
  .banner-area .banner-content .banner-title {
    font-size: 28px;
  }

  .banner-area .banner-content .banner-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .banner-area .banner-content .banner-btns .theme-btn {
    width: 100%;
  }

  .matchmaking-title {
    font-size: 28px;
  }

  .pricing-card-price .amount {
    font-size: 2.5rem;
  }
}
