/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body {
  font-family: "DM Sans", sans-serif !important;
}
/* HEADER */
.core-connect-navbar-section-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  z-index: 1100;
  transition:
    box-shadow 0.35s ease,
    padding 0.25s ease,
    transform 0.35s ease;
  box-shadow: none;
  will-change: box-shadow, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Header remains black when page is scrolled */
.core-connect-navbar-section-header.core-connect-navbar-section-header--scrolled {
  background: #000;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}

/* CONTAINER */
.core-connect-navbar-section-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LOGO */
.core-connect-navbar-section-logo {
  position: relative;
  width: 25%;
}

/* FLOATING LOGO */
.core-connect-dashboard-page-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-connect-dashboard-page-logo img {
  width: 150px;
  padding: 10px;
}

/* FLOATING LOGO */
.core-connect-navbar-section-logo img {
  width: 130px;
  /* background: #fff; */
  /* padding: 10px; */
  /* border-radius: 15px; */
  /* position: absolute; */
  /* bottom: -88px; */
  /* z-index: 99; */
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); */
}

/* NAV */
.core-connect-navbar-section-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-bottom: 0;
}

.core-connect-navbar-section-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.core-connect-navbar-section-nav ul li a:hover {
  color: #914c47;
}

/* BUTTON */
.core-connect-navbar-section-btn a {
  background: #c79a5b;
  padding: 15px 38px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

/* TOGGLE */
.core-connect-navbar-section-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* SIDEBAR */
.core-connect-navbar-section-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: 0.3s;
  z-index: 999;
}

.core-connect-navbar-section-sidebar ul {
  list-style: none;
  margin-top: 40px;
}

.core-connect-navbar-section-sidebar ul li {
  margin-bottom: 20px;
}

.core-connect-navbar-section-sidebar ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

/* CLOSE BTN */
.core-connect-navbar-section-close {
  font-size: 28px;
  cursor: pointer;
  text-align: right;
}

/* MOBILE BTN */
.core-connect-navbar-section-mobile-btn {
  display: inline-block;
  background: #c79a5b;
  padding: 10px;
  color: #fff;
  border-radius: 5px;
}

/* ACTIVE SIDEBAR */
.core-connect-navbar-section-sidebar.active {
  right: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .core-connect-navbar-section-nav,
  .core-connect-navbar-section-btn {
    display: none;
  }

  .core-connect-navbar-section-toggle {
    display: block;
  }

  .core-connect-navbar-section-logo img {
    width: 70px;
    /* background: #fff; */
    /* padding: 10px; */
    /* border-radius: 15px; */
    /* position: absolute; */
    /* bottom: 0; */
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); */
  }
}

/* SPACE FOR FLOATING LOGO */
.core-connect-navbar-section-after {
  height: 60px;
}

/* SECTION */
/* SECTION */
.core-connect-banner-section {
  position: relative;
  width: 100%;
  height: 90dvh;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  /* VERY IMPORTANT */

  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d")
    center/cover no-repeat;

  animation: core-connect-banner-section-bgZoom 14s ease-in-out infinite
    alternate;
}

/* BACKGROUND ZOOM */
@keyframes core-connect-banner-section-bgZoom {
  /* from{ transform:scale(1); }
  to{ transform:scale(1.08); } */
}

/* OVERLAY */
.core-connect-banner-section-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

/* CONTENT */
.core-connect-banner-section-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 20px;
  z-index: 2;
  margin-top: 120px;
}

/* TITLE */
.core-connect-banner-section-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;

  opacity: 0;
  animation: core-connect-banner-section-fadeClassic 1.2s ease forwards;
}

/* SUBTITLE */
.core-connect-banner-section-subtitle {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 30px;

  opacity: 0;
  animation: core-connect-banner-section-fadeClassic 1.2s ease forwards;
  animation-delay: 0.5s;
}

/* BUTTONS */
.core-connect-banner-section-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;

  opacity: 0;
  animation: core-connect-banner-section-fadeClassic 1.2s ease forwards;
  animation-delay: 1s;
}

/* BUTTON */
.core-connect-banner-section-btn {
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
}

/* PRIMARY BUTTON */
.core-connect-banner-section-btn.primary {
  background: #c79a5b;
  color: #fff;
}

.core-connect-banner-section-btn.primary:hover {
  background: #a87d45;
}

/* SECONDARY BUTTON */
.core-connect-banner-section-btn.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.core-connect-banner-section-btn.secondary:hover {
  background: #fff;
  color: #000;
}

/* CLASSIC FADE */
@keyframes core-connect-banner-section-fadeClassic {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .core-connect-banner-section-title {
    font-size: 40px;
  }

  .core-connect-banner-section-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .core-connect-banner-section {
    height: 90vh;
  }

  .core-connect-banner-section-title {
    font-size: 28px;
  }

  .core-connect-banner-section-subtitle {
    font-size: 14px;
  }
}

/* SECTION */
.core-connect-founding-principal-section {
  padding: 80px 5%;
  background: #f8f8f8;
  /* background: #000000; */
  overflow: hidden;
}

/* CONTAINER */
.core-connect-founding-principal-section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT */
.core-connect-founding-principal-section-left {
  flex: 1;
  min-width: 300px;

  opacity: 0;
  transform: translateY(40px);
  animation: core-connect-founding-principal-section-fade 1.2s ease forwards;
}

/* TAG */
.core-connect-founding-principal-section-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c79a5b;
  text-transform: uppercase;
}

/* TITLE */
.core-connect-founding-principal-section-title {
  font-size: 62px;
  color: #123a6b;
  margin: 15px 0;
  line-height: 1.2;
}

/* TEXT */
.core-connect-founding-principal-section-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* RIGHT */
.core-connect-founding-principal-section-right {
  /* flex:1; */
  min-width: 300px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  animation: core-connect-founding-principal-section-fade 1.2s ease forwards;
  animation-delay: 0.4s;
}

/* CARD */
.core-connect-founding-principal-section-card {
  /* background: #fff; */
  padding: 30px;
  border-radius: 6px;
  text-align: center;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  position: relative;
  /* max-width: 350px; */
  /* height: 400px; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

/* CORNER DESIGN */
.core-connect-founding-principal-section-card::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #c79a5b;
  border-left: 2px solid #c79a5b;
}

/* IMAGE */
.core-connect-founding-principal-section-image img {
  width: 100%;
  margin-bottom: 0px;
  box-shadow: 0px 7px 20px #00000025;
}

p.overlay-text-on-image {
  font-size: 32px;
  background-color: #eeeef0 !important;
  color: #003979;
  padding: 30px 0;
  position: absolute;
  text-align: center;
  display: block;
  width: 89.5%;
  bottom: 34px;
  z-index: 1001;
}

/* QUOTE */
.core-connect-founding-principal-section-quote {
  font-style: italic;
  color: #123a6b;
  font-size: 16px;
}

/* ANIMATION */
@keyframes core-connect-founding-principal-section-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .core-connect-founding-principal-section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .core-connect-navbar-section-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100% !important;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: 0.3s;
    z-index: 9999;
  }
  .core-connect-navbar-section-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 20px !important;
  }
  .core-connect-founding-principal-section-container {
    flex-direction: column;
    text-align: center;
  }

  p.overlay-text-on-image {
    font-size: 19px;
    background-color: #eeeef0 !important;
    color: #003979;
    padding: 30px 0;
    position: absolute;
    text-align: center;
    display: block;
    width: 87%;
    bottom: 34px;
    z-index: 1001;
  }
}

/* SECTION */
.core-connect-ascension-section {
  padding: 80px 5%;
  background: #f4f4f4;
  text-align: center;
  overflow: hidden;
}

/* HEADER */
.core-connect-ascension-section-header h2 {
  font-size: 38px;
  color: #123a6b;
}

.core-connect-ascension-section-underline {
  width: 80px;
  height: 3px;
  background: #c79a5b;
  margin: 12px auto 60px;
}

/* CONTAINER */
.core-connect-ascension-section-container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}

/* CARD */
.core-connect-ascension-section-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  width: 260px;
  position: relative;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;

  /* animation */
  opacity: 0;
  transform: translateY(40px);
  animation: core-connect-ascension-section-fade 1s ease forwards;
}

/* STAGGERED ANIMATION DELAY */
.core-connect-ascension-section-card:nth-child(1) {
  animation-delay: 0.2s;
}

.core-connect-ascension-section-card:nth-child(2) {
  animation-delay: 0.4s;
}

.core-connect-ascension-section-card:nth-child(3) {
  animation-delay: 0.6s;
}

.core-connect-ascension-section-card:nth-child(4) {
  animation-delay: 0.8s;
}

/* STAGGERED POSITION */
.core-connect-ascension-section-card:nth-child(1),
.core-connect-ascension-section-card:nth-child(3) {
  /* margin-top:-30px; */
  height: 264px;
  width: 320px;
}

.core-connect-ascension-section-card:nth-child(2),
.core-connect-ascension-section-card:nth-child(4) {
  width: 320px;
  margin-top: 30px;
}

/* NUMBER */
.core-connect-ascension-section-number {
  display: inline-block;
  background: #123a6b;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* TITLE */
.core-connect-ascension-section-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

/* TEXT */
.core-connect-ascension-section-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* BOTTOM GOLD LINE */
.core-connect-ascension-section-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #c79a5b;
  border-radius: 0 0 12px 12px;
}

/* HOVER EFFECT */
.core-connect-ascension-section-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ANIMATION */
@keyframes core-connect-ascension-section-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .core-connect-ascension-section-card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .core-connect-ascension-section-card {
    width: 100%;
    margin-top: 0 !important;
  }

  .core-connect-ascension-section-header h2 {
    font-size: 30px;
  }
}

/* SECTION */
.core-connect-counter-section {
  padding: 60px 5%;
  background: linear-gradient(90deg, #3b6f0f, #1e3d06);
  color: #fff;
}

/* CONTAINER */
.core-connect-counter-section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

/* ITEM */
.core-connect-counter-section-item {
  flex: 1;
  min-width: 200px;
}

/* NUMBER */
.core-connect-counter-section-number {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.core-connect-counter-section-item p {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .core-connect-counter-section-number {
    font-size: 36px;
  }
}

@media (max-width: 500px) {
  .core-connect-counter-section-container {
    flex-direction: column;
  }
}

/* SECTION */
.core-connect-founding-architechs-section {
  padding: 80px 5%;
  background: #ffffff;
  text-align: center;
}

/* TITLE */
.core-connect-founding-architechs-section-title {
  font-size: 36px;
  color: #123a6b;
  margin-bottom: 50px;
}

/* CONTAINER */
.core-connect-founding-architechs-section-container {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CARD */
.core-connect-founding-architechs-section-card {
  position: relative;
  width: 450px;
  height: 420px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

/* IMAGE */
.core-connect-founding-architechs-section-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* DEFAULT DARK OVERLAY */
.core-connect-founding-architechs-section-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 30, 60, 0.85),
    rgba(0, 30, 60, 0.2)
  );
  transition: 0.5s ease;
}

/* CONTENT */
.core-connect-founding-architechs-section-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  text-align: left;
  z-index: 2;
}

.core-connect-founding-architechs-section-content h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.core-connect-founding-architechs-section-content p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.core-connect-founding-architechs-section-content span {
  color: #c79a5b;
  font-size: 14px;
}

/* ✨ HOVER LIGHT BLUE EFFECT */
.core-connect-founding-architechs-section-card:hover
  .core-connect-founding-architechs-section-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 60, 120, 0.95),
    rgba(100, 170, 255, 0.3)
  );
}

/* IMAGE ZOOM */
.core-connect-founding-architechs-section-card:hover img {
  transform: scale(1.08);
}

/* TEXT SLIGHT MOVE */
.core-connect-founding-architechs-section-card:hover
  .core-connect-founding-architechs-section-content {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .core-connect-founding-architechs-section-card {
    width: 45%;
  }
}

@media (max-width: 576px) {
  .core-connect-ascension-section-card:nth-child(1) {
    width: 100%;
  }

  .core-connect-ascension-section-card:nth-child(2) {
    width: 100%;
    height: 264px;
  }

  .core-connect-ascension-section-card:nth-child(4) {
    width: 100%;
    height: 264px;
  }

  .core-connect-ascension-section-card:nth-child(3) {
    width: 100%;
  }

  .core-connect-founding-architechs-section-card {
    width: 100%;
  }

  .core-connect-founding-architechs-section-title {
    font-size: 28px;
  }
}

/* SECTION */
.core-connect-knowledge-architecture-section {
  padding: 80px 5%;
  background: #f4f4f4;
}

/* HEADER */
.core-connect-knowledge-architecture-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* TEXT */
.core-connect-knowledge-architecture-section-text {
  max-width: 500px;
}

.core-connect-knowledge-architecture-section-text h2 {
  font-size: 36px;
  color: #123a6b;
  margin-bottom: 10px;
}

.core-connect-knowledge-architecture-section-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* LINE */
.core-connect-knowledge-architecture-section-line {
  flex: 1;
  height: 2px;
  background: #c79a5b;
  min-width: 100px;
}

/* CONTAINER */
.core-connect-knowledge-architecture-section-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CARD */
.core-connect-knowledge-architecture-section-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  width: 330px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;

  /* animation */
  opacity: 0;
  transform: translateY(30px);
  animation: core-connect-knowledge-architecture-section-fade 1s ease forwards;
}

/* STAGGER */
.core-connect-knowledge-architecture-section-card:nth-child(1) {
  animation-delay: 0.2s;
}

.core-connect-knowledge-architecture-section-card:nth-child(2) {
  animation-delay: 0.4s;
}

.core-connect-knowledge-architecture-section-card:nth-child(3) {
  animation-delay: 0.6s;
}

.core-connect-knowledge-architecture-section-card:nth-child(4) {
  animation-delay: 0.8s;
}

/* ICON */
.core-connect-knowledge-architecture-section-icon {
  font-size: 24px;
  color: #c79a5b;
  margin-bottom: 10px;
}

/* TITLE */
.core-connect-knowledge-architecture-section-card h3 {
  font-size: 18px;
  color: #123a6b;
  margin-bottom: 8px;
}

/* TEXT */
.core-connect-knowledge-architecture-section-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* HOVER */
.core-connect-knowledge-architecture-section-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* ANIMATION */
@keyframes core-connect-knowledge-architecture-section-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .core-connect-knowledge-architecture-section-card {
    width: 45%;
  }
}

@media (max-width: 576px) {
  .core-connect-knowledge-architecture-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .core-connect-knowledge-architecture-section-line {
    width: 100%;
  }

  .core-connect-knowledge-architecture-section-card {
    width: 100%;
  }

  .core-connect-knowledge-architecture-section-text h2 {
    font-size: 28px;
  }
}

/* SECTION */
.core-connect-testimonials-section {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

/* TITLE */
.core-connect-testimonials-section-title {
  font-size: 34px;
  color: #123a6b;
  margin-bottom: 50px;
}

/* SLIDER */
.core-connect-testimonials-section-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.core-connect-testimonials-section-track {
  display: flex;
  gap: 25px;
  width: max-content;
  padding: 50px 0;
  animation: core-connect-testimonials-scroll 25s linear infinite;
}

/* CARD */
.core-connect-testimonials-section-card {
  flex: 0 0 350px;

  /* ✨ Transparent Glass Effect */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  padding: 30px;
  border-radius: 12px;
  text-align: left;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  color: #fff;
  /* important for visibility */
}

/* TEXT */
.core-connect-testimonials-section-card p {
  font-size: 15px;
  color: #123a6b;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* USER */
.core-connect-testimonials-section-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.core-connect-testimonials-section-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.core-connect-testimonials-section-user h4 {
  font-size: 14px;
  color: #123a6b;
}

.core-connect-testimonials-section-user span {
  font-size: 12px;
  color: #777;
}

/* INFINITE SCROLL */
@keyframes core-connect-testimonials-scroll {
  0% {
    transform: translateX(0);
  }

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .core-connect-testimonials-section-card {
    flex: 0 0 280px;
  }

  .core-connect-testimonials-section-title {
    font-size: 28px;
  }
}

/* SECTION */
.core-connect-faqs-section {
  padding: 60px 5%;
  background: #f5f5f5;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* TITLE */
.core-connect-faqs-section-title {
  text-align: center;
  font-size: 28px;
  color: #123a6b;
  margin-bottom: 30px;
}

/* ITEM */
.core-connect-faqs-section-item {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  width: 50%;
}

/* QUESTION */
.core-connect-faqs-section-question {
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.core-connect-faqs-section-icon {
  transition: 0.3s;
}

/* ANSWER */
.core-connect-faqs-section-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: 0.3s ease;
  color: #555;
}

/* ACTIVE */
.core-connect-faqs-section-item.active .core-connect-faqs-section-answer {
  max-height: 200px;
  padding: 15px;
}

.core-connect-faqs-section-item.active .core-connect-faqs-section-icon {
  transform: rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .core-connect-faqs-section-title {
    font-size: 22px;
  }

  .core-connect-faqs-section-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
  }
}

/* SECTION */
.core-connect-cta-section {
  padding: 80px 5%;
  background: #ffffff;
  text-align: center;
}

/* CONTAINER */
.core-connect-cta-section-container {
  max-width: 800px;
  margin: auto;
}

/* TITLE */
.core-connect-cta-section-title {
  font-size: 48px;
  color: #123a6b;
  margin-bottom: 15px;
  font-style: italic;
}

/* SUBTITLE */
.core-connect-cta-section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

/* BUTTON */
.core-connect-cta-section-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #c79a5b;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* HOVER */
.core-connect-cta-section-btn:hover {
  background: #a87d45;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .core-connect-cta-section-title {
    font-size: 28px;
  }

  .core-connect-cta-section-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .core-connect-cta-section {
    padding: 60px 20px;
  }

  .core-connect-cta-section-title {
    font-size: 24px;
  }
}

/* SECTION */
.core-connect-footer-section {
  background: #000;
  padding: 60px 5% 20px;
  color: #555;
}

/* CONTAINER */
.core-connect-footer-section-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* COLUMN */
.core-connect-footer-section-col {
  flex: 1;
  min-width: 220px;
}

/* LOGO */
.core-connect-footer-section-logo {
  width: 120px;
  margin-bottom: 15px;
}

/* TEXT */
.core-connect-footer-section-text {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

/* HEADINGS */
.core-connect-footer-section-col h4 {
  font-size: 14px;
  color: #c79a5b;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* LIST */
.core-connect-footer-section-col ul {
  list-style: none;
  padding-left: 0 !important;
}

.core-connect-footer-section-col ul li {
  margin-bottom: 10px;
}

.core-connect-footer-section-col ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.core-connect-footer-section-col ul li a:hover {
  color: #123a6b;
}

/* SUBTEXT */
.core-connect-footer-section-subtext {
  font-size: 13px;
  margin-bottom: 10px;
}

/* INPUT GROUP */
.core-connect-footer-section-input-group {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  max-width: 260px;
}

.core-connect-footer-section-input-group input {
  border: none;
  padding: 10px;
  flex: 1;
  outline: none;
  font-size: 14px;
}

.core-connect-footer-section-input-group button {
  background: #c79a5b;
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}

/* BOTTOM */
.core-connect-footer-section-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .core-connect-footer-section-container {
    flex-direction: column;
    text-align: center;
  }

  .core-connect-footer-section-input-group {
    margin: auto;
  }
}

/* SECTION */
.core-connect-contact-page {
  padding: 80px 5%;
  background: #f5f5f5;
}

/* CONTAINER */
.core-connect-contact-page-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* FORM */
.core-connect-contact-page-form {
  flex: 1;
  min-width: 300px;
  padding: 50px;
  background-color: #fff !important;
}

.core-connect-contact-page-form h2 {
  margin-bottom: 20px;
  color: #123a6b;
}

/* INPUT ROW */
.core-connect-contact-page-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.core-connect-contact-page-row input {
  flex: 1;
}

/* INPUTS */
.core-connect-contact-page-form input,
.core-connect-contact-page-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 15px;
  outline: none;
  font-size: 14px;
}

p.contact-form-right-side-title-main-text {
  color: #a87d45;
  font-size: 42px;
  font-weight: 700;
  margin: 50px 0 30px 0;
}

/* BUTTON */
.core-connect-contact-page-form button {
  background: #c79a5b;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.core-connect-contact-page-form button:hover {
  background: #a87d45;
}

/* DETAILS */
.core-connect-contact-page-details {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* padding: 50px;
  background-color: #fff !important; */
}

/* ITEM */
.core-connect-contact-page-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* ICON */
.core-connect-contact-page-icon {
  font-size: 22px;
  color: #c79a5b;
}

/* TEXT */
.core-connect-contact-page-item h4 {
  color: #123a6b;
  margin-bottom: 5px;
}

.core-connect-contact-page-item p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

/* MAP */
.core-connect-contact-page-map {
  /* margin-top:50px; */
  border-radius: 10px;
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .core-connect-contact-page-container {
    flex-direction: column;
  }

  .core-connect-contact-page-row {
    flex-direction: column;
  }
}

.core-connect-contact-page-icon img {
  width: 60px;
  height: auto;
  background-color: #c79a5b;
  padding: 10px;
}

/* SECTION */
.core-connect-breadcrump {
  position: relative;
  width: 100%;
  height: 60vh;
  margin-top: -60px;
  background: url("https://images.unsplash.com/photo-1497366216548-37526070297c")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* OVERLAY */
.core-connect-breadcrump-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* CONTENT */
.core-connect-breadcrump-content {
  position: relative;
  color: #fff;
  max-width: 800px;
  padding: 20px;
  z-index: 2;
}

/* TITLE */
.core-connect-breadcrump-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* LINE */
.core-connect-breadcrump-line {
  width: 80px;
  height: 3px;
  background: #c79a5b;
  margin: 0 auto 20px;
}

/* SUBTITLE */
.core-connect-breadcrump-subtitle {
  font-size: 16px;
  color: #ddd;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .core-connect-breadcrump {
    height: 50vh;
  }

  .core-connect-breadcrump-title {
    font-size: 32px;
  }

  .core-connect-breadcrump-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .core-connect-breadcrump-title {
    font-size: 26px;
  }
}

.core-connect-main-content-main-div {
  background-color: #fcf9f4;
}

.core-connect-members-form-container {
  max-width: 970px;
  margin: auto;
  padding: 20px;
  background: #fff;
}

/* Section */
.core-connect-members-form-section {
  margin-bottom: 40px;
  margin-top: 40px;
}

.core-connect-members-form-heading {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e2df;
  padding-bottom: 10px;
}

/* Row */
.core-connect-members-form-row {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

/* Input Group */
.core-connect-members-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.core-connect-members-form-group label {
  font-size: 16px;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 6px;
}

/* Inputs */
.core-connect-members-form-group input {
  padding: 12px;
  border: none;
  border-bottom: 2px solid #dcd7d2;
  background: #efebe7;
  outline: none;
  font-size: 14px;
}

.core-connect-members-form-group input:focus {
  border-color: #a47c2a;
}

/* Radio */
.core-connect-members-form-radio {
  margin-top: 20px;
}

.core-connect-members-form-radio label {
  font-size: 16px;
  color: #555;
}

.core-connect-members-form-radio-options {
  margin-top: 10px;
  display: flex;
  gap: 30px;
}

.core-connect-members-form-radio-options input {
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .core-connect-members-form-row {
    flex-direction: column;
  }

  .core-connect-members-form-heading {
    font-size: 18px;
  }
}

.core-connect-membership-price-section-container {
  max-width: 970px;
  margin: auto;
  padding: 20px;
  background: #f5f1ec;
}

/* Header */
.core-connect-membership-price-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.core-connect-membership-price-section-header h2 {
  font-size: 24px;
  color: #333;
}

.core-connect-membership-price-section-fee p {
  font-size: 15px;
  color: #888;
  text-align: right;
  font-weight: 700;
}

.core-connect-membership-price-section-fee span {
  font-size: 30px;
  color: #a47c2a;
  font-weight: bold;
  float: right;
}

/* Subtitle */
.core-connect-membership-price-section-subtitle {
  margin: 20px 0 10px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #888;
}

/* Plan Box */
.core-connect-membership-price-section-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid #e5e2df;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.core-connect-membership-price-section-plan.active {
  border-color: #a47c2a;
}

.core-connect-membership-price-section-plan input {
  margin-right: 10px;
}

.core-connect-membership-price-section-plan span {
  font-size: 16px;
  color: #555;
}

.core-connect-membership-price-section-plan strong {
  color: #a47c2a;
  font-size: 30px;
}

/* Total Box */
.core-connect-membership-price-section-total-box {
  margin-top: 30px;
  padding: 60px 25px;
  background: #fff;
}

.core-connect-membership-price-section-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e2df;
  padding-top: 20px;
}

.core-connect-membership-price-section-total-row p {
  font-style: italic;
  color: #333;
}

.core-connect-membership-price-section-due small {
  font-size: 10px;
  color: #888;
  display: block;
  text-align: right;
}

.core-connect-membership-price-section-due h2 {
  color: #a47c2a;
  font-size: 38px;
}

/* Terms */
.core-connect-membership-price-section-terms {
  margin: 20px 0;
  font-size: 12px;
  color: #777;
}

.core-connect-membership-price-section-terms input {
  margin-right: 8px;
}

/* Button */
.core-connect-membership-price-section-btn {
  width: 100%;
  padding: 15px;
  border: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: linear-gradient(to right, #7a5a15, #d4a847);
}

/* Responsive */
@media (max-width: 768px) {
  .core-connect-membership-price-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .core-connect-membership-price-section-total-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .core-connect-membership-price-section-due {
    text-align: left;
  }
}

.core-connect-membership-title-discription-section-container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  /* background: #f5f1ec; */
}

/* Tagline */
.core-connect-membership-title-discription-section-tagline {
  font-size: 12px;
  letter-spacing: 3px;
  color: #6c7a89;
  margin-bottom: 10px;
  text-align: center;
}

/* Title */
.core-connect-membership-title-discription-section-title {
  font-size: 64px;
  text-align: center;
  font-weight: 500;
  color: #8b6b2c;
  margin: 0 0 15px;
  line-height: 1.1;
}

/* Description */
.core-connect-membership-title-discription-section-description {
  font-size: 15px;
  color: #666;
  /* padding: 0 300px; */
  line-height: 1.6;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .core-connect-membership-title-discription-section-title {
    font-size: 40px;
  }

  .core-connect-membership-title-discription-section-description {
    font-size: 14px;
  }

  .core-connect-membership-title-discription-section-tagline {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .core-connect-membership-title-discription-section-title {
    font-size: 30px;
  }

  .core-connect-membership-title-discription-section-container {
    padding: 30px 15px;
  }
}

.core-connect-about-us-page-banner {
  position: relative;
  width: 100%;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 60px 20px;

  /* ✅ Background Image */
  background-image: url("assets/about-us-banner.png");
  /* change path */
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* ✅ Gradient Overlay (IMPORTANT PART) */
.core-connect-about-us-page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.9) 40%,
    rgba(255, 255, 255, 0.6) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

/* Content */
.core-connect-about-us-page-banner-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-left: 60px;
}

/* Subtitle */
.core-connect-about-us-page-banner-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c49b2a;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

/* Title */
.core-connect-about-us-page-banner-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f3b5b;
  margin: 0;
}

/* Line */
.core-connect-about-us-page-banner-line {
  width: 50px;
  height: 3px;
  background-color: #c49b2a;
  margin: 15px 0 20px;
}

/* Description */
.core-connect-about-us-page-banner-description {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Tablet */
@media (max-width: 992px) {
  .core-connect-about-us-page-banner-container {
    padding-left: 30px;
  }

  .core-connect-about-us-page-banner-title {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .core-connect-about-us-page-banner {
    background-position: center;
    padding: 40px 15px;
  }

  /* Full white overlay on mobile */
  .core-connect-about-us-page-banner-overlay {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
  }

  .core-connect-about-us-page-banner-container {
    padding-left: 0;
    text-align: center;
    margin: auto;
  }

  .core-connect-about-us-page-banner-title {
    font-size: 28px;
  }

  .core-connect-about-us-page-banner-line {
    margin: 15px auto;
  }
}

.core-connect-about-us-page-mission-vision {
  padding: 80px 20px;
  background-color: #f5f6f8;
}

.core-connect-about-us-page-mission-vision-wrapper {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* Common Card */
.core-connect-about-us-page-mission-vision-card {
  flex: 1;
  min-width: 280px;
  padding: 40px 35px;
  border-radius: 4px;
  position: relative;
  transition: 0.3s ease;
}

/* Vision Card (Light) */
.core-connect-about-us-page-mission-vision-card-vision {
  background-color: #f1f1f1;
  border-left: 4px solid #1f3b5b;
}

/* Mission Card (Dark) */
.core-connect-about-us-page-mission-vision-card-mission {
  background-color: #0e3a66;
  color: #fff;
}

/* Icon */
.core-connect-about-us-page-mission-vision-icon {
  font-size: 20px;
  margin-bottom: 15px;
  color: #c49b2a;
}

/* Title */
.core-connect-about-us-page-mission-vision-title {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Text */
.core-connect-about-us-page-mission-vision-text {
  font-size: 14px;
  line-height: 1.7;
  color: inherit;
}

/* Hover Effect */
.core-connect-about-us-page-mission-vision-card:hover {
  transform: translateY(-5px);
}

/* Tablet */
@media (max-width: 992px) {
  .core-connect-about-us-page-mission-vision-wrapper {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .core-connect-about-us-page-mission-vision-card {
    padding: 30px 20px;
  }

  .core-connect-about-us-page-mission-vision-title {
    font-size: 22px;
  }
}

.core-connect-about-us-page-member-imperative-section {
  padding: 80px 20px;
  background: #fff;
}

.core-connect-about-us-page-member-imperative-section-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT SIDE */
.core-connect-about-us-page-member-imperative-section-left {
  flex: 1;
}

.core-connect-about-us-page-member-imperative-section-title {
  font-size: 32px;
  color: #1f3b5b;
  margin-bottom: 20px;
}

.core-connect-about-us-page-member-imperative-section-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.core-connect-about-us-page-member-imperative-section-note {
  background: #eee;
  padding: 15px;
  font-size: 13px;
  color: #a58a2a;
  border-left: 3px solid #c49b2a;
}

/* RIGHT GRID */
.core-connect-about-us-page-member-imperative-section-grid {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.core-connect-about-us-page-member-imperative-section-card {
  background: #fff;
  padding: 25px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.core-connect-about-us-page-member-imperative-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* NUMBER */
.core-connect-about-us-page-member-imperative-section-number {
  font-size: 22px;
  font-weight: 700;
  color: #c49b2a;
  display: block;
  margin-bottom: 10px;
}

/* CARD TITLE */
.core-connect-about-us-page-member-imperative-section-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f3b5b;
}

/* CARD TEXT */
.core-connect-about-us-page-member-imperative-section-card p {
  font-size: 13px;
  color: #666;
}

/* TABLET */
@media (max-width: 992px) {
  .core-connect-about-us-page-member-imperative-section-wrapper {
    flex-direction: column;
  }

  .core-connect-about-us-page-member-imperative-section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .core-connect-about-us-page-member-imperative-section-grid {
    grid-template-columns: 1fr;
  }

  .core-connect-about-us-page-member-imperative-section-title {
    font-size: 26px;
  }
}

.core-connect-about-us-page-distinction {
  background: #0b2f4a;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.core-connect-about-us-page-distinction-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.core-connect-about-us-page-distinction-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c49b2a;
  display: block;
  margin-bottom: 10px;
}

.core-connect-about-us-page-distinction-title {
  font-size: 36px;
  margin-bottom: 60px;
}

/* Grid */
.core-connect-about-us-page-distinction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Item */
.core-connect-about-us-page-distinction-item {
  padding: 20px;
  transition: 0.3s ease;
}

/* Icon */
.core-connect-about-us-page-distinction-icon {
  width: 55px;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 10px;
  font-size: 20px;
  color: #c49b2a;
}

/* Title */
.core-connect-about-us-page-distinction-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Text */
.core-connect-about-us-page-distinction-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Hover */
.core-connect-about-us-page-distinction-item:hover {
  transform: translateY(-6px);
}

/* Tablet */
@media (max-width: 992px) {
  .core-connect-about-us-page-distinction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .core-connect-about-us-page-distinction-grid {
    grid-template-columns: 1fr;
  }

  .core-connect-about-us-page-distinction-title {
    font-size: 28px;
  }
}

.core-connect-about-us-page-our-community {
  padding: 80px 20px;
  background: #fff;
}

.core-connect-about-us-page-our-community-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE BOX */
.core-connect-about-us-page-our-community-image-box {
  position: relative;
  flex: 1;
}

.core-connect-about-us-page-our-community-image {
  width: 100%;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

/* Decorative Shapes */
.core-connect-about-us-page-our-community-shape {
  position: absolute;
  background: #e6e7ea;
  z-index: 1;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: -20px;
  left: -20px;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: -20px;
  right: -20px;
}

/* CONTENT */
.core-connect-about-us-page-our-community-content {
  flex: 1;
}

.core-connect-about-us-page-our-community-title {
  font-size: 32px;
  color: #1f3b5b;
  margin-bottom: 20px;
}

.core-connect-about-us-page-our-community-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* LIST */
.core-connect-about-us-page-our-community-list {
  list-style: none;
  padding: 0;
}

.core-connect-about-us-page-our-community-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #1f3b5b;
}

/* Icon Bullet */
.core-connect-about-us-page-our-community-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #c49b2a;
  font-size: 14px;
}

/* TABLET */
@media (max-width: 992px) {
  .core-connect-about-us-page-our-community-wrapper {
    flex-direction: column;
  }

  .core-connect-about-us-page-our-community-image-box {
    max-width: 500px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .core-connect-about-us-page-our-community-title {
    font-size: 26px;
  }

  .shape-1,
  .shape-2 {
    display: none;
  }
}

.core-connect-about-us-page-our-promises {
  padding: 90px 20px;
  background: #f5f6f8;
  text-align: center;
}

.core-connect-about-us-page-our-promises-container {
  max-width: 900px;
  margin: auto;
}

/* Title */
.core-connect-about-us-page-our-promises-title {
  font-size: 34px;
  color: #1f3b5b;
  margin-bottom: 20px;
}

/* Description */
.core-connect-about-us-page-our-promises-description {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* Cards Wrapper */
.core-connect-about-us-page-our-promises-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.core-connect-about-us-page-our-promises-card {
  background: #fff;
  padding: 25px 20px;
  width: 280px;
  border-radius: 4px;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

/* Card Title */
.core-connect-about-us-page-our-promises-card h4 {
  font-size: 16px;
  color: #c49b2a;
  margin-bottom: 10px;
}

/* Card Text */
.core-connect-about-us-page-our-promises-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* Hover */
.core-connect-about-us-page-our-promises-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Tablet */
@media (max-width: 768px) {
  .core-connect-about-us-page-our-promises-title {
    font-size: 28px;
  }

  .core-connect-about-us-page-our-promises-description {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .core-connect-about-us-page-our-promises-card {
    width: 100%;
  }
}

.core-connect-about-us-page-cta-section {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.core-connect-about-us-page-cta-section-container {
  max-width: 900px;
  margin: auto;
}

/* Top Line */
.core-connect-about-us-page-cta-section-line {
  width: 60px;
  height: 2px;
  background: #c49b2a;
  margin: 0 auto 30px;
}

/* Quote Text */
.core-connect-about-us-page-cta-section-text {
  font-size: 28px;
  color: #1f3b5b;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Button */
.core-connect-about-us-page-cta-section-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #0b2f4a;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s ease;
}

/* Hover */
.core-connect-about-us-page-cta-section-btn:hover {
  background: #09263c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Tablet */
@media (max-width: 768px) {
  .core-connect-about-us-page-cta-section-text {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .core-connect-about-us-page-cta-section-text {
    font-size: 18px;
  }

  .core-connect-about-us-page-cta-section-btn {
    padding: 12px 25px;
    font-size: 13px;
  }
}

/* Wrapper */
.core-connect-login-page-wrapper {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  max-width: 480px;
  margin: auto;
}

/* Header */
.core-connect-login-page-header {
  margin-bottom: 25px;
}

.core-connect-login-page-logo {
  font-weight: 600;
  margin-bottom: 10px;
}

.core-connect-login-page-header h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.core-connect-login-page-header p {
  font-size: 14px;
  color: #6b7280;
}

/* Card */
.core-connect-login-page-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Fields */
.core-connect-login-page-field {
  margin-bottom: 18px;
}

.core-connect-login-page-field label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}

.core-connect-login-page-field input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.core-connect-login-page-field input:focus {
  border-color: #111827;
}

/* Password header */
.core-connect-login-page-password-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.core-connect-login-page-password-header a {
  font-size: 12px;
  text-decoration: none;
  color: #6b7280;
}

/* Remember */
.core-connect-login-page-remember {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-bottom: 20px;
}

.core-connect-login-page-remember input {
  margin-right: 8px;
}

/* Button */
.core-connect-login-page-btn {
  width: 100%;
  padding: 12px;
  background: #1f2937;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
}

.core-connect-login-page-btn:hover {
  background: #111827;
}

/* Divider */
.core-connect-login-page-divider {
  text-align: center;
  margin: 20px 0;
  font-size: 12px;
  color: #9ca3af;
  position: relative;
}

.core-connect-login-page-divider::before,
.core-connect-login-page-divider::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 30%;
  background: #e5e7eb;
  top: 50%;
}

.core-connect-login-page-divider::before {
  left: 0;
}

.core-connect-login-page-divider::after {
  right: 0;
}

/* Social */
.core-connect-login-page-social {
  display: flex;
  gap: 10px;
}

.core-connect-login-page-social-btn {
  /* flex: 1;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 14px; */
}

/* Footer */
.core-connect-login-page-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #6b7280;
}

.core-connect-login-page-footer a {
  color: #111827;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 480px) {
  .core-connect-login-page-header h1 {
    font-size: 22px;
  }

  .core-connect-login-page-card {
    padding: 20px;
  }
}

.core-connect-login-page-social-second-conatiner img {
  width: 20px;
  height: auto;
}

.core-connect-login-page-social-second-conatiner {
  flex: 1;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.user-dropdown-menu {
  display: none;
  background: #fff;
  min-width: 150px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.user-dropdown-menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #000;
  background-color: #fff;
}

.user-dropdown-menu a:hover {
  background: #f5f5f5;
}

/* User Dashboard Css start here */
:root {
  --bg: #f4f7fb;
  --panel: #ffffff;
  --panel-alt: #eef3fb;
  --text: #1c2533;
  --muted: #5f6b7a;
  --primary: #c79a5b;
  --primary-dark: #a87d4a;
  --border: #d8dde7;
  --shadow: 0 16px 48px rgba(28, 37, 51, 0.08);
}

/* * {
  box-sizing: border-box;
} */
/* 
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
} */

.dashboard-business-profile-page-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  min-height: 100vh;
  padding: 24px;
  margin-top: 50px;
}

.dashboard-business-profile-page-sidebar {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dashboard-business-profile-page-sidebar-header h1,
.dashboard-business-profile-page-sidebar-header p {
  margin: 0;
}

.dashboard-business-profile-page-title {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.dashboard-business-profile-page-title-span {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.dashboard-business-profile-page-subtitle {
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.dashboard-business-profile-page-menu {
  display: grid;
  gap: 12px;
}

.dashboard-business-profile-page-menu-item {
  display: block;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  background: var(--panel-alt);
  border: 1px solid transparent;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.dashboard-business-profile-page-menu-item:hover,
.dashboard-business-profile-page-menu-item:focus-visible {
  background: #e5ebff;
  border-color: var(--primary);
  outline: none;
}

.sidebar-menu-active {
  background: var(--primary);
  color: #fff;
}

.sidebar-menu-active:hover {
  background: var(--primary);
  color: #fff;
}

.dashboard-business-profile-page-content {
  display: flex;
  flex-direction: column;
}

.dashboard-business-profile-page-form {
  background: var(--panel);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 32px;
  display: grid;
  gap: 32px;
}

.dashboard-business-profile-page-section {
  display: grid;
  gap: 20px;
}

.dashboard-business-profile-page-section-header h2 {
  margin: 0;
  font-size: 2.25rem;
  color: #a87d45;
  margin-bottom: 15px;
}

.dashboard-business-profile-page-section-header-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-business-profile-page-section-header p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-business-profile-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dashboard-business-profile-page-field-group {
  display: grid;
  gap: 10px;
}

.dashboard-business-profile-page-field-group.full-width {
  grid-column: span 2;
}

.dashboard-business-profile-page-input,
.dashboard-business-profile-page-textarea,
.dashboard-business-profile-page-select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 14px 16px;
  font-size: 0.95rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.dashboard-business-profile-page-input:focus,
.dashboard-business-profile-page-textarea:focus,
.dashboard-business-profile-page-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.dashboard-business-profile-page-textarea {
  resize: vertical;
}

.dashboard-business-profile-page-file-field input {
  padding: 10px 14px;
}

.dashboard-business-profile-page-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.dashboard-business-profile-page-checkbox-group span {
  color: var(--muted);
  min-width: 110px;
}

.dashboard-business-profile-page-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text);
  background: var(--panel-alt);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 14px;
}

.dashboard-business-profile-page-checkbox-label input {
  /* accent-color: var(--primary); */
  accent-color: none;
}

.dashboard-business-profile-page-subsection {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  background: #fbfcff;
  display: grid;
  gap: 18px;
}

.dashboard-business-profile-page-subsection h3,
.dashboard-business-profile-page-subsection h4 {
  margin: 0;
  font-size: 1.05rem;
}

.dashboard-business-profile-page-hidden {
  display: none;
}

.dashboard-business-profile-page-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.dashboard-business-profile-page-button {
  border: none;
  border-radius: 14px;
  padding: 14px 24px;
  font-size: 1rem;
  cursor: pointer;
}

.dashboard-business-profile-page-button-primary {
  background: var(--primary);
  color: #fff;
}

.dashboard-business-profile-page-button-secondary {
  background: #eef3fb;
  color: var(--text);
}

.dashboard-business-profile-page-button:disabled {
  background: #d0d0d0;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

.membership-status-group {
  position: relative;
}

.membership-status-badge {
  background: #00800099;
  color: white;
  padding: 5px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .dashboard-business-profile-page-wrapper {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .dashboard-business-profile-page-sidebar {
    order: 2;
  }
}

@media (max-width: 800px) {
  .dashboard-business-profile-page-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-business-profile-page-field-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .dashboard-business-profile-page-wrapper {
    padding: 14px;
  }

  .dashboard-business-profile-page-form {
    padding: 22px;
  }

  .dashboard-business-profile-page-menu-item {
    padding: 12px 14px;
  }
}

/* User Dashboard Css ends here */

/* Wrapper */
#user-details-hover-menu-style-wrapper.user-dropdown {
  position: relative !important;
  display: inline-block !important;
}

a#user-details-hover-menu-style-toggle img {
  width: 20px;
  /* margin-left: 10px; */
}

/* Menu hidden */
#user-details-hover-menu-style-menu.user-dropdown-menu {
  position: absolute !important;
  padding: 20px 0;
  top: 35px !important;
  left: 0 !important;
  min-width: 205px !important;
  /* background: #fff !important; */
  border-radius: 6px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
  display: none !important;
  z-index: 1000 !important;
}

/* SHOW ON HOVER */
#user-details-hover-menu-style-wrapper:hover
  #user-details-hover-menu-style-menu {
  display: block !important;
}

/* Links */
.user-dropdown-menu a {
  display: block !important;
  padding: 10px 14px !important;
  color: #000 !important;
  text-decoration: none !important;
}

.user-dropdown-menu a:hover {
  background: #c79a5b !important;
  color: #fff !important;
}

/* Main container */
#become-member-first-input-fileds-section-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* Each row */
#become-member-first-input-fileds-section-row-1,
#become-member-first-input-fileds-section-row-2 {
  display: flex;
  gap: 20px;
  width: 100%;
}

/* Form group */
#become-member-first-input-fileds-section-main
  .core-connect-members-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Labels */
#become-member-first-input-fileds-section-main label {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

/* Inputs & Select */
#become-member-first-input-fileds-section-main input,
#become-member-first-input-fileds-section-main select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s;
  background-color: #efebe7 !important;
}

/* Focus effect */
#become-member-first-input-fileds-section-main input:focus,
#become-member-first-input-fileds-section-main select:focus {
  border-color: #c79a5b;
  outline: none;
  box-shadow: 0 0 0 2px rgba(145, 76, 71, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  #become-member-first-input-fileds-section-row-1,
  #become-member-first-input-fileds-section-row-2 {
    flex-direction: column;
  }
}

/* Main Grid */
#business-information-form-fields-single-row-main {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  width: 100%;
}

/* Full width fields */
#business-information-form-fields-single-row-main .full-width {
  grid-column: span 2;
}

/* Field group styling */
#business-information-form-fields-single-row-main
  .dashboard-business-profile-page-field-group {
  display: flex;
  flex-direction: column;
}

/* Label */
#business-information-form-fields-single-row-main label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

/* Input & textarea */
#business-information-form-fields-single-row-main input,
#business-information-form-fields-single-row-main textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s ease;
}

/* Focus effect */
#business-information-form-fields-single-row-main input:focus,
#business-information-form-fields-single-row-main textarea:focus {
  border-color: #c79a5b;
  outline: none;
  box-shadow: 0 0 0 2px rgba(145, 76, 71, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  #business-information-form-fields-single-row-main {
    grid-template-columns: 1fr;
  }

  #business-information-form-fields-single-row-main .full-width {
    grid-column: span 1;
  }
}

/* New css for personal-info page start here */

a {
  text-decoration: none !important;
}

ul {
  list-style: none !important;
}

/* =========================================================
           MAIN LAYOUT
        ========================================================= */

.core-connect-metrocery-dashboard-page-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  /* background: #f4f4f4; */
  background: #fff;
}

/* .......BUSINESS FIRST POPUP ......... */

.business-profile-poage-first-edit-popup-open-btn {
  background: #914c47;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.business-profile-poage-first-edit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

.business-profile-poage-first-edit-popup-box {
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  position: relative;
}

.business-profile-poage-first-edit-popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.business-profile-poage-first-edit-popup-heading {
  font-size: 28px;
  margin-bottom: 25px;
}

.business-profile-poage-first-edit-popup-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.business-profile-poage-second-edit-popup-open-btn {
  background: #914c47;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.business-profile-poage-second-edit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

.business-profile-poage-second-edit-popup-box {
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  position: relative;
}

.business-profile-poage-second-edit-popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.business-profile-poage-second-edit-popup-heading {
  font-size: 28px;
  margin-bottom: 25px;
}

.business-profile-poage-second-edit-popup-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.business-profile-poage-third-edit-popup-open-btn {
  background: #914c47;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.business-profile-poage-third-edit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

.business-profile-poage-third-edit-popup-box {
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  position: relative;
}

.business-profile-poage-third-edit-popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.business-profile-poage-fourth-edit-popup-open-btn {
  background: #914c47;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.business-profile-poage-fourth-edit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

.business-profile-poage-fourth-edit-popup-box {
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  position: relative;
}

.business-profile-poage-fourth-edit-popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.business-profile-poage-fourth-edit-popup-heading {
  font-size: 28px;
  margin-bottom: 25px;
}

.business-profile-poage-fourth-edit-popup-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.business-profile-poage-fourth-edit-popup-form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.business-profile-poage-fourth-edit-popup-label {
  margin-bottom: 8px;
  font-weight: 600;
}

.business-profile-poage-fourth-edit-popup-input {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0 15px;
  outline: none;
}

.business-profile-poage-fourth-edit-popup-input:focus {
  border-color: #914c47;
}

.business-profile-poage-fourth-edit-popup-submit-btn {
  margin-top: 25px;
  background: #d8a847;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .business-profile-poage-fourth-edit-popup-form-row {
    flex-direction: column;
  }

  .business-profile-poage-fourth-edit-popup-box {
    padding: 20px;
  }
}

.business-profile-poage-third-edit-popup-heading {
  font-size: 28px;
  margin-bottom: 25px;
}

.business-profile-poage-third-edit-popup-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.business-profile-poage-third-edit-popup-form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.business-profile-poage-third-edit-popup-label {
  margin-bottom: 8px;
  font-weight: 600;
}

.business-profile-poage-third-edit-popup-input {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0 15px;
  outline: none;
}

.business-profile-poage-third-edit-popup-input:focus {
  border-color: #914c47;
}

.business-profile-poage-third-edit-popup-submit-btn {
  margin-top: 25px;
  background: #d8a847;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .business-profile-poage-third-edit-popup-form-row {
    flex-direction: column;
  }

  .business-profile-poage-third-edit-popup-box {
    padding: 20px;
  }
}

.business-profile-poage-second-edit-popup-form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.business-profile-poage-second-edit-popup-label {
  margin-bottom: 8px;
  font-weight: 600;
}

.business-profile-poage-second-edit-popup-input {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0 15px;
  outline: none;
}

.business-profile-poage-second-edit-popup-input:focus {
  border-color: #914c47;
}

.business-profile-poage-second-edit-popup-submit-btn {
  margin-top: 25px;
  background: #d8a847;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .business-profile-poage-second-edit-popup-form-row {
    flex-direction: column;
  }

  .business-profile-poage-second-edit-popup-box {
    padding: 20px;
  }
}

.business-profile-poage-first-edit-popup-form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.business-profile-poage-first-edit-popup-label {
  margin-bottom: 8px;
  font-weight: 600;
}

.business-profile-poage-first-edit-popup-input {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0 15px;
  outline: none;
}

.business-profile-poage-first-edit-popup-input:focus {
  border-color: #914c47;
}

.business-profile-poage-first-edit-popup-submit-btn {
  margin-top: 25px;
  background: #d8a847;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  cursor: pointer;
}

/* Open Button */

.family-profile-page-first-edit-popup-open-button {
  padding: 14px 28px;
  border: none;
  background: #914c47;
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.family-profile-page-first-edit-popup-open-button:hover {
  background: #6d3632;
}

/* Popup Overlay */

.family-profile-page-first-edit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}

/* Popup Box */

.family-profile-page-first-edit-popup-box {
  width: 100%;
  max-width: 550px;
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  position: relative;
  animation: family-profile-page-first-edit-popup-animation 0.4s ease;
}

@keyframes family-profile-page-first-edit-popup-animation {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Close Button */

.family-profile-page-first-edit-popup-close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #000;
}

/* Title */

.family-profile-page-first-edit-popup-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #000;
}

/* Form Group */

.family-profile-page-first-edit-popup-form-group {
  margin-bottom: 20px;
}

/* Labels */

.family-profile-page-first-edit-popup-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #222;
  font-size: 15px;
}

/* Inputs */

.family-profile-page-first-edit-popup-input,
.family-profile-page-first-edit-popup-textarea,
.family-profile-page-first-edit-popup-select {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.family-profile-page-first-edit-popup-input:focus,
.family-profile-page-first-edit-popup-textarea:focus,
.family-profile-page-first-edit-popup-select:focus {
  border-color: #914c47;
}

/* Textarea */

.family-profile-page-first-edit-popup-textarea {
  resize: none;
  height: 100px;
}

/* Radio Buttons */

.family-profile-page-first-edit-popup-radio-wrapper {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.family-profile-page-first-edit-popup-radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.family-profile-page-first-edit-popup-radio-input {
  width: 18px;
  height: 18px;
  accent-color: #914c47;
  cursor: pointer;
}

.family-profile-page-first-edit-popup-radio-text {
  font-size: 15px;
  color: #222;
  cursor: pointer;
}

/* Button Wrapper */

.family-profile-page-first-edit-popup-button-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Buttons */

.family-profile-page-first-edit-popup-cancel-button,
.family-profile-page-first-edit-popup-save-button {
  padding: 13px 25px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.family-profile-page-first-edit-popup-cancel-button {
  background: #e2e2e2;
  color: #000;
}

.family-profile-page-first-edit-popup-save-button {
  background: #914c47;
  color: #fff;
}

.family-profile-page-first-edit-popup-save-button:hover {
  background: #6d3632;
}

/* Responsive */

@media (max-width: 600px) {
  .family-profile-page-first-edit-popup-box {
    padding: 25px;
  }

  .family-profile-page-first-edit-popup-title {
    font-size: 24px;
  }

  .family-profile-page-first-edit-popup-button-wrapper {
    flex-direction: column;
  }

  .family-profile-page-first-edit-popup-cancel-button,
  .family-profile-page-first-edit-popup-save-button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .business-profile-poage-first-edit-popup-form-row {
    flex-direction: column;
  }

  .business-profile-poage-first-edit-popup-box {
    padding: 20px;
  }
}

/* =========================================================
           SIDEBAR
        ========================================================= */

.core-connect-metrocery-dashboard-page-sidebar {
  width: 290px;
  background: #000;
  /* background: #ffffff; */
  min-height: 100vh;
  border-radius: 0 25px 25px 0;
  padding: 25px 18px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.4s ease;
  overflow-y: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.core-connect-metrocery-dashboard-page-sidebar-logo {
  font-size: 32px;
  font-weight: 700;
  color: #d8a847;
  margin-bottom: 40px;
  text-align: center;
}

.core-connect-metrocery-dashboard-page-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
}

ul.core-connect-metrocery-dashboard-page-sidebar-menu {
  padding-left: 0px !important;
}

.core-connect-metrocery-dashboard-page-sidebar-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 15px;
  border-radius: 12px;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
}

.core-connect-metrocery-dashboard-page-sidebar-menu li a:hover {
  background: #f8f2e5;
  color: #d8a847;
}

.core-connect-metrocery-dashboard-page-sidebar-menu-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================================================
           PROFILE CARD
        ========================================================= */

.core-connect-metrocery-dashboard-page-sidebar-profile {
  margin-top: 35px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  padding: 15px;
}

.core-connect-metrocery-dashboard-page-sidebar-profile-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.core-connect-metrocery-dashboard-page-sidebar-profile-top img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.core-connect-metrocery-dashboard-page-sidebar-profile-top h4 {
  font-size: 14px !important;
  color: #222 !important;
}

.core-connect-metrocery-dashboard-page-sidebar-profile-top p {
  font-size: 12px;
  color: #888;
}

.core-connect-metrocery-dashboard-page-sidebar-profile-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.core-connect-metrocery-dashboard-page-sidebar-profile-links a {
  color: #777;
  font-size: 14px;
  transition: 0.3s;
}

.core-connect-metrocery-dashboard-page-sidebar-profile-links a:hover {
  color: #d8a847;
}

.dashboard-sidebar-my-profile-dropdown-section {
  position: relative;
  margin-top: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  padding: 12px;
  border-top: 1px solid;
}

.dashboard-sidebar-my-profile-dropdown-section-trigger {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-sidebar-my-profile-dropdown-section-trigger-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-sidebar-my-profile-dropdown-section-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d8a847;
}

.dashboard-sidebar-my-profile-dropdown-section-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dashboard-sidebar-my-profile-dropdown-section-name {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.dashboard-sidebar-my-profile-dropdown-section-email {
  font-size: 12px;
  color: #fff;
}

.dashboard-sidebar-my-profile-dropdown-section-arrow {
  color: #d8a847;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-sidebar-my-profile-dropdown-section-trigger-open
  .dashboard-sidebar-my-profile-dropdown-section-arrow {
  transform: rotate(180deg);
}

.dashboard-sidebar-my-profile-dropdown-section-menu {
  position: absolute;
  right: 12px;
  left: 12px;
  bottom: calc(100% + 8px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    max-height 0.35s ease;
}

.dashboard-sidebar-my-profile-dropdown-section-menu-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 400px;
  pointer-events: auto;
}

.dashboard-sidebar-my-profile-dropdown-section-item {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: #faf8f2;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.dashboard-sidebar-my-profile-dropdown-section-item:hover {
  background: #f2e9d9;
  color: #d8a847;
}

@media (max-width: 768px) {
  .dashboard-sidebar-my-profile-dropdown-section {
    padding: 10px;
  }

  .dashboard-sidebar-my-profile-dropdown-section-trigger-info {
    gap: 10px;
  }

  .dashboard-sidebar-my-profile-dropdown-section-name {
    font-size: 13px;
  }

  .dashboard-sidebar-my-profile-dropdown-section-email {
    font-size: 11px;
  }

  .dashboard-sidebar-my-profile-dropdown-section-menu {
    right: 10px;
    left: 10px;
  }

  .dashboard-sidebar-my-profile-dropdown-section-item {
    font-size: 13px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .dashboard-sidebar-my-profile-dropdown-section {
    margin-top: 20px;
  }

  .dashboard-sidebar-my-profile-dropdown-section-trigger {
    gap: 8px;
  }

  .dashboard-sidebar-my-profile-dropdown-section-avatar {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
           CONTENT
        ========================================================= */

.core-connect-metrocery-dashboard-page-main {
  width: 100%;
  margin-left: 290px;
  padding: 20px;
  transition: 0.4s;
}

/* =========================================================
           TOPBAR
        ========================================================= */

.core-connect-metrocery-dashboard-page-topbar {
  width: 100%;
  background: #d8a847;
  border-radius: 40px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  position: sticky;
  top: 15px;
  z-index: 50;
}

.core-connect-metrocery-dashboard-page-search {
  flex: 1;
  position: relative;
}

.core-connect-metrocery-dashboard-page-search input {
  width: 100%;
  border: none;
  outline: none;
  padding: 14px 50px 14px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 15px;
}

.core-connect-metrocery-dashboard-page-search input::placeholder {
  color: #fff;
}

.core-connect-metrocery-dashboard-page-search i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.core-connect-metrocery-dashboard-page-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-size: 15px;
}

.core-connect-metrocery-dashboard-page-icon-box {
  position: relative;
  cursor: pointer;
}

.core-connect-metrocery-dashboard-page-notification-count {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff4d6d;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
           PAGE TITLE
        ========================================================= */

.core-connect-metrocery-dashboard-page-title {
  font-size: 34px;
  color: #d8a847;
  margin-bottom: 25px;
  font-weight: 600;
}

/* =========================================================
           PROFILE SECTION
        ========================================================= */

.core-connect-metrocery-dashboard-page-profile-card {
  /* background: #fff; */
  border-radius: 30px;
  padding: 35px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.core-connect-metrocery-dashboard-page-profile-top {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.core-connect-metrocery-dashboard-page-profile-top img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f7f1e6;
}

.core-connect-metrocery-dashboard-page-profile-info h2 {
  color: #d8a847;
  margin-bottom: 8px;
  font-size: 32px;
}

.core-connect-metrocery-dashboard-page-profile-info p {
  color: #888;
  margin-bottom: 5px;
}

/* =========================================================
           INFO BOX
        ========================================================= */

.core-connect-metrocery-dashboard-page-info-box {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.core-connect-metrocery-dashboard-page-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.core-connect-metrocery-dashboard-page-info-header h3 {
  color: #d8a847;
  font-size: 24px;
}

.core-connect-metrocery-dashboard-page-edit-btn {
  background: #d8a847;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.core-connect-metrocery-dashboard-page-edit-btn:hover {
  background: #c89734;
}

.core-connect-metrocery-dashboard-page-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.core-connect-metrocery-dashboard-page-info-item span {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.core-connect-metrocery-dashboard-page-info-item h4 {
  font-size: 18px;
  color: #333;
  /* font-weight: 600; */
}

/* =========================================================
           HAMBURGER
        ========================================================= */

.core-connect-metrocery-dashboard-page-hamburger-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #d8a847;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =========================================================
           CLOSE BUTTON
        ========================================================= */

.core-connect-metrocery-dashboard-page-sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  background: #d8a847;
  color: #fff;
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

/* =========================================================
           OVERLAY
        ========================================================= */

.core-connect-metrocery-dashboard-page-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.core-connect-metrocery-dashboard-page-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================================================
           RESPONSIVE
        ========================================================= */

@media (max-width: 992px) {
  .core-connect-metrocery-dashboard-page-sidebar {
    left: -100%;
    width: 100%;
    border-radius: 0;
  }

  .core-connect-metrocery-dashboard-page-sidebar.active {
    left: 0;
  }

  .core-connect-metrocery-dashboard-page-main {
    margin-left: 0;
  }

  .core-connect-metrocery-dashboard-page-hamburger-btn {
    display: flex;
  }

  .core-connect-metrocery-dashboard-page-sidebar-close {
    display: block;
  }

  .core-connect-metrocery-dashboard-page-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-connect-metrocery-dashboard-page-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .core-connect-metrocery-dashboard-page-topbar {
    border-radius: 20px;
    padding: 15px;
  }

  .core-connect-metrocery-dashboard-page-profile-top {
    flex-direction: column;
    text-align: center;
  }

  .core-connect-metrocery-dashboard-page-info-grid {
    grid-template-columns: 1fr;
  }

  .core-connect-metrocery-dashboard-page-profile-info h2 {
    font-size: 26px;
  }

  .core-connect-metrocery-dashboard-page-profile-card,
  .core-connect-metrocery-dashboard-page-info-box {
    padding: 20px;
    border-radius: 22px;
  }

  .core-connect-metrocery-dashboard-page-topbar-right span {
    display: none;
  }
}

@media (max-width: 480px) {
  .core-connect-metrocery-dashboard-page-search input {
    font-size: 13px;
  }

  .core-connect-metrocery-dashboard-page-title {
    font-size: 24px;
  }

  .core-connect-metrocery-dashboard-page-profile-top img {
    width: 100px;
    height: 100px;
  }
}

/* New css for personal-info page end here */

img.login-icon-style {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

img.become-member-icon-style {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* New css for members directory page Start here */

/* =========================================================
       MAIN WRAPPER
    ========================================================= */

.core-connect-member-directory-dashboard-page-wrapper {
  width: 100%;
  min-height: 100vh;
  background: #fff;
}

/* =========================================================
       NAVBAR
    ========================================================= */

.core-connect-member-directory-dashboard-page-navbar {
  width: 100%;
  background: #f9f6f1;
  border-bottom: 1px solid #e6ddd1;
  padding: 22px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
}

.core-connect-member-directory-dashboard-page-logo {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 30px;
  color: #2d2926;
  font-style: italic;
  font-weight: 600;
}

.core-connect-member-directory-dashboard-page-nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.core-connect-member-directory-dashboard-page-nav-menu li a {
  color: #8b8378;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.core-connect-member-directory-dashboard-page-nav-menu li a:hover {
  color: #bb8a2f;
}

.core-connect-member-directory-dashboard-page-membership-btn {
  color: #bb8a2f;
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 24px;
  font-style: italic;
}

/* =========================================================
       MOBILE HAMBURGER
    ========================================================= */

.core-connect-member-directory-dashboard-page-mobile-toggle {
  width: 50px;
  height: 50px;
  border: none;
  background: #bb8a2f;
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

/* =========================================================
       MOBILE SIDEBAR
    ========================================================= */

.core-connect-member-directory-dashboard-page-sidebar {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f9f6f1;
  z-index: 1000;
  padding: 40px 30px;
  transition: 0.4s ease;
  overflow-y: auto;
}

.core-connect-member-directory-dashboard-page-sidebar.active {
  left: 0;
}

.core-connect-member-directory-dashboard-page-sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.core-connect-member-directory-dashboard-page-sidebar-close {
  width: 50px;
  height: 50px;
  border: none;
  background: #bb8a2f;
  color: #fff;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
}

.core-connect-member-directory-dashboard-page-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.core-connect-member-directory-dashboard-page-sidebar-menu li a {
  color: #5b5249;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.core-connect-member-directory-dashboard-page-sidebar-menu li a:hover {
  color: #bb8a2f;
  padding-left: 10px;
}

/* =========================================================
       HERO SECTION
    ========================================================= */

.core-connect-member-directory-dashboard-page-hero {
  padding: 70px 60px 40px;
}

.core-connect-member-directory-dashboard-page-subtitle {
  color: #bb8a2f;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.core-connect-member-directory-dashboard-page-title {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 80px;
  line-height: 1;
  color: #3e372f;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 25px;
}

.core-connect-member-directory-dashboard-page-description-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.core-connect-member-directory-dashboard-page-description {
  max-width: 550px;
  color: #7c7369;
  line-height: 1.9;
  font-size: 15px;
}

/* =========================================================
       SEARCH
    ========================================================= */

.core-connect-member-directory-dashboard-page-search-box {
  width: 320px;
  position: relative;
}

.core-connect-member-directory-dashboard-page-search-box input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #c8bba8;
  background: transparent;
  padding: 10px 40px 10px 0;
  outline: none;
  color: #5d544b;
  font-size: 14px;
}

.core-connect-member-directory-dashboard-page-search-box i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #a59a8c;
}

/* =========================================================
       MEMBER GRID
    ========================================================= */

.core-connect-member-directory-dashboard-page-members-grid {
  width: 100%;
  padding: 10px 60px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================================================
       MEMBER CARD
    ========================================================= */

.core-connect-member-directory-dashboard-page-member-card {
  background: #fff;
  border: 1px solid #eee3d4;
  padding: 30px 25px;
  position: relative;
  transition: 0.4s;
}

.core-connect-member-directory-dashboard-page-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.core-connect-member-directory-dashboard-page-member-arrow {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  background: #c79a41;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.core-connect-member-directory-dashboard-page-member-image {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
  border: 4px solid #efe6da;
}

.core-connect-member-directory-dashboard-page-member-name {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 30px;
  text-align: center;
  color: #2f2a25;
  margin-bottom: 10px;
  font-style: italic;
}

.core-connect-member-directory-dashboard-page-member-role {
  text-align: center;
  color: #bb8a2f;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.8;
}

.core-connect-member-directory-dashboard-page-member-location {
  text-align: center;
  color: #81776d;
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 28px;
}

.core-connect-member-directory-dashboard-page-member-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.core-connect-member-directory-dashboard-page-email-btn {
  background: #bb8a2f;
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.core-connect-member-directory-dashboard-page-call-btn {
  background: transparent;
  border: none;
  color: #5d544b;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
}

.core-connect-member-directory-dashboard-page-email-btn:hover {
  background: #a77b29;
}

/* =========================================================
       FOOTER
    ========================================================= */

.core-connect-member-directory-dashboard-page-footer {
  border-top: 1px solid #e8ddd0;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #8f867b;
  font-size: 12px;
  letter-spacing: 1px;
}

.core-connect-member-directory-dashboard-page-footer-links {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.core-connect-member-directory-dashboard-page-footer-links a {
  color: #8f867b;
  transition: 0.3s;
}

.core-connect-member-directory-dashboard-page-footer-links a:hover {
  color: #bb8a2f;
}

/* =========================================================
       RESPONSIVE
    ========================================================= */

@media (max-width: 1200px) {
  .core-connect-member-directory-dashboard-page-members-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .core-connect-member-directory-dashboard-page-title {
    font-size: 65px;
  }
}

@media (max-width: 992px) {
  .core-connect-member-directory-dashboard-page-nav-menu,
  .core-connect-member-directory-dashboard-page-membership-btn {
    display: none;
  }

  .core-connect-member-directory-dashboard-page-mobile-toggle {
    display: flex;
  }

  .core-connect-member-directory-dashboard-page-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-connect-member-directory-dashboard-page-title {
    font-size: 55px;
  }

  .core-connect-member-directory-dashboard-page-hero,
  .core-connect-member-directory-dashboard-page-members-grid,
  .core-connect-member-directory-dashboard-page-footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 768px) {
  .core-connect-member-directory-dashboard-page-navbar {
    padding: 20px;
  }

  .core-connect-member-directory-dashboard-page-title {
    font-size: 45px;
  }

  .core-connect-member-directory-dashboard-page-description-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .core-connect-member-directory-dashboard-page-search-box {
    width: 100%;
  }

  .core-connect-member-directory-dashboard-page-members-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .core-connect-member-directory-dashboard-page-title {
    font-size: 38px;
  }

  .core-connect-member-directory-dashboard-page-member-name {
    font-size: 26px;
  }

  .core-connect-member-directory-dashboard-page-hero {
    padding-top: 50px;
  }
}

/* New css for members directory page end here */

/* Overlay */
.my-profile-poage-first-edit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Popup Box */
.my-profile-poage-first-edit-popup-box {
  background: #fff;
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  animation: myProfilePopupFade 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Animation */
@keyframes myProfilePopupFade {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.my-profile-poage-first-edit-popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

/* Heading */
.my-profile-poage-first-edit-popup-heading {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
}

/* Form Row */
.my-profile-poage-first-edit-popup-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Form Group */
.my-profile-poage-first-edit-popup-form-group {
  flex: 1;
  min-width: 220px;
}

/* Label */
.my-profile-poage-first-edit-popup-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Input */
.my-profile-poage-first-edit-popup-input {
  width: 100%;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0 15px;
  outline: none;
  font-size: 15px;
}

/* Submit Button */
.my-profile-poage-first-edit-popup-submit-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.my-profile-poage-first-edit-popup-submit-btn:hover {
  background: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .my-profile-poage-first-edit-popup-box {
    padding: 20px;
  }

  .my-profile-poage-first-edit-popup-heading {
    font-size: 22px;
  }
}

/* Overlay */
.my-profile-poage-second-edit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Popup Box */
.my-profile-poage-second-edit-popup-box {
  background: #fff;
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  animation: myProfileSecondPopupFade 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Animation */
@keyframes myProfileSecondPopupFade {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.my-profile-poage-second-edit-popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

/* Heading */
.my-profile-poage-second-edit-popup-heading {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
}

/* Form Row */
.my-profile-poage-second-edit-popup-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Form Group */
.my-profile-poage-second-edit-popup-form-group {
  flex: 1;
  min-width: 220px;
}

/* Label */
.my-profile-poage-second-edit-popup-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Input */
.my-profile-poage-second-edit-popup-input {
  width: 100%;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0 15px;
  outline: none;
  font-size: 15px;
}

/* Submit Button */
.my-profile-poage-second-edit-popup-submit-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.my-profile-poage-second-edit-popup-submit-btn:hover {
  background: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .my-profile-poage-second-edit-popup-box {
    padding: 20px;
  }

  .my-profile-poage-second-edit-popup-heading {
    font-size: 22px;
  }
}

/* Wrapper */
.my-profile-dashboard-profile-photo-update-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
}

/* Profile Image */
.my-profile-dashboard-profile-photo-update-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.15); */
}

/* Hidden File Input */
.my-profile-dashboard-profile-photo-update-input {
  display: none;
}

/* Edit Button */
.my-profile-dashboard-profile-photo-update-edit-btn {
  position: absolute;
  bottom: 20px;
  right: 25px;
  width: 25px;
  height: 25px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.my-profile-dashboard-profile-photo-update-edit-btn:hover {
  transform: scale(1.08);
  background: #333;
}

/* Responsive */
@media (max-width: 576px) {
  .my-profile-dashboard-profile-photo-update-wrapper {
    width: 110px;
    height: 110px;
  }

  .my-profile-dashboard-profile-photo-update-image {
    width: 110px;
    height: 110px;
  }

  .my-profile-dashboard-profile-photo-update-edit-btn {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
}

/* Wrapper */
.business-profile-personal-address-as-billing-address-wrapper {
  margin: 20px 0;
}

/* Checkbox Container */
.business-profile-personal-address-as-billing-address-checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

/* Hide Default Checkbox */
.business-profile-personal-address-as-billing-address-checkbox-input {
  display: none;
}

/* Custom Checkbox */
.business-profile-personal-address-as-billing-address-checkmark {
  width: 15px;
  height: 15px;
  border: 2px solid #000;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  background: #fff;
  font-size: 13px;
  color: #fff;
}

/* Checked Style */
.business-profile-personal-address-as-billing-address-checkbox-input:checked
  + .business-profile-personal-address-as-billing-address-checkmark {
  background: #000;
  border-color: #000;
}

/* Hide Icon Initially */
.business-profile-personal-address-as-billing-address-checkmark i {
  opacity: 0;
  transition: 0.3s ease;
}

/* Show Icon When Checked */
.business-profile-personal-address-as-billing-address-checkbox-input:checked
  + .business-profile-personal-address-as-billing-address-checkmark
  i {
  opacity: 1;
}

/* Text */
.business-profile-personal-address-as-billing-address-text {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

/* Responsive */
@media (max-width: 576px) {
  .business-profile-personal-address-as-billing-address-text {
    font-size: 14px;
  }

  .business-profile-personal-address-as-billing-address-checkmark {
    width: 22px;
    height: 22px;
  }
}

/* Overlay */
.family-profile-poage-first-edit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Popup Box */
.family-profile-poage-first-edit-popup-box {
  background: #fff;
  width: 100%;
  max-width: 700px;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  animation: familyProfilePopupFade 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Animation */
@keyframes familyProfilePopupFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button */
.family-profile-poage-first-edit-popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  background: #f2f2f2;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

/* Heading */
.family-profile-poage-first-edit-popup-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Image Upload */
.family-profile-poage-first-edit-popup-image-upload-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

/* Image Preview Wrapper */
.family-profile-poage-first-edit-popup-image-preview-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
}

/* Preview Image */
.family-profile-poage-first-edit-popup-preview-image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f1f1f1;
}

/* Hidden Input */
.family-profile-poage-first-edit-popup-image-input {
  display: none;
}

/* Edit Button */
.family-profile-poage-first-edit-popup-image-edit-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease;
}

.family-profile-poage-first-edit-popup-image-edit-btn:hover {
  background: #333;
  transform: scale(1.05);
}

/* Form Row */
.family-profile-poage-first-edit-popup-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Form Group */
.family-profile-poage-first-edit-popup-form-group {
  flex: 1;
  min-width: 240px;
}

/* Label */
.family-profile-poage-first-edit-popup-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Input */
.family-profile-poage-first-edit-popup-input {
  width: 100%;
  height: 50px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 0 15px;
  outline: none;
  font-size: 15px;
}

/* Radio Wrapper */
.family-profile-poage-first-edit-popup-radio-wrapper {
  margin-bottom: 25px;
}

/* Radio Group */
.family-profile-poage-first-edit-popup-radio-group {
  display: flex;
  gap: 20px;
}

/* Hide Default Radio */
.family-profile-poage-first-edit-popup-radio-input {
  display: none;
}

/* Radio Label */
.family-profile-poage-first-edit-popup-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* Custom Radio */
.family-profile-poage-first-edit-popup-radio-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #000;
  border-radius: 50%;
  position: relative;
}

/* Active Dot */
.family-profile-poage-first-edit-popup-radio-input:checked
  + .family-profile-poage-first-edit-popup-radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}

/* Submit Button */
.family-profile-poage-first-edit-popup-submit-btn {
  border: none;
  background: #000;
  color: #fff;
  padding: 13px 35px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
}

.family-profile-poage-first-edit-popup-submit-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .family-profile-poage-first-edit-popup-box {
    padding: 20px;
  }

  .family-profile-poage-first-edit-popup-heading {
    font-size: 22px;
  }

  .family-profile-poage-first-edit-popup-preview-image {
    width: 110px;
    height: 110px;
  }
}

/* Overlay */
.family-profile-poage-first-edit-popup-overlay-job-title {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Popup Box */
.family-profile-poage-first-edit-popup-overlay-job-title-box {
  background: #fff;
  width: 100%;
  max-width: 550px;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  animation: familyJobTitlePopupFade 0.3s ease;
}

/* Animation */
@keyframes familyJobTitlePopupFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button */
.family-profile-poage-first-edit-popup-overlay-job-title-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 22px;
  cursor: pointer;
}

/* Heading */
.family-profile-poage-first-edit-popup-overlay-job-title-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Form Group */
.family-profile-poage-first-edit-popup-overlay-job-title-form-group {
  margin-bottom: 25px;
}

/* Label */
.family-profile-poage-first-edit-popup-overlay-job-title-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Input */
.family-profile-poage-first-edit-popup-overlay-job-title-input {
  width: 100%;
  height: 50px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 0 15px;
  outline: none;
  font-size: 15px;
}

/* Radio Wrapper */
.family-profile-poage-first-edit-popup-overlay-job-title-radio-wrapper {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
}

/* Hide Default Radio */
.family-profile-poage-first-edit-popup-overlay-job-title-radio-input {
  display: none;
}

/* Radio Label */
.family-profile-poage-first-edit-popup-overlay-job-title-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
}

/* Custom Radio */
.family-profile-poage-first-edit-popup-overlay-job-title-radio-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #000;
  border-radius: 50%;
  position: relative;
}

/* Active Dot */
.family-profile-poage-first-edit-popup-overlay-job-title-radio-input:checked
  + .family-profile-poage-first-edit-popup-overlay-job-title-radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}

/* Submit Button */
.family-profile-poage-first-edit-popup-overlay-job-title-submit-btn {
  border: none;
  background: #000;
  color: #fff;
  padding: 13px 35px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
}

.family-profile-poage-first-edit-popup-overlay-job-title-submit-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .family-profile-poage-first-edit-popup-overlay-job-title-box {
    padding: 20px;
  }

  .family-profile-poage-first-edit-popup-overlay-job-title-heading {
    font-size: 22px;
  }
}

/* Overlay */
.family-profile-poage-first-edit-popup-overlay-business-details {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Popup Box */
.family-profile-poage-first-edit-popup-overlay-business-details-box {
  background: #fff;
  width: 100%;
  max-width: 750px;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  animation: familyBusinessDetailsPopupFade 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Animation */
@keyframes familyBusinessDetailsPopupFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button */
.family-profile-poage-first-edit-popup-overlay-business-details-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 22px;
  cursor: pointer;
}

/* Heading */
.family-profile-poage-first-edit-popup-overlay-business-details-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Form Row */
.family-profile-poage-first-edit-popup-overlay-business-details-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Form Group */
.family-profile-poage-first-edit-popup-overlay-business-details-form-group {
  flex: 1;
  min-width: 250px;
}

/* Label */
.family-profile-poage-first-edit-popup-overlay-business-details-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Input */
.family-profile-poage-first-edit-popup-overlay-business-details-input {
  width: 100%;
  height: 50px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 0 15px;
  outline: none;
  font-size: 15px;
}

/* Radio Wrapper */
.family-profile-poage-first-edit-popup-overlay-business-details-radio-wrapper {
  margin-bottom: 25px;
}

/* Hide Default Radio */
.family-profile-poage-first-edit-popup-overlay-business-details-radio-input {
  display: none;
}

/* Radio Label */
.family-profile-poage-first-edit-popup-overlay-business-details-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
}

/* Custom Radio */
.family-profile-poage-first-edit-popup-overlay-business-details-radio-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #000;
  border-radius: 50%;
  position: relative;
}

/* Active Dot */
.family-profile-poage-first-edit-popup-overlay-business-details-radio-input:checked
  + .family-profile-poage-first-edit-popup-overlay-business-details-radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}

/* Submit Button */
.family-profile-poage-first-edit-popup-overlay-business-details-submit-btn {
  border: none;
  background: #000;
  color: #fff;
  padding: 13px 35px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
}

.family-profile-poage-first-edit-popup-overlay-business-details-submit-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .family-profile-poage-first-edit-popup-overlay-business-details-box {
    padding: 20px;
  }

  .family-profile-poage-first-edit-popup-overlay-business-details-heading {
    font-size: 22px;
  }
}

/* Overlay */
.family-profile-poage-first-edit-popup-overlay-family-note {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Popup Box */
.family-profile-poage-first-edit-popup-overlay-family-note-box {
  background: #fff;
  width: 100%;
  max-width: 650px;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  animation: familyNotePopupFade 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Animation */
@keyframes familyNotePopupFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button */
.family-profile-poage-first-edit-popup-overlay-family-note-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 22px;
  cursor: pointer;
}

/* Heading */
.family-profile-poage-first-edit-popup-overlay-family-note-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Form Group */
.family-profile-poage-first-edit-popup-overlay-family-note-form-group {
  margin-bottom: 25px;
}

/* Label */
.family-profile-poage-first-edit-popup-overlay-family-note-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Textarea */
.family-profile-poage-first-edit-popup-overlay-family-note-textarea {
  width: 100%;
  min-height: 180px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 15px;
  outline: none;
  resize: vertical;
  font-size: 15px;
  font-family: inherit;
}

/* Radio Wrapper */
.family-profile-poage-first-edit-popup-overlay-family-note-radio-wrapper {
  margin-bottom: 25px;
}

/* Hide Default Radio */
.family-profile-poage-first-edit-popup-overlay-family-note-radio-input {
  display: none;
}

/* Radio Label */
.family-profile-poage-first-edit-popup-overlay-family-note-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
}

/* Custom Radio */
.family-profile-poage-first-edit-popup-overlay-family-note-radio-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #000;
  border-radius: 50%;
  position: relative;
}

/* Active Dot */
.family-profile-poage-first-edit-popup-overlay-family-note-radio-input:checked
  + .family-profile-poage-first-edit-popup-overlay-family-note-radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}

/* Submit Button */
.family-profile-poage-first-edit-popup-overlay-family-note-submit-btn {
  border: none;
  background: #000;
  color: #fff;
  padding: 13px 35px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
}

.family-profile-poage-first-edit-popup-overlay-family-note-submit-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .family-profile-poage-first-edit-popup-overlay-family-note-box {
    padding: 20px;
  }

  .family-profile-poage-first-edit-popup-overlay-family-note-heading {
    font-size: 22px;
  }

  .family-profile-poage-first-edit-popup-overlay-family-note-textarea {
    min-height: 140px;
  }
}

/* Overlay */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Popup Box */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-box {
  background: #fff;
  width: 100%;
  max-width: 750px;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  animation: salariedSpousePopupFade 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Animation */
@keyframes salariedSpousePopupFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 22px;
  cursor: pointer;
}

/* Heading */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Form Row */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Form Group */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-form-group {
  flex: 1;
  min-width: 250px;
}

/* Label */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Input */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-input {
  width: 100%;
  height: 50px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 0 15px;
  outline: none;
  font-size: 15px;
}

/* Radio Wrapper */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-radio-wrapper {
  margin-bottom: 25px;
}

/* Hide Default Radio */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-radio-input {
  display: none;
}

/* Radio Label */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
}

/* Custom Radio */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-radio-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #000;
  border-radius: 50%;
  position: relative;
}

/* Active Dot */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-radio-input:checked
  + .family-profile-poage-first-edit-popup-overlay-salaried-spouse-radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}

/* Submit Button */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-submit-btn {
  border: none;
  background: #000;
  color: #fff;
  padding: 13px 35px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
}

.family-profile-poage-first-edit-popup-overlay-salaried-spouse-submit-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .family-profile-poage-first-edit-popup-overlay-salaried-spouse-box {
    padding: 20px;
  }

  .family-profile-poage-first-edit-popup-overlay-salaried-spouse-heading {
    font-size: 22px;
  }
}

/* Overlay */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Popup Box */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-box {
  background: #ffffff;
  width: 100%;
  max-width: 750px;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  animation: familyProfilePopupOverlaySalariedSpouse1Fade 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-height: 90vh;
  overflow-y: auto;
}

/* Animation */
@keyframes familyProfilePopupOverlaySalariedSpouse1Fade {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #f3f3f3;
  color: #000;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s ease;
}

.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-close-btn:hover {
  background: #000;
  color: #fff;
}

/* Heading */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-heading {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

/* Form Row */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

/* Form Group */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-form-group {
  flex: 1;
  min-width: 250px;
}

/* Labels */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

/* Inputs */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-input {
  width: 100%;
  height: 52px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
  background: #fff;
}

.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-input:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* Submit Button */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-submit-btn {
  border: none;
  background: #000;
  color: #fff;
  padding: 14px 38px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-submit-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Scrollbar */
.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-box::-webkit-scrollbar {
  width: 6px;
}

.family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-box::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-box {
    padding: 22px;
  }

  .family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-heading {
    font-size: 24px;
  }

  .family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-input {
    height: 48px;
    font-size: 14px;
  }

  .family-profile-poage-first-edit-popup-overlay-salaried-spouse-1-submit-btn {
    width: 100%;
  }
}

.breadcrumb-section {
  width: 100%;
  padding: 150px 0 30px;
  background: #000000;
  position: relative;
  overflow: hidden;
}
.breadcrumb-content ul {
  padding-left: 0 !important;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  /* background: rgba(255, 255, 255, 0.03); */
  border-radius: 50%;
  top: -250px;
  right: -120px;
}

.breadcrumb-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  /* background: rgba(255, 255, 255, 0.03); */
  border-radius: 50%;
  bottom: -180px;
  left: -100px;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb-content h1 {
  font-size: 35px;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.2;
  font-weight: 500;
  /* font-family:'Inter',sans-serif; */
}

.breadcrumb-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  color: #d6dde5;
  font-size: 13px;
  /* font-family:'Inter',sans-serif; */
}

.breadcrumb-list li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.4s;
}

.breadcrumb-list li a:hover {
  color: #c79a52;
}

.breadcrumb-list .divider {
  color: #c79a52;
}

@media (max-width: 991px) {
  .breadcrumb-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -220px;
    right: -120px;
  }

  .breadcrumb-section::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
  }

  .breadcrumb-section {
    padding: 140px 0 40px;
  }

  .breadcrumb-content h1 {
    font-size: 30px;
  }

  .breadcrumb-list li {
    font-size: 14px;
  }
}

#become-member-first-input-fileds-section-title select {
  padding: 12px;
  border: none;
  border-bottom: 2px solid #dcd7d2;
  background: #efebe7;
  outline: none;
  font-size: 14px;
}
.core-connect-members-form-radio-options-1 label {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Main Wrapper */
.core-connect-thank-you-page-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}

/* Background Animation */
.core-connect-thank-you-page-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(145, 76, 71, 0.08);
  animation: core-connect-thank-you-page-float 8s infinite ease-in-out;
}

.core-connect-thank-you-page-bg-circle-one {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.core-connect-thank-you-page-bg-circle-two {
  width: 220px;
  height: 220px;
  bottom: -60px;
  right: -60px;
  animation-delay: 2s;
}

@keyframes core-connect-thank-you-page-float {
  0%,
  100% {
    transform: translateY(0px);
  }

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

/* Card */
.core-connect-thank-you-page-card {
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Top Glow */
.core-connect-thank-you-page-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(145, 76, 71, 0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* Checkmark Circle */
.core-connect-thank-you-page-icon-wrapper {
  width: 120px;
  height: 120px;
  background: #c79a5b;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: core-connect-thank-you-page-scale 1.2s ease;
  position: relative;
  z-index: 2;
}

@keyframes core-connect-thank-you-page-scale {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.core-connect-thank-you-page-checkmark {
  font-size: 60px;
  color: #ffffff;
  font-weight: bold;
}

/* Heading */
.core-connect-thank-you-page-title {
  font-size: 48px;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

/* Description */
.core-connect-thank-you-page-description {
  font-size: 18px;
  color: #555555;
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto 5px;
}

/* Button */
.core-connect-thank-you-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 35px;
  background: #c79a5b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.4s ease;
  border: 2px solid transparent;
}

.core-connect-thank-you-page-button:hover {
  background: transparent;
  border-color: #c79a5b;
  color: #c79a5b;
  transform: translateY(-3px);
}

/* Decorative Lines */
.core-connect-thank-you-page-line {
  width: 90px;
  height: 4px;
  background: #c79a5b;
  margin: 25px auto;
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .core-connect-thank-you-page-card {
    padding: 45px 25px;
  }

  .core-connect-thank-you-page-title {
    font-size: 36px;
  }

  .core-connect-thank-you-page-description {
    font-size: 16px;
  }

  .core-connect-thank-you-page-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .core-connect-thank-you-page-checkmark {
    font-size: 50px;
  }
}

@media (max-width: 480px) {
  .core-connect-thank-you-page-title {
    font-size: 28px;
  }

  .core-connect-thank-you-page-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .core-connect-thank-you-page-button {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
  }

  .core-connect-thank-you-page-card {
    border-radius: 18px;
  }
}

/* Main Wrapper */
.core-connect-coming-soon-page-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

/* Animated Background Shapes */
.core-connect-coming-soon-page-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(145, 76, 71, 0.08);
  animation: core-connect-coming-soon-page-float 8s ease-in-out infinite;
}

.core-connect-coming-soon-page-circle-one {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -100px;
}

.core-connect-coming-soon-page-circle-two {
  width: 220px;
  height: 220px;
  bottom: -80px;
  right: -60px;
  animation-delay: 2s;
}

.core-connect-coming-soon-page-circle-three {
  width: 140px;
  height: 140px;
  top: 18%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes core-connect-coming-soon-page-float {
  0%,
  100% {
    transform: translateY(0px);
  }

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

/* Card */
.core-connect-coming-soon-page-card {
  width: 100%;
  max-width: 850px;
  background: #ffffff;
  border-radius: 30px;
  padding: 70px 50px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Top Glow */
.core-connect-coming-soon-page-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(145, 76, 71, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

/* Small Label */
.core-connect-coming-soon-page-label {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(145, 76, 71, 0.1);
  color: #c79a5b;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

/* Main Heading */
.core-connect-coming-soon-page-title {
  font-size: 68px;
  line-height: 1.1;
  color: #000000;
  font-weight: 800;
  margin-bottom: 25px;
}

.core-connect-coming-soon-page-title span {
  color: #c79a5b;
}

/* Description */
.core-connect-coming-soon-page-description {
  max-width: 650px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 45px;
}

/* Countdown */
.core-connect-coming-soon-page-countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.core-connect-coming-soon-page-countdown-box {
  width: 130px;
  padding: 28px 15px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(145, 76, 71, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.core-connect-coming-soon-page-countdown-box:hover {
  transform: translateY(-6px);
}

.core-connect-coming-soon-page-countdown-number {
  font-size: 42px;
  font-weight: 800;
  color: #c79a5b;
  margin-bottom: 8px;
}

.core-connect-coming-soon-page-countdown-text {
  font-size: 15px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Email Form */
.core-connect-coming-soon-page-form {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.core-connect-coming-soon-page-input {
  flex: 1;
  min-width: 260px;
  height: 60px;
  border: 1px solid rgba(145, 76, 71, 0.15);
  border-radius: 60px;
  padding: 0 25px;
  font-size: 16px;
  outline: none;
  transition: 0.4s ease;
}

.core-connect-coming-soon-page-input:focus {
  border-color: #c79a5b;
  box-shadow: 0 0 0 4px rgba(145, 76, 71, 0.08);
}

.core-connect-coming-soon-page-button {
  height: 60px;
  padding: 0 35px;
  border: none;
  border-radius: 60px;
  background: #c79a5b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s ease;
}

.core-connect-coming-soon-page-button:hover {
  background: #000000;
  transform: translateY(-3px);
}

/* Footer Text */
.core-connect-coming-soon-page-footer-text {
  margin-top: 30px;
  color: #777777;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .core-connect-coming-soon-page-title {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .core-connect-coming-soon-page-card {
    padding: 50px 25px;
  }

  .core-connect-coming-soon-page-title {
    font-size: 42px;
  }

  .core-connect-coming-soon-page-description {
    font-size: 17px;
  }

  .core-connect-coming-soon-page-countdown-box {
    width: 110px;
    padding: 22px 10px;
  }

  .core-connect-coming-soon-page-countdown-number {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .core-connect-coming-soon-page-title {
    font-size: 32px;
  }

  .core-connect-coming-soon-page-description {
    font-size: 15px;
    line-height: 1.8;
  }

  .core-connect-coming-soon-page-countdown {
    gap: 12px;
  }

  .core-connect-coming-soon-page-countdown-box {
    width: 45%;
  }

  .core-connect-coming-soon-page-form {
    flex-direction: column;
  }

  .core-connect-coming-soon-page-input,
  .core-connect-coming-soon-page-button {
    width: 100%;
  }

  .core-connect-coming-soon-page-card {
    border-radius: 20px;
  }
}

/* =======================================================
           CORE CONNECT CIRCLE NEW PAGE SECTION
        ======================================================= */

.core-connect-circle-new-page-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, rgb(199, 154, 91) 0%, #1a1a1a 100%);
  overflow: hidden;
}

/* Background Glow */
.core-connect-circle-new-page-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  filter: blur(40px);
  animation: core-connect-circle-new-page-float 8s ease-in-out infinite;
}

.core-connect-circle-new-page-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  filter: blur(40px);
  animation: core-connect-circle-new-page-float2 10s ease-in-out infinite;
}

@keyframes core-connect-circle-new-page-float {
  0% {
    transform: translateY(0px);
  }

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

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

@keyframes core-connect-circle-new-page-float2 {
  0% {
    transform: translateY(0px);
  }

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

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

/* Left Content */
.core-connect-circle-new-page-content {
  position: relative;
  z-index: 2;
}

.core-connect-circle-new-page-tag {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.core-connect-circle-new-page-heading {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 25px;
}

.core-connect-circle-new-page-heading span {
  color: #000;
}

.core-connect-circle-new-page-description {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
}

.core-connect-circle-new-page-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.core-connect-circle-new-page-btn-primary {
  background: #fff;
  color: #c79a5b;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
  border: 2px solid transparent;
}

.core-connect-circle-new-page-btn-primary:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

.core-connect-circle-new-page-btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
}

.core-connect-circle-new-page-btn-secondary:hover {
  background: #fff;
  color: #c79a5b;
  transform: translateY(-3px);
}

/* Right Side Cards */
.core-connect-circle-new-page-card-wrapper {
  position: relative;
  z-index: 2;
}

.core-connect-circle-new-page-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.4s;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.core-connect-circle-new-page-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.18);
}

.core-connect-circle-new-page-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.core-connect-circle-new-page-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.core-connect-circle-new-page-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* Stats */
.core-connect-circle-new-page-stats {
  margin-top: 70px;
  position: relative;
  z-index: 2;
}

.core-connect-circle-new-page-stat-box {
  text-align: center;
  padding: 35px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: 0.4s;
  height: 100%;
}

.core-connect-circle-new-page-stat-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.16);
}

.core-connect-circle-new-page-stat-number {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.core-connect-circle-new-page-stat-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
}

/* Floating Elements */
.core-connect-circle-new-page-floating-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: core-connect-circle-new-page-dotmove 5s infinite ease-in-out;
}

.core-connect-circle-new-page-dot1 {
  top: 15%;
  right: 12%;
}

.core-connect-circle-new-page-dot2 {
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes core-connect-circle-new-page-dotmove {
  0% {
    transform: translateY(0px);
  }

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

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

/* Responsive */
@media (max-width: 991px) {
  .core-connect-circle-new-page-heading {
    font-size: 46px;
  }

  .core-connect-circle-new-page-content {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .core-connect-circle-new-page-section {
    padding: 80px 0;
  }

  .core-connect-circle-new-page-heading {
    font-size: 36px;
  }

  .core-connect-circle-new-page-description {
    font-size: 16px;
  }

  .core-connect-circle-new-page-buttons {
    flex-direction: column;
  }

  .core-connect-circle-new-page-btn-primary,
  .core-connect-circle-new-page-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .core-connect-circle-new-page-stat-number {
    font-size: 38px;
  }
}

/* =======================================================
           CORE CONNECT FOUNDER NEW PAGE SECTION
        ======================================================= */

.core-connect-founder-new-page-section {
  position: relative;
  padding: 110px 0;
  background-color: #fff;
  /* background:
                linear-gradient(135deg,
                    #ffffff 0%,
                    #f5f1f0 100%); */
  overflow: hidden;
}

/* Background Decorative Shapes */

.core-connect-founder-new-page-section::before {
  /* content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(145, 76, 71, 0.08);
            top: -120px;
            right: -100px;
            filter: blur(20px); */
}

.core-connect-founder-new-page-section::after {
  /* content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(145, 76, 71, 0.06);
            bottom: -100px;
            left: -80px;
            filter: blur(20px); */
}

/* Left Side */

.core-connect-founder-new-page-image-wrapper {
  position: relative;
  z-index: 2;
}

.core-connect-founder-new-page-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.core-connect-founder-new-page-image-box img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  transition: 0.5s;
}

.core-connect-founder-new-page-image-box:hover img {
  transform: scale(1.05);
}

.core-connect-founder-new-page-floating-card {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #c79a5b;
  color: #fff;
  padding: 25px;
  border-radius: 25px;
  width: 260px;
  box-shadow: 0 20px 50px rgba(145, 76, 71, 0.25);
  animation: core-connect-founder-new-page-float 4s ease-in-out infinite;
}

.core-connect-founder-new-page-floating-card h4 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 5px;
}

.core-connect-founder-new-page-floating-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

@keyframes core-connect-founder-new-page-float {
  0% {
    transform: translateY(0px);
  }

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

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

/* Right Content */

.core-connect-founder-new-page-content {
  position: relative;
  z-index: 2;
  padding-left: 40px;
}

.core-connect-founder-new-page-tag {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(145, 76, 71, 0.1);
  color: #c79a5b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.core-connect-founder-new-page-heading {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.core-connect-founder-new-page-heading span {
  color: #c79a5b;
}

.core-connect-founder-new-page-founder-name {
  font-size: 22px;
  font-weight: 700;
  color: #c79a5b;
  margin-bottom: 5px;
}

.core-connect-founder-new-page-founder-role {
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
}

.core-connect-founder-new-page-description {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin-bottom: 35px;
}

.core-connect-founder-new-page-quote {
  background: #fff;
  border-left: 5px solid #c79a5b;
  padding: 28px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  color: #222;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 35px;
}

/* Features */

.core-connect-founder-new-page-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.core-connect-founder-new-page-feature-item {
  background: #fff;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

.core-connect-founder-new-page-feature-item:hover {
  background: #c79a5b;
  color: #fff;
  transform: translateY(-5px);
}

/* Responsive */

@media (max-width: 991px) {
  .core-connect-founder-new-page-content {
    padding-left: 0;
    margin-top: 60px;
  }

  .core-connect-founder-new-page-heading {
    font-size: 42px;
  }

  .core-connect-founder-new-page-floating-card {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .core-connect-founder-new-page-section {
    padding: 80px 0;
  }

  .core-connect-founder-new-page-heading {
    font-size: 34px;
  }

  .core-connect-founder-new-page-description {
    font-size: 15px;
    line-height: 1.9;
  }

  .core-connect-founder-new-page-quote {
    font-size: 17px;
    padding: 22px;
  }

  .core-connect-founder-new-page-floating-card {
    width: 220px;
    padding: 20px;
  }

  .core-connect-founder-new-page-floating-card h4 {
    font-size: 28px;
  }

  .core-connect-founder-new-page-feature-item {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================
           CORE CONNECT CIRCEL NEW PAGE NEW SECTION
        ========================================================== */

.core-connect-circel-new-page-new-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4f1f0 100%);
  overflow: hidden;
}

/* Background Shapes */

.core-connect-circel-new-page-new-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(145, 76, 71, 0.07);
  border-radius: 50%;
  top: -180px;
  right: -150px;
  filter: blur(30px);
}

.core-connect-circel-new-page-new-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(145, 76, 71, 0.05);
  border-radius: 50%;
  bottom: -120px;
  left: -120px;
  filter: blur(30px);
}

/* Heading */

.core-connect-circel-new-page-new-section-heading-wrapper {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.core-connect-circel-new-page-new-section-tag {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(145, 76, 71, 0.1);
  color: #c79a5b;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.core-connect-circel-new-page-new-section-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 25px;
}

.core-connect-circel-new-page-new-section-title span {
  color: #c79a5b;
}

.core-connect-circel-new-page-new-section-subtitle {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
  color: #666;
}

/* Cards */

.core-connect-circel-new-page-new-section-card {
  position: relative;
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  padding: 45px;
  height: 100%;
  transition: 0.5s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.core-connect-circel-new-page-new-section-card:hover {
  transform: translateY(-12px);
}

/* Top Border */

.core-connect-circel-new-page-new-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #c79a5b, #d3a39a);
}

/* Icons */

.core-connect-circel-new-page-new-section-icon {
  width: 90px;
  height: 90px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin-bottom: 30px;
  background: rgba(145, 76, 71, 0.08);
  color: #c79a5b;
  transition: 0.4s;
}

.core-connect-circel-new-page-new-section-card:hover
  .core-connect-circel-new-page-new-section-icon {
  transform: rotate(8deg) scale(1.08);
}

/* Titles */

.core-connect-circel-new-page-new-section-card-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
}

.core-connect-circel-new-page-new-section-card-text {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 30px;
}

/* Features */

.core-connect-circel-new-page-new-section-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.core-connect-circel-new-page-new-section-feature-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.core-connect-circel-new-page-new-section-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c79a5b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
}

/* Purpose Box */

.core-connect-circel-new-page-new-section-purpose {
  background: linear-gradient(135deg, #c79a5b);
  padding: 28px;
  border-radius: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}
#core-connect-circel-new-page-new-section-purpose {
  margin-top: 21%;
}

.core-connect-circel-new-page-new-section-purpose::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -50px;
  right: -40px;
}

.core-connect-circel-new-page-new-section-purpose-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.core-connect-circel-new-page-new-section-purpose-text {
  margin: 0;
  line-height: 1.8;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

/* Floating Decorative Dots */

.core-connect-circel-new-page-new-section-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(145, 76, 71, 0.18);
  animation: core-connect-circel-new-page-new-section-dotmove 5s infinite
    ease-in-out;
}

.core-connect-circel-new-page-new-section-dot1 {
  width: 18px;
  height: 18px;
  top: 12%;
  left: 8%;
}

.core-connect-circel-new-page-new-section-dot2 {
  width: 26px;
  height: 26px;
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes core-connect-circel-new-page-new-section-dotmove {
  0% {
    transform: translateY(0px);
  }

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

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

/* Responsive */

@media (max-width: 991px) {
  .core-connect-circel-new-page-new-section-title {
    font-size: 44px;
  }

  .core-connect-circel-new-page-new-section-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .core-connect-circel-new-page-new-section {
    padding: 80px 0;
  }

  .core-connect-circel-new-page-new-section-title {
    font-size: 34px;
  }

  .core-connect-circel-new-page-new-section-subtitle {
    font-size: 16px;
  }

  .core-connect-circel-new-page-new-section-card {
    padding: 35px 28px;
  }

  .core-connect-circel-new-page-new-section-card-title {
    font-size: 28px;
  }

  .core-connect-circel-new-page-new-section-icon {
    width: 75px;
    height: 75px;
    font-size: 34px;
  }
}

/* =========================================================
           HOME PAGE SOCIAL FORUM IMAGES HYPERLINK SECTION
        ========================================================= */

.home-page-social-forum-images-hyperlink-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f2f1 100%);
  overflow: hidden;
}

/* Background Shapes */

.home-page-social-forum-images-hyperlink-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(145, 76, 71, 0.06);
  border-radius: 50%;
  top: -180px;
  right: -150px;
  filter: blur(40px);
}

.home-page-social-forum-images-hyperlink-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(145, 76, 71, 0.05);
  border-radius: 50%;
  bottom: -120px;
  left: -120px;
  filter: blur(40px);
}

/* Heading */

.home-page-social-forum-images-hyperlink-section-heading-wrapper {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.home-page-social-forum-images-hyperlink-section-tag {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(145, 76, 71, 0.1);
  color: #c79a5b;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.core-connect-circel-new-page-new-section-icon img {
  width: 50px;
  object-fit: cover;
}

.home-page-social-forum-images-hyperlink-section-title {
  font-size: 56px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}

.home-page-social-forum-images-hyperlink-section-title span {
  color: #c79a5b;
}

.home-page-social-forum-images-hyperlink-section-subtitle {
  max-width: 760px;
  margin: auto;
  color: #666;
  line-height: 1.9;
  font-size: 17px;
}

/* Cards */

.home-page-social-forum-images-hyperlink-section-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  height: 450px;
  transition: 0.5s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.home-page-social-forum-images-hyperlink-section-card:hover {
  transform: translateY(-12px);
}

/* Images */

.home-page-social-forum-images-hyperlink-section-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}

.home-page-social-forum-images-hyperlink-section-card:hover img {
  transform: scale(1.08);
}

/* Overlay */

.home-page-social-forum-images-hyperlink-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  display: flex;
  align-items: flex-end;
  padding: 35px;
}

/* Content */

.home-page-social-forum-images-hyperlink-section-content {
  width: 100%;
}

.home-page-social-forum-images-hyperlink-section-small-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.home-page-social-forum-images-hyperlink-section-card-title {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

.home-page-social-forum-images-hyperlink-section-card-description {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 22px;
}

/* Button */

.home-page-social-forum-images-hyperlink-section-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #fff;
  color: #c79a5b;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
}

.home-page-social-forum-images-hyperlink-section-btn:hover {
  background: #c79a5b;
  color: #fff;
}

/* Responsive */

@media (max-width: 991px) {
  .home-page-social-forum-images-hyperlink-section-title {
    font-size: 42px;
  }

  .home-page-social-forum-images-hyperlink-section-card {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .home-page-social-forum-images-hyperlink-section {
    padding: 80px 0;
  }

  .home-page-social-forum-images-hyperlink-section-title {
    font-size: 34px;
  }

  .home-page-social-forum-images-hyperlink-section-subtitle {
    font-size: 15px;
  }

  .home-page-social-forum-images-hyperlink-section-card {
    height: 360px;
  }

  .home-page-social-forum-images-hyperlink-section-card-title {
    font-size: 28px;
  }

  .home-page-social-forum-images-hyperlink-section-overlay {
    padding: 25px;
  }
}

/* ==========================================================
       CORE CONNECT SECTION
    ========================================================== */
#about-card-id {
  padding: 50px 0;
}
.core-connect-new-about-ussection-secont {
  position: relative;
  padding: 50px 50px 0 50px;
  /* background:
            linear-gradient(135deg,
                #ffffff 0%,
                #f7f3f2 100%); */
  overflow: hidden;
}

.core-connect-new-about-ussection-secont::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  /* background: rgba(145, 76, 71, 0.05); */
  border-radius: 50%;
  top: -220px;
  right: -180px;
  filter: blur(60px);
}

/* Content */

.core-connect-new-about-ussection-secont-content {
  position: relative;
  z-index: 2;
}

.core-connect-new-about-ussection-secont-tag {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 100px;
  background: rgba(145, 76, 71, 0.1);
  color: #c79a5b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.core-connect-new-about-ussection-secont-heading {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 900;
  color: #111;
  margin-bottom: 30px;
}

.core-connect-new-about-ussection-secont-description {
  font-size: 17px;
  line-height: 1.3;
  color: #555;
}

/* Image */

.core-connect-new-about-ussection-secont-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.core-connect-new-about-ussection-secont-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: 0.6s;
}

.core-connect-new-about-ussection-secont-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Cards */

.core-connect-new-about-ussection-secont-card {
  position: relative;
  height: 100%;
  padding: 40px;
  border-radius: 32px;
  background: #fff;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.core-connect-new-about-ussection-secont-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.core-connect-new-about-ussection-secont-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #c79a5b, #d7aaa2);
}

/* Card Icon */

.core-connect-new-about-ussection-secont-card-icon {
  width: 85px;
  height: 85px;
  border-radius: 24px;
  background: linear-gradient(135deg, #c79a5b, #c68d84);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #fff;
  margin-bottom: 28px;
}

/* Card Title */

.core-connect-new-about-ussection-secont-card-title {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  color: #111;
  margin-bottom: 24px;
}

/* Card Description */

.core-connect-new-about-ussection-secont-card-description {
  font-size: 15px;
  line-height: 2;
  color: #555;
}

/* Responsive */

@media (max-width: 1200px) {
  .core-connect-new-about-ussection-secont-heading {
    font-size: 48px;
  }

  .core-connect-new-about-ussection-secont-card-title {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .core-connect-new-about-ussection-secont {
    padding: 90px 0;
  }

  .core-connect-new-about-ussection-secont-heading {
    font-size: 40px;
  }

  .core-connect-new-about-ussection-secont-image-wrapper img {
    height: 500px;
  }

  .core-connect-new-about-ussection-secont-card {
    padding: 35px;
  }
}

@media (max-width: 767px) {
  .core-connect-new-about-ussection-secont {
    padding: 70px 0;
  }

  .core-connect-new-about-ussection-secont-heading {
    font-size: 32px;
  }

  .core-connect-new-about-ussection-secont-description {
    font-size: 15px;
    line-height: 1.9;
  }

  .core-connect-new-about-ussection-secont-image-wrapper img {
    height: 380px;
  }

  .core-connect-new-about-ussection-secont-card {
    padding: 28px 22px;
  }

  .core-connect-new-about-ussection-secont-card-title {
    font-size: 22px;
  }

  .core-connect-new-about-ussection-secont-card-description {
    font-size: 14px;
  }

  .core-connect-new-about-ussection-secont-card-icon {
    width: 72px;
    height: 72px;
    font-size: 32px;
  }
}

/* ================================
           Gallery Section
        ================================= */

.core-experieances-gallery-section {
  width: 100%;
  padding: 70px 20px;
  background-color: #f7f7f7;
}

.core-experieances-gallery-section-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.core-experieances-gallery-section-heading-wrapper {
  margin-bottom: 40px;
  text-align: center;
}

.core-experieances-gallery-section-heading {
  margin-bottom: 12px;
  color: #111111;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
}

.core-experieances-gallery-section-description {
  max-width: 650px;
  margin: 0 auto;
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
}

/* ================================
           Pinterest Masonry Gallery
        ================================= */

.core-experieances-gallery-section-grid {
  column-count: 4;
  column-gap: 20px;
}

.core-experieances-gallery-section-item {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  break-inside: avoid;
  border-radius: 18px;
  background-color: #dddddd;
  cursor: pointer;
}

.core-experieances-gallery-section-image {
  display: block;
  width: 100%;
  height: auto;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.core-experieances-gallery-section-item:hover
  .core-experieances-gallery-section-image {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.core-experieances-gallery-section-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.05));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.core-experieances-gallery-section-item:hover
  .core-experieances-gallery-section-overlay {
  opacity: 1;
}

.core-experieances-gallery-section-view-icon {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.core-experieances-gallery-section-item:hover
  .core-experieances-gallery-section-view-icon {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.28);
}

.core-experieances-gallery-section-view-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ================================
           Popup Slider
        ================================= */

.core-experieances-gallery-section-popup {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 90px;
  background-color: rgba(0, 0, 0, 0.94);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.core-experieances-gallery-section-popup-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.core-experieances-gallery-section-popup-content {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1400px;
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
}

.core-experieances-gallery-section-popup-image-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.core-experieances-gallery-section-popup-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.core-experieances-gallery-section-popup-image-changing {
  opacity: 0;
  transform: scale(0.97);
}

/* Close Button */

.core-experieances-gallery-section-close-button {
  position: fixed;
  z-index: 100001;
  top: 24px;
  right: 28px;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.core-experieances-gallery-section-close-button:hover {
  transform: rotate(90deg);
  background-color: rgba(255, 255, 255, 0.22);
}

.core-experieances-gallery-section-close-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Slider Buttons */

.core-experieances-gallery-section-slider-button {
  position: fixed;
  z-index: 100000;
  top: 50%;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.core-experieances-gallery-section-slider-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.core-experieances-gallery-section-slider-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.core-experieances-gallery-section-previous-button {
  left: 28px;
}

.core-experieances-gallery-section-next-button {
  right: 28px;
}

/* Image Counter */

.core-experieances-gallery-section-counter {
  position: fixed;
  z-index: 100000;
  bottom: 24px;
  left: 50%;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

/* ================================
           Responsive Design
        ================================= */

@media screen and (max-width: 1199px) {
  .core-experieances-gallery-section-grid {
    column-count: 3;
  }
}

@media screen and (max-width: 767px) {
  .core-experieances-gallery-section {
    padding: 50px 15px;
  }

  .core-experieances-gallery-section-heading-wrapper {
    margin-bottom: 30px;
  }

  .core-experieances-gallery-section-grid {
    column-count: 2;
    column-gap: 12px;
  }

  .core-experieances-gallery-section-item {
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .core-experieances-gallery-section-popup {
    padding: 70px 15px 85px;
  }

  .core-experieances-gallery-section-popup-content {
    height: calc(100vh - 155px);
  }

  .core-experieances-gallery-section-close-button {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .core-experieances-gallery-section-slider-button {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .core-experieances-gallery-section-slider-button:hover {
    transform: scale(1.05);
  }

  .core-experieances-gallery-section-previous-button {
    left: 18px;
  }

  .core-experieances-gallery-section-next-button {
    right: 18px;
  }

  .core-experieances-gallery-section-counter {
    bottom: 27px;
  }
}

@media screen and (max-width: 480px) {
  .core-experieances-gallery-section-grid {
    column-count: 1;
  }

  .core-experieances-gallery-section-item {
    margin-bottom: 16px;
  }

  .core-experieances-gallery-section-description {
    font-size: 15px;
  }

  .core-experieances-gallery-section-popup {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.footer-social-icons-main-container a img {
  width: 25px;
}
.footer-social-icons-main-container {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.footer-social-icons-main-container a {
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
}

.submit-sticky-btn-right-center-wrapper {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9999;
  transform: translateY(-50%);
}

.submit-sticky-btn-right-center-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-height: 210px;
  padding: 18px 10px;
  /* background-color: #000000; */
  background: linear-gradient(to right, #7a5a15, #d4a847);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition:
    background-color 0.3s ease,
    width 0.3s ease;
}

.submit-sticky-btn-right-center-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.submit-sticky-btn-right-center-button:hover {
  width: 55px;
  background-color: #333333;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .submit-sticky-btn-right-center-button {
    width: 42px;
    min-height: 180px;
    padding: 14px 8px;
  }

  .submit-sticky-btn-right-center-text {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
}



.core-connect-members-form-group select{
      padding: 14px 12px;
    border: none;
    border-bottom: 2px solid #dcd7d2;
    background: #efebe7;
    outline: none;
    font-size: 14px;
}


ul {
    line-height: 1.8 !important;
}










.core-connect-privacy-policy-page-root {
            min-height: 100vh;
        }

        .core-connect-privacy-policy-page-hero {
            position: relative;
            overflow: hidden;
            padding: 96px 24px 82px;
            color: #ffffff;
            background:
                radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.16), transparent 28%),
                linear-gradient(135deg, var(--core-connect-privacy-policy-page-primary-dark), var(--core-connect-privacy-policy-page-primary));
        }

        .core-connect-privacy-policy-page-hero::after {
            content: "";
            position: absolute;
            right: -120px;
            bottom: -180px;
            width: 440px;
            height: 440px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            box-shadow:
                0 0 0 46px rgba(255, 255, 255, 0.035),
                0 0 0 92px rgba(255, 255, 255, 0.025);
        }

        .core-connect-privacy-policy-page-container {
            width: min(1180px, 100%);
            margin: 0 auto;
        }

        .core-connect-privacy-policy-page-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 850px;
        }

        .core-connect-privacy-policy-page-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin: 0 0 18px;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .core-connect-privacy-policy-page-eyebrow::before {
            content: "";
            width: 34px;
            height: 2px;
            background: currentColor;
        }

        .core-connect-privacy-policy-page-title {
            max-width: 800px;
            margin: 0;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(38px, 6vw, 72px);
            line-height: 1.04;
            letter-spacing: -0.035em;
        }

        .core-connect-privacy-policy-page-hero-description {
            max-width: 760px;
            margin: 24px 0 0;
            color: rgba(255, 255, 255, 0.84);
            font-size: clamp(16px, 2vw, 19px);
            line-height: 1.7;
        }

        .core-connect-privacy-policy-page-layout {
            display: grid;
            /* grid-template-columns: minmax(250px, 300px) minmax(0, 1fr); */
            gap: 34px;
            align-items: start;
            padding: 48px 24px 84px;
        }

        .core-connect-privacy-policy-page-sidebar {
            position: sticky;
            top: 24px;
            max-height: calc(100vh - 48px);
            overflow: auto;
            padding: 24px;
            background: var(--core-connect-privacy-policy-page-surface);
            border: 1px solid var(--core-connect-privacy-policy-page-border);
            border-radius: var(--core-connect-privacy-policy-page-radius-large);
            box-shadow: var(--core-connect-privacy-policy-page-shadow);
            scrollbar-width: thin;
        }

        .core-connect-privacy-policy-page-toc-title {
            margin: 0 0 16px;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .core-connect-privacy-policy-page-toc-list {
            display: grid;
            gap: 3px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .core-connect-privacy-policy-page-toc-item {
            margin: 0;
        }

        .core-connect-privacy-policy-page-toc-link {
            display: grid;
            grid-template-columns: 28px minmax(0, 1fr);
            gap: 8px;
            align-items: start;
            padding: 10px 9px;
            color: var(--core-connect-privacy-policy-page-muted);
            border-radius: 10px;
            text-decoration: none;
            transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
        }

        .core-connect-privacy-policy-page-toc-link:hover {
            color: var(--core-connect-privacy-policy-page-primary);
            background: var(--core-connect-privacy-policy-page-primary-soft);
            transform: translateX(2px);
        }

        .core-connect-privacy-policy-page-toc-number {
            color: var(--core-connect-privacy-policy-page-primary);
            font-size: 11px;
            font-weight: 800;
            line-height: 1.9;
        }

        .core-connect-privacy-policy-page-toc-label {
            font-size: 13px;
            font-weight: 650;
            line-height: 1.45;
        }

        .core-connect-privacy-policy-page-main {
            min-width: 0;
        }

        .core-connect-privacy-policy-page-introduction {
            margin-bottom: 28px;
            padding: clamp(24px, 4vw, 42px);
            background: var(--core-connect-privacy-policy-page-surface);
            border: 1px solid var(--core-connect-privacy-policy-page-border);
            border-radius: var(--core-connect-privacy-policy-page-radius-large);
            box-shadow: var(--core-connect-privacy-policy-page-shadow);
        }

        .core-connect-privacy-policy-page-introduction-title {
            margin: 0 0 18px;
            color: var(--core-connect-privacy-policy-page-primary);
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(26px, 4vw, 38px);
            line-height: 1.2;
        }

        .core-connect-privacy-policy-page-section {
            scroll-margin-top: 24px;
            margin-bottom: 24px;
            padding: clamp(24px, 4vw, 42px);
            background: var(--core-connect-privacy-policy-page-surface);
            border: 1px solid var(--core-connect-privacy-policy-page-border);
            border-radius: var(--core-connect-privacy-policy-page-radius-large);
            box-shadow: 0 14px 42px rgba(23, 32, 42, 0.055);
        }

        .core-connect-privacy-policy-page-section-heading-row {
            display: grid;
            grid-template-columns: 48px minmax(0, 1fr);
            gap: 16px;
            align-items: start;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--core-connect-privacy-policy-page-border);
        }

        .core-connect-privacy-policy-page-section-number {
            display: grid;
            width: 48px;
            height: 48px;
            place-items: center;
            color: var(--core-connect-privacy-policy-page-primary);
            background: var(--core-connect-privacy-policy-page-primary-soft);
            border-radius: 14px;
            font-size: 13px;
            font-weight: 900;
        }

        .core-connect-privacy-policy-page-section-title {
            margin: 3px 0 0;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(25px, 3.5vw, 36px);
            line-height: 1.22;
            letter-spacing: -0.02em;
        }

        .core-connect-privacy-policy-page-section-content {
            min-width: 0;
        }

        .core-connect-privacy-policy-page-text {
            margin: 0 0 18px;
            color: var(--core-connect-privacy-policy-page-muted);
        }

        .core-connect-privacy-policy-page-text:last-child {
            margin-bottom: 0;
        }

        .core-connect-privacy-policy-page-text strong,
        .core-connect-privacy-policy-page-feature-card-text strong,
        .core-connect-privacy-policy-page-list-item strong {
            color: var(--core-connect-privacy-policy-page-ink);
        }

        .core-connect-privacy-policy-page-list {
            display: grid;
            gap: 12px;
            margin: 18px 0 22px;
            padding: 0;
            list-style: none;
        }

        .core-connect-privacy-policy-page-list-item {
            position: relative;
            padding: 14px 16px 14px 46px;
            color: var(--core-connect-privacy-policy-page-muted);
            background: #fbfbfc;
            border: 1px solid var(--core-connect-privacy-policy-page-border);
            border-radius: 13px;
        }

        .core-connect-privacy-policy-page-list-item::before {
            content: "✓";
            position: absolute;
            top: 13px;
            left: 16px;
            display: grid;
            width: 22px;
            height: 22px;
            place-items: center;
            color: #ffffff;
            background: var(--core-connect-privacy-policy-page-primary);
            border-radius: 50%;
            font-size: 11px;
            font-weight: 900;
        }

        .core-connect-privacy-policy-page-list-compact {
            gap: 8px;
            margin: 0;
        }

        .core-connect-privacy-policy-page-list-compact .core-connect-privacy-policy-page-list-item {
            padding: 0 0 0 20px;
            background: transparent;
            border: 0;
            border-radius: 0;
        }

        .core-connect-privacy-policy-page-list-compact .core-connect-privacy-policy-page-list-item::before {
            content: "•";
            top: 0;
            left: 0;
            width: auto;
            height: auto;
            color: var(--core-connect-privacy-policy-page-primary);
            background: transparent;
            font-size: 18px;
        }

        .core-connect-privacy-policy-page-callout {
            display: grid;
            /* grid-template-columns: 38px minmax(0, 1fr); */
            gap: 14px;
            align-items: start;
            margin: 22px 0;
            padding: 18px;
            background: var(--core-connect-privacy-policy-page-primary-soft);
            border: 1px solid #f0cbd7;
            border-radius: var(--core-connect-privacy-policy-page-radius-medium);
        }

        .core-connect-privacy-policy-page-callout-icon {
            display: grid;
            width: 38px;
            height: 38px;
            place-items: center;
            color: #ffffff;
            background: var(--core-connect-privacy-policy-page-primary);
            border-radius: 50%;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 20px;
            font-style: italic;
            font-weight: 700;
        }

        .core-connect-privacy-policy-page-callout-text {
            margin: 3px 0 0;
            color: var(--core-connect-privacy-policy-page-muted);
        }

        .core-connect-privacy-policy-page-feature-card {
            margin: 14px 0;
            padding: 18px 20px;
            background: #fbfbfc;
            border: 1px solid var(--core-connect-privacy-policy-page-border);
            border-left: 4px solid var(--core-connect-privacy-policy-page-primary);
            border-radius: 12px;
        }

        .core-connect-privacy-policy-page-feature-card-text {
            margin: 0;
            color: var(--core-connect-privacy-policy-page-muted);
        }

        .core-connect-privacy-policy-page-vendor-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
            margin-top: 26px;
        }

        .core-connect-privacy-policy-page-vendor-card {
            min-width: 0;
            overflow: hidden;
            border: 1px solid var(--core-connect-privacy-policy-page-border);
            border-radius: var(--core-connect-privacy-policy-page-radius-medium);
            background: #fbfbfc;
        }

        .core-connect-privacy-policy-page-vendor-card-header {
            padding: 22px;
            color: #ffffff;
            background: linear-gradient(135deg, var(--core-connect-privacy-policy-page-primary-dark), var(--core-connect-privacy-policy-page-primary));
        }

        .core-connect-privacy-policy-page-vendor-eyebrow {
            display: block;
            margin-bottom: 5px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            opacity: 0.78;
        }

        .core-connect-privacy-policy-page-vendor-name {
            margin: 0;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 25px;
            line-height: 1.2;
        }

        .core-connect-privacy-policy-page-vendor-details {
            margin: 0;
        }

        .core-connect-privacy-policy-page-vendor-row {
            display: grid;
            grid-template-columns: minmax(120px, 0.38fr) minmax(0, 0.62fr);
            gap: 14px;
            padding: 15px 18px;
            border-bottom: 1px solid var(--core-connect-privacy-policy-page-border);
        }

        .core-connect-privacy-policy-page-vendor-row:last-child {
            border-bottom: 0;
        }

        .core-connect-privacy-policy-page-vendor-label {
            color: var(--core-connect-privacy-policy-page-ink);
            font-size: 12px;
            font-weight: 800;
            line-height: 1.45;
        }

        .core-connect-privacy-policy-page-vendor-data {
            min-width: 0;
            margin: 0;
            color: var(--core-connect-privacy-policy-page-muted);
            font-size: 13px;
            line-height: 1.58;
        }

        .core-connect-privacy-policy-page-vendor-value {
            white-space: pre-line;
            font-size: 16px;
        }
        .core-connect-privacy-policy-page-vendor-value {
        }
        .core-connect-privacy-policy-page-contact-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
            margin: 24px 0;
        }

        .core-connect-privacy-policy-page-contact-card {
            padding: 22px;
            background: #fbfbfc;
            border: 1px solid var(--core-connect-privacy-policy-page-border);
            border-radius: var(--core-connect-privacy-policy-page-radius-medium);
        }

        .core-connect-privacy-policy-page-contact-title {
            margin: 0 0 16px;
            color: var(--core-connect-privacy-policy-page-primary);
            font-family: Georgia, "Times New Roman", serif;
            font-size: 23px;
            line-height: 1.25;
        }

        .core-connect-privacy-policy-page-contact-body {
            display: grid;
            gap: 6px;
        }

        .core-connect-privacy-policy-page-address-line {
            color: var(--core-connect-privacy-policy-page-muted);
        }

        .core-connect-privacy-policy-page-contact-row {
            display: grid;
            grid-template-columns: 58px minmax(0, 1fr);
            gap: 10px;
            margin-top: 8px;
        }

        .core-connect-privacy-policy-page-contact-label {
            color: var(--core-connect-privacy-policy-page-ink);
            font-size: 13px;
            font-weight: 800;
        }

        .core-connect-privacy-policy-page-contact-link {
            min-width: 0;
            overflow-wrap: anywhere;
        }

        .core-connect-privacy-policy-page-footer {
            padding: 26px 24px;
            color: rgba(255, 255, 255, 0.74);
            background: var(--core-connect-privacy-policy-page-primary-dark);
            text-align: center;
        }

        .core-connect-privacy-policy-page-footer-text {
            margin: 0;
            font-size: 13px;
        }

        @media (max-width: 1024px) {
            .core-connect-privacy-policy-page-layout {
                grid-template-columns: 1fr;
            }

            .core-connect-privacy-policy-page-sidebar {
                position: static;
                max-height: none;
            }

            .core-connect-privacy-policy-page-toc-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 760px) {
            .core-connect-privacy-policy-page-hero {
                padding: 70px 20px 62px;
            }

            .core-connect-privacy-policy-page-layout {
                gap: 22px;
                padding: 26px 16px 58px;
            }

            .core-connect-privacy-policy-page-sidebar {
                padding: 18px;
                border-radius: 18px;
            }

            .core-connect-privacy-policy-page-toc-list {
                grid-template-columns: 1fr;
            }

            .core-connect-privacy-policy-page-section,
            .core-connect-privacy-policy-page-introduction {
                border-radius: 18px;
            }

            .core-connect-privacy-policy-page-section-heading-row {
                grid-template-columns: 40px minmax(0, 1fr);
                gap: 12px;
            }

            .core-connect-privacy-policy-page-section-number {
                width: 40px;
                height: 40px;
                border-radius: 12px;
            }

            .core-connect-privacy-policy-page-vendor-grid,
            .core-connect-privacy-policy-page-contact-grid {
                grid-template-columns: 1fr;
            }

            .core-connect-privacy-policy-page-vendor-row {
                grid-template-columns: 1fr;
                gap: 5px;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 15px;
                line-height: 1.68;
            }

            .core-connect-privacy-policy-page-hero {
                padding: 56px 16px 50px;
            }

            .core-connect-privacy-policy-page-layout {
                padding-right: 12px;
                padding-left: 12px;
            }

            .core-connect-privacy-policy-page-section,
            .core-connect-privacy-policy-page-introduction {
                padding: 21px 17px;
            }

            .core-connect-privacy-policy-page-section-heading-row {
                grid-template-columns: 1fr;
            }

            .core-connect-privacy-policy-page-section-number {
                width: 36px;
                height: 36px;
            }

            .core-connect-privacy-policy-page-list-item {
                padding: 13px 13px 13px 42px;
            }

            .core-connect-privacy-policy-page-list-item::before {
                left: 13px;
            }

            .core-connect-privacy-policy-page-callout {
                grid-template-columns: 1fr;
            }

            .core-connect-privacy-policy-page-contact-row {
                grid-template-columns: 1fr;
                gap: 2px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            .core-connect-privacy-policy-page-toc-link {
                transition: none;
            }
        }

        @media print {
            body {
                background: #ffffff;
            }

            .core-connect-privacy-policy-page-hero {
                padding: 40px 0;
                color: #000000;
                background: #ffffff;
                border-bottom: 2px solid #000000;
            }

            .core-connect-privacy-policy-page-hero-description {
                color: #333333;
            }

            .core-connect-privacy-policy-page-layout {
                display: block;
                padding: 24px 0;
            }

            .core-connect-privacy-policy-page-sidebar,
            .core-connect-privacy-policy-page-footer {
                display: none;
            }

            .core-connect-privacy-policy-page-section,
            .core-connect-privacy-policy-page-introduction {
                break-inside: avoid;
                box-shadow: none;
            }
        }