:root {
    --primary-color: #fa7d09;
    --primary-hover-color: #ff7b00;
    --secondary-color: #4a4a4a;
    --background-color: #f8f7ff;
    --white-color: white;
    --dropdown-hover-background-color: #f8f9fa;
    --navbar-shadow-color: rgba(0, 0, 0, 0.1);
    --navbar-scroll-color: #e2e0ea;
    --orange-color: #fa7d09;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .matrimony-navbar {
    background-color: var(--background-color);
    /* padding: 15px 0; */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999 !important;
    transition: all 0.5s ease;
  }
  
  .matrimony-navbar.scrolled {
    background-color: var(--navbar-scroll-color);
    box-shadow: 0 2px 10px var(--navbar-shadow-color);
  }
  
  .matrimony-navbar .navbar-brand img {
    height: 80px;
    width: auto;
  }
  
  .matrimony-navbar .navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.5rem 1.5rem !important;
    position: relative;
  }
  
  .matrimony-navbar .navbar-nav .nav-link i {
    font-size: 10px;
  }
  
  .matrimony-navbar .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
  }
  
  /* Dropdown styles */
  .matrimony-navbar .dropdown-menu {
    display: none;
    background-color: var(--white-color);
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 10px var(--navbar-shadow-color);
    margin-top: 0;
  }
  
  .matrimony-navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .matrimony-navbar .dropdown-item {
    color: var(--secondary-color);
    padding: 8px 16px;
  }
  
  .matrimony-navbar .dropdown-item:hover {
    background-color: var(--dropdown-hover-background-color);
    color: var(--primary-color);
  }
  
  /* Auth buttons */
  .matrimony-navbar .sign-in {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 40px;
    transition: color 0.3s ease;
    border: 1px solid var(--primary-color);
  }
  
  .matrimony-navbar .sign-in:hover {
    color: var(--primary-color);
  }
  
  .matrimony-navbar .register {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
  }
  
  .matrimony-navbar .register:hover {
    background-color: var(--primary-hover-color);
    color: var(--white-color);
  }
  
  /* Mobile menu */
  @media (max-width: 991.98px) {
    .matrimony-navbar .navbar-collapse {
      background-color: var(--white-color);
      padding: 1rem;
      border-radius: 4px;
      box-shadow: 0 2px 10px var(--navbar-shadow-color);
    }
  
    .matrimony-navbar .dropdown-menu {
      border: none;
      box-shadow: none;
      padding-left: 1rem;
    }
  
    .matrimony-navbar .navbar-nav .nav-item {
      padding: 0.5rem 0;
    }
  
    .matrimony-navbar .auth-buttons {
      flex-direction: column;
      gap: 10px;
      padding: 1rem 0;
    }
  
    .matrimony-navbar .sign-in {
      display: block;
      text-align: center;
    }
  
    .matrimony-navbar .register {
      display: block;
      text-align: center;
    }
  }
  
  /* Add to existing CSS file */
  
  /* Hero Section */
  
  /* Newsletter Section */
  .matrimony-newsletter {
    margin-bottom: -100px;
    position: relative;
    z-index: 1;
  }
  
  .newsletter-card {
    background-color: #f1f3f3;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .newsletter-card h2 {
    font-size: 40px;
  }
  
  .newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 20px auto 0;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 30px;
    width: 100%;
    padding-right: 100px; /* Space for button inside */
  }
  
  .newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px 20px;
    border: none;
    background-color: var(--primary-color); /* Change color as per design */
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
  }
  
  /* New Footer */
  
  .custom-footer {
    background-color: black;
    color: white;
    padding: 150px 0px 100px 0px;
  }
  
  .footer-logo img {
    height: 90px;
  }
  
  .footer-description {
    font-size: 14px;
    color: var(--text-color);
    max-width: 350px;
    line-height: 1.5;
    color: #bababa;
  }
  
  .footer-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #bababa;
  }
  
  .list-unstyled {
    padding: 0;
  }
  
  .list-unstyled li {
    margin-bottom: 8px;
  }
  
  .list-unstyled li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
  }
  
  .list-unstyled li a:hover {
    color: var(--primary-color);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-description {
      max-width: 100%;
    }
  
    .text-lg-start {
      text-align: center !important;
    }
  
    .footer-logo img {
      display: block;
      margin: 0 auto;
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 991.98px) {
    .matrimony-hero-content h1 {
      font-size: 36px;
    }
  
    .process-bottom {
      margin-top: 0;
    }
  
    .newsletter-form {
      flex-direction: column;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
  }
  
  @media (max-width: 767.98px) {
    .matrimony-hero-content h1 {
      font-size: 28px;
    }
  
    .matrimony-hero-content p {
      font-size: 16px;
    }
  
    .matrimony-stat-item img {
      width: 80px;
      height: 80px;
    }
  
    .matrimony-stat-item h3 {
      font-size: 28px;
    }
  }
  /* How We Work Section */
  .how-we-work-section {
    padding: 150px 0;
    margin-bottom: 100px;
    background-color: var(--background-color);
    background: url("../public/images/how-we-work.jpg");
    background-position: center 10%;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .work-content h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
  }
  
  .work-content .lead {
    color: var(--secondary-color);
    opacity: 0.8;
    font-weight: 400;
    margin-bottom: 40px;
    font-size: 16px;
  }
  
  .work-steps {
    position: relative;
  }
  
  .step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .step-icon-work {
    width: 50px;
    height: 50px;
    /* background-color: var(--orange-color); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .step-icon-work img {
    width: 100%;
  }
  
  .step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
  }
  
  .step-content p {
    font-size: 14px;
    color: var(--secondary-color);
    opacity: 0.8;
    margin: 0;
  }
  
  .step-arrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    color: var(--secondary-color);
    opacity: 0.6;
  }
  
  .video-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .video-wrapper .play-btn {
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .video-wrapper .play-btn i {
    font-size: 28px;
    margin-left: 5px;
    color: var(--orange-color);
  }
  
  /* Video Modal */
  .modal-content {
    background-color: transparent;
    border: none;
  }
  
  .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1;
    background-color: white;
    opacity: 1;
    padding: 10px;
    border-radius: 50%;
  }
  
  .nav-link-active {
    color: var(--primary-color) !important;
  }
  
  /* new css  */
  
  .nav-link-active {
    color: var(--primary-color) !important;
  }
  
  .jobs-contact-info {
    background-color: #fbfbfb;
    padding: 100px 0px;
  }
  
  .jobs-contact-card {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #b9bfc5;
  }
  
  .jobs-contact-call {
    background: #f9fef3;
  }
  .jobs-contact-call .jobs-contact-icon {
    background: #ebffd2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .jobs-contact-email {
    background: #f1f9fc;
  }
  .jobs-contact-email .jobs-contact-icon {
    background: #c9ebf4;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .jobs-contact-visit {
    background: #fff5f3;
  }
  .jobs-contact-visit .jobs-contact-icon {
    background: #ffdad9;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .jobs-contact-call i {
    color: #c1e594;
  }
  .jobs-contact-email i {
    color: #45a5bc;
  }
  .jobs-contact-visit i {
    color: #eca694;
  }
  .jobs-contact-card:hover {
    transform: translateY(-5px);
  }
  
  .jobs-contact-icon {
    font-size: 24px;
    color: var(--contact-primary);
    margin-bottom: 10px;
  }
  
  .jobs-contact-card h4 {
    font-size: 28px;
    font-weight: bold;
    color: var(--contact-text);
    margin-bottom: 5px;
  }
  
  .jobs-contact-card p,
  .jobs-contact-card address {
    font-size: 16px;
    color: #777;
    margin-bottom: 10px;
  }
  
  .jobs-contact-link {
    font-size: 16px;
    color: var(--contact-primary);
    text-decoration: none;
    font-weight: bold;
  }
  
  .jobs-contact-link:hover {
    text-decoration: underline;
  }
  
  /* Contact Form */
  .jobs-contact-form {
    background-color: #fbfbfb;
    padding: 50px 0px 100px 0px;
  }
  
  .jobs-contact-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--contact-text);
  }
  
  .jobs-contact-subtext {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
  }
  
  .jobs-contact-form .form-control {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ddd;
  }
  
  .jobs-contact-form .btn-dark {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 400;
  }
  
  /* Google Map */
  .jobs-contact-map iframe {
    border-radius: 10px;
    width: 100%;
    height: 500px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .jobs-contact-info .row {
      text-align: center;
    }
  
    .jobs-contact-card {
      padding: 20px;
    }
  
    /* .jobs-contact-form {
      text-align: center;
    } */
  
    .jobs-contact-form form {
      max-width: 100%;
    }
    .jobs-contact-map iframe {
      margin-top: 50px;
    }
  }
  
  /* Main Section Styling */
  .jobs-step-section {
    background: #fbfbfb;
  }
  .jobs-step-section .container {
    background-color: #e1e3e5;
    margin-bottom: 50px;
    border-radius: 30px;
  }
  
  .jobs-step-box {
    border-radius: 15px;
  }
  
  /* Left Text Content */
  .jobs-step-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--step-text);
  }
  
  .jobs-step-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .jobs-step-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .jobs-step-list li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .jobs-step-list li i {
    color: black;
    margin-right: 10px;
    font-size: 18px;
  }
  
  /* Button Styling */
  .jobs-step-button {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
  }
  
  /* Right Image Content */
  .jobs-step-image {
    position: relative;
    display: inline-block;
  }
  
  .jobs-step-image img {
    max-width: 100%;
    border-radius: 15px;
  }
  
  .jobs-step-caption {
    position: absolute;
    bottom: 20px;
    left: -50px;
    background-color: transparent;
    padding: 5px 10px;
    text-align: left;
  }
  
  .jobs-step-caption h5 {
    font-size: 20px;
    font-weight: 500;
    color: #444;
    margin-bottom: 20px;
    margin-right: 50px;
  }
  .jobs-step-caption h5::after {
    content: "";
    background: #000;
    height: 1px;
    width: 100%;
    display: block;
  }
  
  .jobs-step-caption p {
    font-size: 16px;
    color: #888;
    margin-top: -15px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .jobs-step-list li {
      justify-content: center;
    }
  
    .jobs-step-caption {
      text-align: center;
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  .job-blogs {
    padding: 80px 0;
    margin-bottom: 100px;
  }
  
  .job-blogs-label {
    color: var(--primary-color);
    font-size: 18px;
    display: block;
    margin-bottom: 16px;
  }
  
  .job-blogs-header h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
  }
  
  .job-blogs-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Row height matching */
  .job-blogs .row {
    height: 100%;
  }
  
  .job-blogs .col-lg-6 {
    display: flex;
    flex-direction: column;
  }
  
  /* Card container styles */
  .job-blogs-featured,
  .job-blogs-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* Image container */
  .job-blogs-image-container {
    flex: 1;
    position: relative;
    min-height: 300px;
  }
  
  .job-blogs-featured img,
  .job-blogs-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
  }
  
  /* Content styles */
  .job-blogs-content {
    padding: 24px 0;
  }
  
  .job-blogs-date {
    color: #666;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
  }
  
  .job-blogs-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
  }
  
  .job-blogs-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
  }
  
  .job-blogs-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .job-blogs-btn:hover {
    background: #333;
    color: #fff;
  }
  
  /* Make right column cards equal height */
  .job-blogs .col-lg-6 .row {
    height: 100%;
  }
  
  .job-blogs .col-lg-6 .col-12 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Responsive Styles */
  @media (max-width: 991.98px) {
    .job-blogs-content h3 {
      font-size: 20px;
    }
  }
  
  @media (max-width: 767.98px) {
    .job-blogs {
      padding: 60px 0;
    }
  
    .job-blogs-header h2 {
      font-size: 28px;
    }
  }
  
  @media (max-width: 575.98px) {
    .job-blogs-content {
      padding: 20px 0;
    }
  
    .job-blogs-content h3 {
      font-size: 18px;
    }
  
    .job-blogs-content p {
      font-size: 14px;
    }
  }
  
  /* about us */
  
  .about-us-section {
    padding: 60px 0px;
    background: #fbfbfb;
  }
  
  /* Heading */
  .about-us-heading {
    color: black;
    font-weight: 700;
    font-size: 2rem;
  }
  
  /* Paragraphs */
  .about-us-text {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
  }
  
  /* Image Styling */
  .about-us-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #dbe4ed;
  }
  
  /* Responsive Text */
  @media (max-width: 768px) {
    .about-us-heading {
      font-size: 1.8rem;
      text-align: center;
    }
  
    .about-us-text {
      font-size: 1rem;
      text-align: center;
    }
  }
  
  /* Mobile Responsive */
  @media (max-width: 576px) {
    .about-us-section {
      padding: 40px 10px;
    }
  
    .about-us-heading {
      font-size: 1.5rem;
    }
  
    .about-us-text {
      font-size: 0.95rem;
    }
  }
  
  /* about why-choose-us */
  .about-why-choose-section {
    background-color: #fef4ea; /* Keeping the original background */
    padding: 100px 0px;
  }
  
  /* Box Styling */
  .about-why-choose-box {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 10px var(--navbar-shadow-color);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%; /* Ensures all boxes have the same height */
  }
  
  .about-why-choose-box:hover {
    transform: translateY(-5px);
  }
  
  /* Header Styling: Image and Title in One Line */
  .about-why-choose-header {
    display: flex;
    align-items: center;
    gap: 15px;
    /* justify-content: flex-start; */
    margin-bottom: 20px;
  }
  
  /* Icon Styling */
  .about-why-choose-icon {
    width: 30px;
    height: 30px;
  }
  
  /* Title */
  .about-why-choose-title {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
  }
  
  /* Description Text */
  .about-why-choose-text {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Responsive Layout */
  @media (max-width: 992px) {
    .about-why-choose-box {
      padding: 18px;
    }
    .about-why-choose-title {
      font-size: 1.1rem;
    }
    .about-why-choose-text {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 768px) {
    .about-why-choose-section {
      padding: 40px 10px;
    }
    .about-why-choose-title {
      font-size: 1rem;
    }
    .about-why-choose-text {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 576px) {
    .about-why-choose-title {
      font-size: 0.95rem;
    }
    .about-why-choose-text {
      font-size: 0.85rem;
    }
  }
  
  .jobs-hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding-top: 120px;
    height: 60vh;
    overflow: hidden;
  }
  
  .jobs-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .jobs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Same as your linear-gradient overlay */
    z-index: -1;
  }
  
  .jobs-hero-section h1 {
    font-size: 44px;
    font-weight: bold;
    position: relative;
    z-index: 1;
  }
  
  /* Hero Section */
  .community-page-hero {
    padding: 200px 0px 0px 0px;
  }
  
  .community-page-hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .community-page-hero-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
  }
  
  .community-page-hero-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .community-page-hero-btn:hover {
    background-color: var(--primary-hover-color);
  }
  
  .community-page-hero-img {
    width: 100%;
    max-width: 500px;
  }
  
  /* Interest Section */
  .community-interest {
    background-color: #f8f8ff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .community-interest-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 40px;
  }
  
  /* Wrapper for Items */
  .community-interest-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    padding: 0px;
  }
  
  /* Each Item (Circle + Text) */
  .community-interest-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 100px;
  }
  
  /* Circle Icon Box */
  .community-interest-box {
    background-color: var(--white-color);
    border-radius: 50%;
    width: 130px; /* Increased size */
    height: 130px; /* Ensures perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px var(--navbar-shadow-color);
    transition: transform 0.3s ease-in-out;
  }
  
  .community-interest-box:hover {
    transform: translateY(-5px);
  }
  
  /* Icon */
  .community-interest-icon {
    width: 60px;
    height: 60px;
  }
  
  /* Text Below Icons */
  .community-interest-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 10px;
  }
  
  /* Discover More Link */
  .community-interest-link-container {
    margin-top: 30px;
  }
  
  .community-interest-link {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
  }
  .community-interest-link:hover {
    text-decoration: underline;
  }
  
  .community-interest-link:hover {
    color: var(--primary-hover-color);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .community-interest-wrapper {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .community-interest-title {
      font-size: 2rem;
    }
  
    .community-interest-box {
      width: 110px;
      height: 110px;
    }
  }
  
  @media (max-width: 576px) {
    .community-interest-box {
      width: 100px;
      height: 100px;
    }
  
    .community-interest-icon {
      width: 50px;
      height: 50px;
    }
  }
  
  /* General Styles */
  .community-page-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .community-page-description {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  /* Events Section */
  .community-page-events {
    padding: 60px 0;
  }
  
  .community-page-events-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .community-page-event-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--shadow-color);
    width: calc(25% - 20px);
    min-width: 200px;
    padding: 15px;
    text-align: left;
  }
  
  .community-page-event-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .community-page-event-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
  }
  
  .community-page-event-host,
  .community-page-event-time,
  .community-page-event-location,
  .community-page-event-price {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 2px 0;
  }
  
  /* Cities Section */
  .community-page-cities {
    background-color: #f8f7ff;
    padding: 100px 0;
    text-align: center;
  }
  
  .community-page-cities-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .community-page-city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(25% - 20px);
    min-width: 150px;
    text-align: center;
  }
  
  .community-page-city-image {
    width: 100%;
    height: 200px;
    background-color: #ccc;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .community-page-city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .community-page-city-name {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .community-page-events-wrapper,
    .community-page-cities-wrapper {
      justify-content: center;
    }
  
    .community-page-event-card {
      width: calc(50% - 20px);
    }
  
    .community-page-city-card {
      width: calc(50% - 20px);
    }
  }
  
  @media (max-width: 768px) {
    .community-page-event-card {
      width: 100%;
    }
  
    .community-page-city-card {
      width: 100%;
    }
  }
  
  /* General Styles */
  .community-page-how-it-works {
    background-color: #f8f7ff;
    text-align: center;
    padding: 100px 0px;
  }
  
  /* Card Styling */
  .community-page-card {
    background-color: var(--white-color);
    padding: 30px;
    box-shadow: 0 4px 8px var(--shadow-color);
  }
  
  /* Icon Styling */
  .community-page-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 165, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  }
  
  .community-page-icon img {
    width: 30px;
    height: 30px;
  }
  
  /* Card Title */
  .community-page-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  /* Card Text */
  .community-page-card-text {
    font-size: 1rem;
    color: var(--secondary-color);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .community-page-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .community-page-title {
      font-size: 1.8rem;
    }
  
    .community-page-card {
      padding: 20px;
    }
  
    .community-page-icon {
      width: 50px;
      height: 50px;
    }
  
    .community-page-icon img {
      width: 25px;
      height: 25px;
    }
  
    .community-page-card-title {
      font-size: 1.1rem;
    }
  
    .community-page-card-text {
      font-size: 0.95rem;
    }
  }
  
  /* Blog Section */
  .matrimony-blog {
    padding: 80px 0;
    background-color: #f1f3f3;
    margin-bottom: 80px;
  }
  .matrimony-blog h2 {
    font-size: 48px;
  }
  
  .matrimony-blog-card {
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: white;
  }
  
  .blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .blog-content h3,
  .blog-content p {
    text-align: left;
  }
  .blog-date {
    color: var(--primary-color);
  }
  
  .blog-date i {
    margin-right: 5px;
  }
  
  .read-more {
    color: black;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid black;
    border-radius: 20px;
    padding: 5px 10px;
  }
  .read-more i {
    font-size: 12px;
  }
  .read-more:hover {
    color: var(--primary-hover-color);
  }
  
  /* Step 1 Layout */
  .community-page-interest-container {
    background: #f1f3f3;
  }
  .community-page-step-1 {
    text-align: center;
  }
  
  /* Custom Checkbox */
  .custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
  }
  
  .custom-checkbox.checked {
    background-color: var(--primary-color);
    border: none;
    position: relative;
  }
  
  .custom-checkbox.checked::after {
    content: "✔";
    color: white;
    font-size: 14px;
    position: absolute;
    left: 4px;
    top: 1px;
  }
  
  /* Step 2 Layout */
  .community-page-step-2 {
    text-align: center;
  }
  
  /* Group List */
  .community-page-group-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--shadow-color);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s;
  }
  
  .community-page-group-card:hover {
    transform: translateY(-5px);
  }
  
  .community-page-group-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  
  /* Join Button */
  .community-page-join-btn {
    width: 100%;
    background-color: var(--primary-color);
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
  }
  
  /* When selected */
  .community-page-join-btn.selected {
    background-color: var(--white-color);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
  }
  
  /* Tick Mark */
  .community-page-join-btn.selected::before {
    content: "✔";
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 5px;
  }
  
  .community-page-interest-container .container {
    max-width: 900px;
    padding: 150px 1rem;
  }
  
  .community-page-interest-container h1 {
    color: var(--secondary-color);
  }
  .community-page-interest-search-box {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .community-page-interest-search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
  }
  
  .community-page-interest-search-input {
    padding-left: 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    width: 100%;
    height: 45px;
  }
  
  .community-page-interest-box {
    background: var(--white-color);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .community-page-interest-box:hover {
    background: var(--dropdown-hover-background-color);
  }
  
  .community-page-interest-box.selected {
    border-color: var(--primary-color);
  }
  
  .community-page-interest-title {
    display: flex;
    align-items: center;
  }
  
  .community-page-interest-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    vertical-align: middle;
  }
  
  .community-page-interest-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
  }
  
  .community-page-interest-checkbox:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .community-page-interest-checkbox:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .community-page-interest-selection-counter {
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  .community-page-interest-btn {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    width: 100%;
    margin-top: 1rem;
  }
  
  .community-page-interest-btn:hover {
    background-color: var(--primary-hover-color);
  }
  
  .community-page-interest-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  
  .community-page-interest-prev-btn {
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    width: 100%;
    margin-top: 1rem;
  }
  
  .community-page-interest-prev-btn:hover {
    background-color: var(--dropdown-hover-background-color);
  }
  
  /* Step 2 Styles */
  .community-page-interest-group-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 300px;
    border: 1px solid #cfd1d5;
    transition: transform 0.2s;
    position: relative;
  }
  
  .community-page-interest-group-card:hover {
    transform: translateY(-2px);
  }
  
  .community-page-interest-group-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }
  
  .community-page-interest-group-info {
    padding: 1rem;
  }
  
  .community-page-interest-group-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .community-page-interest-group-location {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .community-page-interest-group-members {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .community-page-interest-join-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.3rem 1rem;
    border-radius: 0.25rem;
    width: 80%;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .community-page-interest-join-btn:hover {
    background-color: var(--primary-hover-color);
  }
  
  .community-page-interest-join-btn.joined {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  #community-page-interest-step2 {
    display: none;
  }
  
  .community-page-interest-step-indicator {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  .community-page-interest-hidden {
    display: none;
  }
  
  .community-other-link {
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .community-other-link:hover {
    color: var(--primary-color) !important;
  }
  
  .community-message-container {
    max-width: 500px;
    margin: 150px auto;
    padding: 2rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 80vh;
    position: relative;
  }
  
  .community-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
  }
  
  .community-message-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
  }
  
  .community-message-menu {
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .community-message-empty {
    text-align: center;
    padding: 4rem 1rem;
  }
  
  .community-message-icon {
    width: 120px;
    height: 120px;
    background: var(--light-teal);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .community-message-icon i {
    font-size: 3rem;
    color: var(--teal);
  }
  
  .community-message-empty h3 {
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .community-message-empty p {
    color: #666;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .community-message-compose {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--teal);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .community-message-compose:hover {
    transform: scale(1.05);
  }
  
  .community-message-compose i {
    font-size: 1.2rem;
    color: var(--secondary-color);
  }
  
  @media (max-width: 768px) {
    .community-message-container {
      min-height: 100vh;
      border-radius: 0;
    }
  }
  
  .community-connection-container {
    padding: 150px 1rem 50px 1rem;
    background: #f7f7f8;
    margin-bottom: 100px;
  }
  
  .community-connection-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: white;
    border-radius: 10px;
  }
  
  .community-connection-empty img {
    width: 300px;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .community-connection-steps {
    max-width: 90%;
    margin: 2rem auto;
    text-align: left;
  }
  
  .community-connection-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .community-connection-step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
  }
  
  .community-connection-empty2 {
    padding: 1.2rem;
    background: white;
    border-radius: 10px;
  }
  
  .community-connection-profiles {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .community-connection-profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .community-connection-explore {
    background: #00798a;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
    cursor: pointer;
  }
  
  .community-connection-premium {
    background: #efdecc;
    border-radius: 8px;
    padding: 1.5rem;
  }
  
  .community-connection-premium button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .community-connection-next {
      right: 0;
    }
  }
  
  .communities-connection {
    margin: 150px auto;
  }
  
  .connection-card {
    border: 1px solid var(--card-border-color);
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease-in-out;
    border: 1px solid #bababa;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%; /* Ensure cards take full height of their container */
  }
  
  .connection-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
  }
  
  .connection-card .communities-card-body {
    padding: 10px;
  }
  
  .connection-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .connection-card .card-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .connection-card .card-title {
      font-size: 1.1rem;
    }
    .connection-card {
      flex-direction: column;
    }
  
    .connection-card .card-text {
      font-size: 0.95rem;
    }
    .communities-carousel .communities-card-body {
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    .connection-card {
      padding: 10px;
    }
  
    .connection-card .card-title {
      font-size: 1rem;
    }
  
    .connection-card .card-text {
      font-size: 0.9rem;
    }
  }
  
  .communities-carousel {
    background: white;
    border-radius: 10px;
    padding: 2rem 1rem;
    margin-bottom: 1.3rem;
  }
  
  .communities-carousel .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
  }
  
  .communities-carousel .swiper-button-next {
    background: white;
    border: 1px solid #bababa;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    right: -10px;
  }
  .communities-carousel .swiper-button-next::after {
    font-size: 14px;
    color: var(--primary-color);
  }
  .communities-carousel .swiper-button-prev {
    background: white;
    border: 1px solid #bababa;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    left: -10px;
  }
  .communities-carousel .swiper-button-prev::after {
    font-size: 14px;
    color: var(--primary-color);
  }
  
  .communities-carousel .swiper-pagination {
    bottom: 10px;
  }
  
  /* Ensure all swiper slides have the same height */
  
  .communities-carousel .swiper-slide {
    height: auto !important; /* Allow the slide to take the height of its content */
    display: flex;
    align-items: stretch; /* Ensure all slides stretch to the same height */
  }
  
  /* Container */
  .event-detail-container {
    padding: 120px 0px 50px 0px;
    background: #f8f7ff;
    margin-bottom: 100px;
  }
  
  /* Sidebar Styles */
  .event-detail-sidebar {
    position: sticky;
    top: 120px;
  }
  
  .event-detail-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .event-detail-section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--secondary-color);
  }
  
  .event-detail-no-events {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 5px;
  }
  
  .event-detail-events-info {
    font-size: 14px;
    color: var(--secondary-color);
  }
  
  /* Group List */
  .event-detail-group-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .event-detail-group-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .event-detail-group-image {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #f0f0f0;
  }
  
  .event-detail-group-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .event-detail-group-name {
    font-size: 14px;
    color: var(--secondary-color);
  }
  
  /* Tags */
  .event-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .event-detail-tag {
    background-color: #f0f0f0;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    color: var(--secondary-color);
  }
  
  /* Content Area */
  .event-detail-content {
    width: 100%;
  }
  
  /* Filters */
  .event-detail-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .event-detail-filter-buttons {
    display: flex;
    gap: 10px;
  }
  
  .event-detail-filter-btn {
    background-color: var(--white-color);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    color: var(--secondary-color);
    cursor: pointer;
  }
  
  .event-detail-suggested {
    font-size: 14px;
    color: var(--secondary-color);
  }
  
  /* Toggle Switch */
  .event-detail-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
  }
  
  .event-detail-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .event-detail-toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.1s;
    border-radius: 34px;
  }
  
  .event-detail-toggle-label:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.1s;
    border-radius: 50%;
  }
  
  .event-detail-toggle-input:checked + .event-detail-toggle-label {
    background-color: var(--primary-color);
  }
  
  .event-detail-toggle-input:checked + .event-detail-toggle-label:before {
    transform: translateX(20px);
  }
  
  /* Event Cards */
  .event-detail-events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .event-detail-event-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 10px;
  }
  
  .event-detail-event-image {
    height: 100%;
    min-height: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .event-detail-event-image img {
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .event-detail-event-content {
    padding: 15px;
    position: relative;
  }
  
  .event-detail-event-tag {
    display: inline-block;
    background-color: #fff2e6;
    color: var(--primary-color);
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .event-detail-event-date {
    font-size: 12px;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .event-detail-event-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .event-detail-event-description {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 15px;
  }
  
  .event-detail-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .event-detail-attendees {
    font-size: 12px;
    color: var(--secondary-color);
  }
  
  .event-detail-bookmark-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
  }
  
  /* Pagination */
  .event-detail-pagination {
    display: flex;
    justify-content: center;
    
    margin-top: 30px;
    margin-bottom: 20px;
  }
  
  .pagination .page-link {
    color: var(--secondary-color);
    border-color: #e0e0e0;
  }
  
  .pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  /* Responsive Styles */
  @media (max-width: 767px) {
    .event-detail-sidebar {
      position: static;
      margin-bottom: 30px;
    }
  
    .event-detail-filters {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
  
    .event-detail-suggested {
      margin-left: 0 !important;
    }
  
    .event-detail-event-image {
      min-height: 200px;
    }
  }
  
  @media (max-width: 576px) {
    .event-detail-filter-buttons {
      flex-wrap: wrap;
    }
  
    .event-detail-event-content {
      padding: 10px;
    }
  
    .event-detail-event-title {
      font-size: 16px;
    }
  
    .event-detail-event-description {
      font-size: 12px;
    }
    .event-detail-toggle-label {
      right: -7px;
    }
  }
  
  .event-detail-navbar {
    background-color: var(--background-color);
  }
  
  .event-detail-toggler {
    border: none !important;
    background: transparent !important;
  }
  
  .event-detail-toggler:focus {
    outline: none !important;
  }
  
  .event-detail-collapse {
    flex-grow: 1;
  }
  
  .event-detail-search-container {
    flex-grow: 1;
    max-width: 400px;
  }
  
  .event-detail-search-box {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    outline: none;
  }
  
  .event-detail-create-event-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
  }
  
  .event-detail-create-event-btn:hover {
    background-color: var(--primary-hover-color);
  }
  
  @media (max-width: 768px) {
    .event-detail-collapse {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .event-detail-search-container {
      max-width: 250px;
    }
    .event-detail-collapse .gap-3 {
      justify-content: center;
    }
    .event-detail-create-event-btn {
      font-size: 14px;
      padding: 6px 12px;
      margin-top: 30px;
      margin-bottom: 10px;
    }
  
    .event-detail-profile-icon {
      width: 30px;
      height: 30px;
      font-size: 14px;
      margin-top: 30px;
      margin-bottom: 10px;
    }
  }
  
  /* Container */
  .event-listing-container {
    padding: 120px 0px 0px 0px;
    margin-bottom: 100px;
    background-color: #f8f7ff;
  }
  
  /* Header Styles */
  .event-listing-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  .event-listing-host {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .event-listing-host-avatar {
    width: 48px;
    height: 48px;
    background-color: #ffd7ba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
  }
  
  .event-listing-host-info span {
    font-size: 0.9rem;
    color: var(--secondary-color);
  }
  
  .event-listing-host-info h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--secondary-color);
  }
  
  /* Banner Styles */
  .event-listing-banner {
    border-radius: 10px;
    overflow: hidden;
  }
  
  .event-listing-banner img {
    width: 100%;
    border-radius: 10px;
  }
  
  /* About Section */
  .event-listing-about h2,
  .event-listing-learning h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  .event-listing-about p,
  .event-listing-learning ul {
    color: var(--secondary-color);
    line-height: 1.6;
  }
  
  .event-listing-learning ul {
    padding-left: 1.5rem;
  }
  
  /* Attendees Section */
  .event-listing-attendees {
    background: white;
    border-radius: 20px;
    padding: 20px;
  }
  .event-listing-attendees h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }
  
  .event-listing-see-all {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .event-listing-attendees-list {
    display: flex;
    gap: 1rem;
    justify-content: space-between; 
    flex-wrap: wrap;
    padding: 10px;
  }
  
  .event-listing-attendee {
    background: var(--white-color);
    border-radius: 10px;
    padding: 3rem 1.5rem;
    border: 1px solid #e1e1e1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }
  
  .event-listing-attendee {
    background: var(--white-color);
    border-radius: 10px;
    padding: 3rem 1.5rem;
    border: 1px solid #e1e1e1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }
  
  .event-listing-attendee img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
  }
  
  .event-listing-attendee-info {
    text-align: center;
  }
  .event-listing-attendee-info h4 {
    font-size: 1rem;
    /* margin: 0; */
    text-align: center;
    color: var(--secondary-color);
  }
  
  .event-listing-attendee-info span {
    font-size: 0.8rem;
    color: var(--secondary-color);
  }
  
  .event-listing-attendee.more-attendees {
    position: relative;
  }
  
  .event-listing-attendee.more-attendees .more-count {
    width: 120px;
    height: 120px;
    background-color: #ffd7ba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
  }
  
  /* Similar Events Section */
  .event-listing-similar {
    border-radius: 20px;
    margin-bottom: 50px;
    padding: 50px;
  }
  .event-listing-similar-event-card {
    border-radius: 10px;
  }
  .event-listing-similar h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }
  
  .event-listing-similar-event-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .event-listing-similar-event-card img {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .event-listing-event-tag {
    display: inline-block;
    background-color: #fff2e6;
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
  }
  
  .event-listing-event-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
  }
  
  .event-listing-event-info h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
  }
  
  .event-listing-event-attendees {
    font-size: 0.8rem;
    color: var(--secondary-color);
  }
  
  /* Sidebar Styles */
  .event-listing-sidebar {
    border-radius: 10px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
  }
  
  .event-listing-community-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    border: 1px solid #e1e1e1;
  }
  
  .event-listing-community-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  
  .event-listing-community-details h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--secondary-color);
  }
  
  .event-listing-community-details span {
    font-size: 0.9rem;
    color: var(--secondary-color);
  }
  
  .event-listing-event-details {
    margin-bottom: 1.5rem;
  
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    border: 1px solid #e1e1e1;
  }
  
  .event-listing-detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .event-listing-detail-item i {
    width: 20px;
  }
  
  .event-listing-register-btn {
    width: 85%;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 0.8rem;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .event-listing-register-btn:hover {
    background: var(--primary-hover-color);
  }
/*   
  .event-listing-action-buttons {
    display: flex;
    gap: 1rem;
  } */
  
  .event-listing-like-btn,
  .event-listing-share-btn {
    flex: 1;
    background: none;
    border: 1px solid #ddd;
    padding: 0.8rem;
    border-radius: 5px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .event-listing-like-btn:hover,
  .event-listing-share-btn:hover {
    background: var(--dropdown-hover-background-color);
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .event-listing-sidebar {
      position: static;
      margin-top: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .event-listing-header h1 {
      font-size: 2rem;
    }
  
    .event-listing-attendee {
      width: calc(50% - 0.5rem);
    }
  }
  
  @media (max-width: 576px) {
    .event-listing-header h1 {
      font-size: 1.8rem;
    }
  
    .event-listing-attendee {
      width: 100%;
    }
  
    /* .event-listing-action-buttons {
      flex-direction: column;
    } */
  
    .event-listing-nav-container {
      flex-direction: column !important;
    }
    .event-detail-create-event-btn {
      margin-right: 0px !important;
    }
  }
  
  .event-listing-nav-icons i {
    font-size: 16px !important;
  }
  
  .event-listing-nav {
    display: flex !important;
    flex-direction: row !important;
  }
  
  .community-profile-container {
    padding: 150px 0 50px 0;
    background: #f8f7ff;
    margin-bottom: 100px;
  }
  .community-profile-photo-section-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
  }
  .community-profile-photo-section {
    position: relative;
    border-radius: 10px;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .community-profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    display: block;
  }
  
  .community-profile-photo-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Cover 60% of the image */
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
  }
  
  .community-profile-change-photo {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 10px;
    padding: 8px 15px;
    font-size: 14px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }
  
  .community-profile-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    text-align: center;
  }
  
  .community-profile-stat-item {
    flex: 1;
  }
  
  .community-profile-stat-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
  }
  
  .community-profile-stat-label {
    font-size: 14px;
    color: var(--secondary-color);
  }
  
  .community-profile-info {
    position: absolute;
    bottom: 0px;
    padding: 0px 20px 10px 25px;
    border-radius: 10px;
    color: white;
    z-index: 1;
  }
  
  .community-profile-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: white;
  }
  
  .community-profile-edit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white-color);
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .community-profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffd7ba;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
  }
  
  .community-profile-edit-btn {
    color: var(--primary-color);
    font-size: 14px;
  }
  
  .community-profile-edit-btn2 {
    color: black;
    font-size: 14px;
  }
  
  .community-profile-edit-btn2:hover {
    color: var(--primary-color);
  }
  .community-profile-trial {
    background: #efdecc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .community-profile-trial p {
    font-size: 14px;
  }
  
  .community-profile-trial img {
    position: absolute;
    width: 25%;
    height: 100%;
    object-fit: cover;
    left: 60%;
    top: 50%;
    bottom: 0;
    z-index: 1;
    transform: translate(-50%, -50%);
  }
  
  .community-profile-trial2 {
    background: #ffe5c4;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 50px;
  }
  .community-profile-trial2 p {
    font-size: 14px;
  }
  
  .community-profile-trial-btn {
    background: #e32359;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    width: auto;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
  }
  
  .community-profile-interests {
    background: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }
  .community-profile-interests h5 {
    margin-bottom: 15px;
  }
  
  .community-profile-interest-tag {
    display: inline-block;
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 5px 5px 5px 0px;
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .community-profile-member {
    background: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .community-profile-member-header {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 15px;
    border: 1px solid #e1e1e1;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    /* width: fit-content; */
  }
  
  .community-profile-member-img {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .community-profile-join-groups p {
    font-size: 13px;
    color: #666;
    font-weight: 400;
  }
  
  .community-profile-join-groups img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .community-profile-join-groups {
    background: #fcf2f2;
    border-radius: 10px;
    padding: 0px 20px;
  }
  .community-profile-join-groups .col-lg-5 {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .community-profile-search-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
  }
  
  @media (max-width: 768px) {
    .community-profile-stats {
      flex-wrap: wrap;
    }
  
    .community-profile-stat-item {
      flex: 0 0 33.333%;
      margin-bottom: 15px;
    }
    .community-profile-join-groups {
      padding: 20px;
    }
    .community-profile-trial {
      flex-direction: column;
      align-items: start;
    }
    .community-profile-trial-btn {
      width: auto;
    }
  
    .community-profile-trial {
      margin-top: 20px;
    }
    .community-profile-trial img {
      display: none;
    }
  }
  
  .community-profile-photo-section-container h5 {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .community-profile-photo-section-container .fa-map-pin {
    color: #f70a8d !important;
  }
  
  .about-me-tag {
    display: inline-block;
    background: #f7f7f8;
    padding: 8px 20px;
    margin-top: 10px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--secondary-color);
  }
  
  .fw-bold {
    font-weight: 600 !important;
  }
  
  .community-profile-member-header h6 {
    font-size: 14px;
    font-weight: 600;
  }
  
  .community-profile-member-header p {
    font-size: 13px;
    color: #666;
    font-weight: 400;
  }
  
  .community-profile-member-header h5 {
    font-size: 16px;
  }
  
  .community-send-request-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    border: 1px solid transparent;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    padding: 10px 25px;
    width: 100%;
    justify-content: center;
    font-weight: 600;
    margin: 30px 0px;
  }
  
  .community-request-sent-btn {
    background-color: white !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
  }
  
  .attendee-profile-match-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px; /* Adjust based on your design */
    height: 80px;
  }
  
  .attendee-profile-match-image img {
    width: 60px; /* Match the avatar size */
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    position: absolute;
    right: -20px;
    z-index: 2;
  }
  
  .community-profile-avatar2 {
    width: 60px;
    height: 60px;
    background-color: #a6dcef; /* Adjust color */
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50%;
    border: 3px solid white;
    position: absolute;
    left: 0;
    z-index: 1;
  }
  
  .event-detail-profile-icon {
    background-color: rgba(250, 125, 9, 0.2);
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
  }
  
  .community-dropdown-menu {
    visibility: hidden; /* Hide the dropdown initially */
    opacity: 0; /* Make it fully transparent */
    position: absolute;
    top: 50px; /* Adjust based on your layout */
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 1000;
    transition: opacity 0.1s ease, visibility 0.1s ease; /* Smooth transition */
  }
  
  .community-dropdown-menu.show {
    visibility: visible; /* Show the dropdown */
    opacity: 1; /* Make it fully visible */
  }
  
  .community-dropdown-item {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: #333;
    text-decoration: none;
  }
  
  .community-dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
  }
  
  .page-link:focus {
    box-shadow: none !important;
    outline: none !important;
  }
  
  /* Community Create Event Styles */
  .community-create-event-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 20px;
  }
  
  /* Progress Bar */
  .community-create-event-progress-container {
    width: 100%;
    padding: 20px 0;
  }
  
  .community-create-event-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .community-create-event-progress {
    position: absolute;
    height: 4px;
    background-color: var(--primary-color);
    width: 0%;
    top: 35%;
    transform: translateY(-35%);
    z-index: 1;
    border-radius: 20px;
    transition: width 0.3s ease;
  }
  
  .community-create-event-progress-bar::before {
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: #e0e0e0;
    top: 35%;
    border-radius: 20px;
  
    transform: translateY(-35%);
    z-index: 0;
  }
  
  .community-create-event-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
  }
  
  .community-create-event-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: background-color 0.3s ease;
  }
  
  .community-create-event-progress-step.active
    .community-create-event-step-number,
  .community-create-event-progress-step.completed
    .community-create-event-step-number {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  .community-create-event-step-label {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
  }
  
  .community-create-event-step-indicator {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 500;
  }
  
  /* Form Steps */
  .community-create-event-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .community-create-event-btn-next {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .community-create-event-btn-next:hover {
    background-color: var(--primary-hover-color);
  }
  
  .community-create-event-btn-next:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
  }
  
  .community-create-event-btn-back {
    background-color: transparent;
    color: var(--secondary-color);
    border: none;
    padding: 10px 0;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  .community-create-event-btn-back i {
    margin-right: 8px;
  }
  
  /* Step 1: Location */
  .community-create-event-location-input .input-group {
    border-radius: 4px;
    overflow: hidden;
    width: 90%;
  }
  
  .community-create-event-location-input .form-control {
    padding: 12px 16px;
  }
  
  .community-create-event-location-input .input-group-text {
    background-color: var(--white-color);
    color: var(--secondary-color);
  }
  
  /* Step 2: Topics */
  .community-create-event-search-input .input-group {
    border-radius: 4px;
    overflow: hidden;
    width: 90%;
  }
  
  .community-create-event-search-input .form-control {
    padding: 12px 16px;
  }
  
  .community-create-event-search-input .input-group-text {
    background-color: var(--white-color);
    color: var(--secondary-color);
  }
  
  .community-create-event-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 90%;
  }
  
  .community-create-event-topic {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 14px;
    cursor: pointer;
    
    transition: all 0.3s ease;
  }
  
  .community-create-event-topic:hover {
    background-color: rgba(250, 125, 9, 0.1);
  }
  
  .community-create-event-topic.selected {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  .community-create-event-btn-view-more {
    background-color: transparent;
    color: var(--secondary-color);
    border: none;
    padding: 8px 0;
    font-weight: 500;
    cursor: pointer;
  }
  
  .community-create-event-tip-box {
    background-color: #f0f8ff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 50px;
  }
  
  .community-create-event-tip-header {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .community-create-event-tip-header i {
    color: var(--primary-color);
    margin-right: 8px;
  }
  
  .community-create-event-tip-content {
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.5;
  }
  
  /* Step 3: Group Details */
  .community-create-event-input {
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #ced4da;
  }
  
  .community-create-event-label {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 8px;
  }
  
  .community-create-event-upload-box {
    border: 2px dashed #ced4da;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .community-create-event-upload-placeholder {
    color: var(--secondary-color);
  }
  
  .community-create-event-upload-placeholder i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .community-create-event-upload-placeholder p {
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .community-create-event-upload-placeholder span {
    font-size: 12px;
    color: #6c757d;
  }
  
  .community-create-event-preview-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .community-create-event-remove-image {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--white-color);
    border: 1px solid #ced4da;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
  }
  
  #cover-preview-img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
  }
  
  .community-create-event-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    width: 100%;
  }
  
  .community-create-event-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
  }
  
  .community-create-event-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .community-create-event-remove-preview {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--white-color);
    border: 1px solid #ced4da;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    font-size: 10px;
  }
  
  .community-create-event-image-counter {
    font-size: 14px;
    color: #6c757d;
  }
  
  /* Step 4: Description */
  .community-create-event-textarea {
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    resize: vertical;
    min-height: 200px;
  }
  
  /* Step 5: Preview */
  .community-create-event-preview-card {
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .community-create-event-preview-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 16px 20px;
  }
  
  .community-create-event-preview-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
  }
  
  .community-create-event-preview-body {
    padding: 20px;
  }
  
  .community-create-event-preview-section {
    margin-bottom: 24px;
  }
  
  .community-create-event-preview-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 8px;
  }
  
  .community-create-event-preview-section p {
    color: var(--secondary-color);
    margin-bottom: 0;
  }
  
  .community-create-event-preview-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .community-create-event-preview-topic {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 12px;
  }
  
  .community-create-event-preview-cover {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .community-create-event-preview-cover img {
    width: 100%;
    object-fit: cover;
  }
  
  .community-create-event-preview-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }
  
  .community-create-event-preview-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .community-create-event-btn-submit {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 4px;
    padding: 12px 28px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .community-create-event-btn-submit:hover {
    background-color: var(--primary-hover-color);
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .community-create-event-progress-bar {
      max-width: 600px;
    }
  
    .community-create-event-step-label {
      font-size: 12px;
    }
  
    .community-create-event-step-number {
      width: 35px;
      height: 35px;
    }
  }
  
  @media (max-width: 767px) {
    .community-create-event-progress-bar {
      max-width: 100%;
    }
  
    .community-create-event-step-label {
      display: none;
    }
  
    .community-create-event-step-number {
      width: 30px;
      height: 30px;
      font-size: 14px;
    }
  
    .community-create-event-heading {
      font-size: 20px;
    }
  
    .community-create-event-tip-box {
      margin-top: 30px;
    }
  }
  
  @media (max-width: 575px) {
    .community-create-event-container {
      padding: 100px 10px;
    }
  
    .community-create-event-progress-container {
      padding: 10px 0;
    }
  
    .community-create-event-step-number {
      width: 25px;
      height: 25px;
      font-size: 12px;
    }
  }
  
  .form-control:focus {
    box-shadow: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
  }
  
  /* Community Group Detail Styles */
  .community-group-detail-container {
    width: 100%;
    padding: 150px 20px 50px 20px;
  }
  
  /* Hero Section */
  .community-group-detail-hero {
    padding: 30px 0;
  }
  
  .community-group-detail-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .community-group-detail-main-image {
    width: 100%;
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
  }
  
  .community-group-detail-info {
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
  }
  
  .community-group-detail-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
  }
  
  .community-group-detail-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-self: start;
    gap: 8px;
    color: var(--secondary-color);
    margin-bottom: 20px;
  }
  .community-group-detail-meta span {
    font-size: 14px;
  }
  
  .community-group-detail-location,
  .community-group-detail-members,
  .community-group-detail-organizer {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .community-group-detail-organizer2 {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .community-group-right-column {
    position: sticky;
    top: 100px;
  }
  .community-group-detail-location i,
  .community-group-detail-members i,
  .community-group-detail-organizer i {
    color: grey;
    width: 16px;
    text-align: center;
  }
  
  .community-group-detail-share {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .community-group-detail-share span {
    color: var(--secondary-color);
    font-weight: 500;
  }
  
  .community-group-detail-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .community-group-detail-share-btn:hover {
    background-color: var(--medium-gray);
    color: var(--secondary-color);
  }
  
  .community-group-detail-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
  }
  
  .community-group-detail-join-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .community-group-detail-join-btn:hover {
    background-color: var(--primary-hover-color);
  }
  
  /* Navigation Links */
  .community-group-detail-navigation {
    display: flex;
    border-bottom: 1px solid var(--medium-gray);
    margin-bottom: 30px;
    overflow-x: auto;
  }
  
  .community-group-detail-nav-link {
    padding: 15px 40px 15px 0px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
  }
  
  .community-group-detail-nav-link:hover {
    color: var(--primary-color);
  }
  
  /* Main Content */
  .community-group-detail-content {
    border-radius: 8px;
    padding: 30px 0px 100px 0px;
  }
  
  .community-group-detail-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
  }
  
  /* About Section */
  .community-group-detail-about {
    margin-bottom: 30px;
  }
  
  .community-group-detail-about-content p {
    margin-bottom: 10px;
    color: var(--secondary-color);
  }
  
  /* Organizer Section */
  .community-group-detail-organizer {
    margin-bottom: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
  }
  
  .community-group-detail-organizer-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .community-group-detail-organizer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .community-group-detail-organizer-details h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
  }
  
  .community-group-detail-message-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
  }
  
  /* Members Section */
  .community-group-detail-members-section {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 20px;
  }
  
  .community-group-detail-see-all {
    color: var(--primary-color);
  
    text-decoration: none;
    font-size: 14px;
  }
  
  .community-group-detail-members-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  
  .community-group-detail-member {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .community-group-detail-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .community-group-detail-member-initial {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--medium-gray);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 50%;
  }
  
  .community-group-detail-orange-bg {
    background-color: #ffab91;
    color: #bf360c;
  }
  
  .community-group-detail-green-bg {
    background-color: #c5e1a5;
    color: #33691e;
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .community-group-detail-title {
      font-size: 24px;
    }
  
    .community-group-detail-content {
      padding: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .community-group-detail-controls {
      flex-wrap: wrap;
      padding: 8px;
    }
  
    .community-group-detail-control-btn {
      width: 35px;
      height: 35px;
      font-size: 14px;
    }
  
    .community-group-detail-title {
      font-size: 20px;
    }
  
    .community-group-detail-nav-link {
      padding: 12px 15px;
    }
  
    .community-group-detail-members-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 575px) {
    .community-group-detail-controls {
      bottom: 10px;
      gap: 5px;
    }
  
    .community-group-detail-control-btn {
      width: 30px;
      height: 30px;
      font-size: 12px;
    }
  
    .community-group-detail-control-end {
      padding: 0 10px;
      font-size: 12px;
    }
  
    .community-group-detail-navigation {
      justify-content: space-between;
    }
  
    .community-group-detail-nav-link {
      padding: 10px;
      font-size: 14px;
    }
  
    .community-group-detail-content {
      padding: 15px;
    }
  
    .community-group-detail-members-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .community-upcoming-events-card .align-items-start {
      flex-direction: column;
    }
    .community-upcoming-events-card .align-items-center {
      margin-top: 10px;
      flex-direction: column;
      align-items: flex-start !important;
    }
  }
  
  .group-details-full-container {
    border-top: 1px solid #e1e1e1;
    background: #f8f7ff;
    margin-bottom: 100px;
  }
  
  /* Card Styling */
  .community-upcoming-events-card {
    background: var(--white-color);
    border: 1px solid var(--navbar-scroll-color);
    border-radius: 10px;
  }
  
  /* Date Styling */
  .community-upcoming-events-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  /* Title Styling */
  .community-upcoming-events-title {
    font-size: 18px;
    font-weight: 600;
    color: black;
  }
  
  /* Link Styling */
  .community-upcoming-events-link {
    font-size: 14px;
  }
  
  /* Important Message */
  .community-upcoming-events-important {
    font-size: 14px;
    font-weight: 700;
    margin-top: 40px;
  }
  
  /* Attendee Avatars */
  .community-upcoming-events-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--white-color);
    margin-right: -8px;
    object-fit: cover;
  }
  
  /* Event Image */
  .community-upcoming-events-image {
    width: 220px;
    height: auto;
    border-radius: 8px;
  }
  
  /* Attend Button */
  .community-upcoming-events-attend-btn {
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color);
    margin-top: 10px;
    background-color: transparent;
    transition: 0.3s ease-in-out;
  }
  .community-discussion-comment-submit {
    background: var(--primary-color);
    margin-top: 10px;
    transition: 0.3s ease-in-out;
    border: 1px solid var(--primary-color) !important;
    color: white;
  }
  
  .community-upcoming-events-attend-btn:hover{
    background-color: var(--primary-hover-color);
    color: white;
  }
  
  .community-discussion-comment-submit:hover {
    
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
  }
  
  .community-about-member-container {
    background: var(--white-color);
    border-radius: 10px;
    border: 1px solid var(--navbar-shadow-color);
  }
  
  /* Title */
  .community-about-member-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-left: 6px;
  }
  
  /* Icons */
  .community-about-member-icon {
    width: 20px;
    height: 20px;
  }
  
  /* Link Styling */
  .community-about-member-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
  }
  
  .community-about-member-link:hover {
    text-decoration: underline;
  }
  
  .community-details-photos {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    height: 150px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
  }
  .community-details-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .community-discussion-card {
    background: var(--white-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
  }
  
  /* Avatar Styling */
  .community-discussion-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #b5c4a7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--secondary-color);
  }
  
  /* Name Styling */
  .community-discussion-name {
    font-size: 16px;
    font-weight: bold;
    color: var(--secondary-color);
  }
  
  /* Date Styling */
  .community-discussion-date {
    font-size: 16px;
  }
  
  /* Message Styling */
  .community-discussion-message {
    font-size: 14px;
    color: var(--secondary-color);
  }
  
  /* Reply Button */
  .community-discussion-reply {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .community-discussion-reply:hover {
    text-decoration: underline;
  }
  
  /* Like Button */
  .community-discussion-like {
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .community-discussion-like:hover {
    color: var(--primary-color);
  }
  
  #about,
  #events,
  #members,
  #photos,
  #discussions {
    scroll-margin-top: 150px; /* Adjust this value to set the space you want */
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* ===== EVENTS PAGE STYLES ===== */
  
  /* Main Container */
  .community-my-event-container {
    color: var(--secondary-color);
    padding: 150px 20px;
  }
  
  /* Back Button */
  .community-my-event-back a,
  .community-my-groups-back a {
    font-weight: 500;
    transition: color 0.2s;
    font-size: 16px;
  }
  
  .community-my-event-back a:hover,
  .community-my-groups-back a:hover {
    color: var(--primary-color) !important;
  }
  
  /* Sidebar */
  .community-my-event-sidebar {
    background-color: var(--background-color);
    margin-top: 20px;
  }
  
  .community-my-event-nav-item {
    margin-bottom: 15px;
  }
  
  .community-my-event-nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px !important;
    transition: color 0.2s;
  }
  
  .community-my-event-nav-item.active .community-my-event-nav-link {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .community-my-event-nav-link:hover {
    color: var(--primary-color);
  }
  
  /* Calendar */
  .community-my-event-calendar-container {
    background-color: var(--white-color);
  }
  
  .community-my-event-calendar-header {
    color: var(--secondary-color);
  }
  
  .community-my-event-calendar-nav-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
  }
  
  .community-my-event-calendar-month {
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .community-my-event-calendar-selectors {
    display: flex;
    gap: 5px;
  }
  
  .community-my-event-calendar-select {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 14px;
    color: var(--secondary-color);
    background-color: var(--white-color);
    cursor: pointer;
  }
  
  .community-my-event-calendar-select:focus {
    outline: none;
    border-color: var(--primary-color);
  }
  
  .community-my-event-calendar-weekdays { 
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  
  .community-my-event-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
  }
  
  .community-my-event-calendar-day {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
  }
  
  .community-my-event-calendar-day:hover {
    background-color: var(--dropdown-hover-background-color);
  }
  
  .community-my-event-calendar-day.active {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  .community-my-event-calendar-day.today {
    font-weight: bold;
    border: 2px solid var(--primary-color);
  }
  
  .community-my-event-calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
  }
  
  .community-my-event-calendar-day.other-month {
    color: #adb5bd;
  }
  
  .community-my-event-sync-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
  }
  
  .community-my-event-sync-btn:hover {
    text-decoration: underline;
  }
  
  /* Main Content */
  .community-my-event-title,
  .community-my-groups-title {
    font-weight: 700;
    font-size: 30px;
    color: var(--secondary-color);
  }
  
  .community-my-event-section-title,
  .community-my-groups-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
  }
  
  /* No Events */
  .community-my-event-no-events {
    padding: 1rem 0;
  }
  
  .community-my-event-calendar-icon {
    background-color: var(--background-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Event Cards */
  .community-my-event-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.3s;
  }
  
  .community-my-event-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .community-my-event-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 150px;
  }
  
  .community-my-event-card-date {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
  }
  
  .community-my-event-card-title {
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .community-my-event-card-location,
  .community-my-event-card-attendees {
    color: var(--secondary-color);
    font-size: 0.9rem;
  }
  
  /* Badges */
  .community-my-event-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
  }
  
  .community-my-event-badge.attending {
    background-color: #f8f7ff;
    color: var(--primary-color);
  }
  
  .community-my-event-badge.hosting {
    background-color: #e6f7e6;
    color: #28a745;
  }
  
  .community-my-event-badge i {
    margin-right: 5px;
  }
  
  /* Action Buttons */
  .community-my-event-actions {
    display: flex;
    gap: 20px;
  }
  
  .community-my-event-action-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .community-my-event-action-btn:hover {
    color: var(--primary-color);
  }
  
  .community-my-event-action-btn.active {
    color: var(--primary-color);
  }
  
  /* Past Events */
  .community-my-event-no-past-events {
    color: var(--secondary-color);
  }
  
  .community-my-event-discover-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
  }
  
  /* ===== GROUPS PAGE STYLES ===== */
  
  /* Main Container */
  .community-my-groups-container {
    color: var(--secondary-color);
    padding: 150px 20px;
  }
  
  /* Group Cards */
  .community-my-groups-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.3s;
    height: 100%;
  }
  
  .community-my-groups-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .community-my-groups-card-img-container {
    height: 180px;
    overflow: hidden;
  }
  
  .community-my-groups-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .community-my-groups-card-body {
    background-color: var(--white-color);
  }
  
  .community-my-groups-card-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 16px;
  }
  
  .community-my-groups-card-badges {
    display: flex;
    gap: 5px;
  }
  
  .community-my-groups-emoji-badge {
    font-size: 1.2rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 767.98px) {
    .community-my-event-card-img {
        height: 150px;
    }
    
    .community-my-event-calendar-weekdays div,
    .community-my-event-calendar-day {
        height: 30px;
        font-size: 0.9rem;
    }
    
    .community-my-groups-card-img-container {
        height: 160px;
    }
  }
  
  @media (max-width: 575.98px) {
    .community-my-event-card .row {
        flex-direction: column;
    }
    
    .community-my-event-card-img {
        height: 180px;
    }
    
    .community-my-event-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .community-my-event-actions {
        gap: 15px;
    }
    
    .community-my-groups-card-img-container {
        height: 140px;
    }
  }
  
  .community-my-event-sidebar-sticky{
    position: sticky !important; 
    top: 130px !important;
  }
  
  
  
  
  
  
  
  
  
  
   

/* Edit Profile Modal */
.community-user-profile-edit-modal .modal-content {
  border-radius: 10px;
  border: none;
}

.community-user-profile-edit-modal .modal-header {
  border-bottom: none;
  padding: 1.5rem;
}

.community-user-profile-edit-modal .modal-body {
  padding: 1.5rem;
}

.community-user-profile-edit-modal .modal-footer {
  border-top: none;
  padding: 1.5rem;
}

.community-user-profile-edit-modal .form-control {
  border-radius: 5px;
  border: 1px solid #e1e1e1;
  padding: 0.75rem;
}

.community-user-profile-edit-modal .form-label {
  font-weight: 600;
  color: var(--secondary-color);
}

.community-user-profile-edit-modal .photo-preview {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.community-user-profile-edit-modal .photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-user-profile-edit-modal .photo-preview .remove-photo {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--white-color);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: none;
}

.community-user-profile-edit-modal .interest-tag {
  display: inline-flex;
  align-items: center;
  background: #f0f0f0;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin: 0.45rem;
  cursor: pointer;
  font-size: 14px;
  border:none ;
  font-weight: 600;
  position: relative;
}

.community-user-profile-edit-modal .interest-tag.selected {
  background: var(--primary-color);
  color: var(--white-color);
}

.community-user-profile-edit-modal .interest-tag .remove-interest {
  margin-left: 0.5rem;
  cursor: pointer;
  display: none;
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--white-color);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
  