/* FULL PAGE BLACK BACKGROUND */
body {
  background-color: #000000 !important;
  color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: open-sans, sans-serif;
}
html,
body {
  overflow-x: hidden !important;
}
body.modal-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}
.feature-title,
.newsletter-title,
.follow-us,
.footer-column h5 {
  font-family: Coustard, sans-serif;
}

/* Custom container width */
.container {
  max-width: 1142px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Yellow banner */
.banner {
  background: url("../img/index-images/top-Vector.png") no-repeat center/cover;
  color: #1a1a1a;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  position: relative;
  /* overflow: hidden; */
  z-index: 1000;
}
/* ------changed portion-------------------------- */

/* Highlighted change: New styles for responsive button visibility */
/* Hide desktop button by default, show on screens >= 480px */
.create-event-desktop-wrapper {
  display: none; /* Hidden by default */
  margin-right: 1rem; /* Adjust as needed for spacing */
}

/* Hide mobile button on screens >= 480px */
.event-buutons {
  display: block; /* Visible by default on small screens */
}

/* ------------------------------------------------- */
.navbar {
  z-index: 999;
}

/* MAIN NAVBAR - FIXED POSITIONING */
.navbar-custom {
  /* background-color: #1a1a1a; */
  padding: 0.5rem 0;
  position: relative;
  z-index: 1000;
}

/* MOBILE NAV OVERLAY - SLIDES DOWN FROM TOP */
.navbar-collapse {
  background-color: #1a1a1a;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-top: 1px solid #333;
}

.navbar-toggler {
  color: #ffba19 !important;
}

.navbar-brand {
  color: #fff !important;
  font-weight: bold;
  font-size: 1rem;
}

.logo-icon {
  width: 35px;
  height: 35px;
  margin-right: 8px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.logo-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 15px;
  background: repeating-linear-gradient(
    90deg,
    #ffd700 0px,
    #ffd700 2px,
    transparent 2px,
    transparent 4px
  );
  background-size: 4px 100%;
}

.navbar-nav .dropdown-toggle {
  color: #fff !important;
  font-weight: 500;
  margin-right: 0.5rem;
  padding: 0.5rem 0.8rem !important;
  transition: color 0.3s ease;
  font-size: 14px;
}

.navbar-nav .nav-link:hover {
  color: #ffd700 !important;
}

.dropdown-toggle::after {
  margin-left: 0.5rem;
}

.dropdown-menu {
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 4px;
  margin-top: 5px;
}

.dropdown-item {
  color: #fff !important;
  padding: 8px 20px;
  transition: background-color 0.3s ease;
  font-size: 14px;
  background-color: #141414 !important;
}

.dropdown-item:hover {
  background-color: #444;
  color: #ffd700 !important;
}

.cart-icon {
  color: #fff;
  font-size: 1.1rem;
  position: relative;
  margin-right: 0.8rem;
  padding: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cart-icon:hover {
  color: #ffd700;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #ffd700;
  color: #1a1a1a;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.hero-btn {
  background: #ba3e3e;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 30px 11px 31px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #ffc107 0%, #ff9800 100%);
  border-radius: 0 8px 8px 0;
}

.hero-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
  border-radius: 0 0 8px 8px;
}

/* .btn-create-event {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  border: none;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-create-event:hover {
  background: linear-gradient(45deg, #c0392b, #a93226);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
} */

.search-icon {
  color: #fff;
  font-size: 1.1rem;
  margin-right: 0.8rem;
  padding: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.search-icon:hover {
  color: #ffd700;
}

/* Custom navbar toggler for dark theme */
.navbar-toggler {
  border: 1px solid #fff;
  padding: 0.25rem 0.5rem;
}

.nav-divider {
  width: 1px;
  height: 32px;
  background: #e5e4e4;
  opacity: 0.5;
  margin-right: 0.8rem;
}

.event-button {
  background: #ba3e3e;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  font-weight: 400;
  padding: 12px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: none;
  box-shadow: 0 4px 15px rgba(215, 53, 39, 0.3);
}

.event-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
  border-radius: 0 0 8px 8px;
  box-shadow: 2px 2px 4px rgba(255, 193, 7, 0.3);
}

.event-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ffc107 0%, #ff9800 100%);
  border-radius: 0 8px 8px 0;
  box-shadow: 2px 0 4px rgba(255, 193, 7, 0.3);
}

.event-button:hover {
  background: linear-gradient(135deg, #e03e2d 0%, #d73527 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 53, 39, 0.4);
  color: white;
}

.event-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(215, 53, 39, 0.3);
}

.event-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(215, 53, 39, 0.25);
}

/* -----------banner-portion------------------------------- */

.banner-img {
  max-width: 1141px;
  border-radius: 10px;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------------------------------------------------- */

.content-section {
  max-width: 800px; /* Limit content width */
  text-align: center;
  padding: 20px;
}

.main-heading {
  font-size: 3.5rem; /* Large font size for heading */
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
  font-family: Coustard, sans-serif;
}

.highlight-text {
  color: #ffc107; /* Gold/Yellow color for highlighted text */
}



.paragraph-text {
  color: #aaaaaa; /* Lighter gray for paragraph */
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 761px; /* Limit paragraph width */
  margin-left: auto;
  margin-right: auto;
}

.custom-button {
  background-color: #dc3545; /* Red background */
  color: #ffffff; /* White text */
  border: 2px solid #ffc107; /* Gold/Yellow border */
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px; /* Slightly rounded corners */
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-button:hover {
  background-color: #c82333; /* Darker red on hover */
  border-color: #ffd700; /* Slightly darker gold on hover */
  color: #ffffff;
}

.underline-decoration {
  display: flex;
  margin-bottom: 25px;
  gap: 5px;
}

.underline-decoration .line-red {
  width: 40px;
  height: 3px;
  background-color: #ba3e3e; /* Red line */

  border-radius: 2px;
}

.underline-decoration .line-yellow {
  width: 20px;
  height: 3px;
  background-color: #ffba19; /* Yellow line */
  border-radius: 2px;
}

/* ---------------card section---------------------------------------- */
.card-section {
  border-bottom: 1px solid #131313;
}
.section-padding {
  padding: 80px 20px; /* Top/bottom padding for sections */
}

/* Feature Card Styling */
.feature-card {
  background-color: #131313; /* Dark gray background */
  border: 1px solid #c8c8c8; /* Lighter gray border */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px; /* Space between cards on small screens */
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .icon {
  font-size: 3rem;
  color: #ffba19; /* Gold/Yellow color for icons */
  margin-bottom: 15px;
}

.feature-card .card-title {
  color: #ffba19; /* Gold/Yellow color for titles */
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: Coustard, sans-serif;
}

.feature-card .card-text {
  color: #aaaaaa; /* Lighter gray for text */
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-text {
  text-align: left;
}

/* About Section Styling */
.about-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Ensure container takes full height */
}

.about-image {
  width: 100%;
  max-width: 450px; /* Max width for the image */
  height: auto;
  border-radius: 50%; /* Circular image */
  object-fit: cover;
  aspect-ratio: 1 / 1; /* Maintain aspect ratio for circular shape */
}

.floating-bar {
  position: absolute;
  bottom: -27px; /* Adjust position relative to image */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(179, 177, 177, 0.7); /* Semi-transparent dark gray */
  border-radius: 30px;
  padding: 37px 37px;
  display: flex;
  gap: 62px;
  backdrop-filter: blur(13px); /* Optional: for frosted glass effect */
  -webkit-backdrop-filter: blur(5px); /* For Safari */
}

.floating-bar .icon {
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease;
}

.floating-bar .icon:hover {
  color: #ffba19;
}

.about-heading {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: Coustard, sans-serif;
  color: white;
}

.about-heading .highlight-text {
  color: #ffba19; /* Gold/Yellow color for highlighted text */
}

.underline-divider {
  display: flex;
  justify-content: flex-start; /* Align to start for left-aligned text */
  align-items: center;
  margin: 1rem 0 2rem 0; /* Spacing around the divider */
  width: fit-content;
}

.underline-divider span {
  height: 3px; /* Thickness of the line */
  width: 30px; /* Length of each segment */
  margin: 0 2px; /* Space between segments */
  border-bottom: 3px dashed; /* Dashed line style */
}

.underline-divider .red-line {
  border-color: #dc3545; /* Red color */
}

.underline-divider .brown-line {
  border-color: #8b4513; /* Brownish color */
}

.about-paragraph {
  color: #aaaaaa; /* Lighter gray for paragraph */
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  ); /* Responsive grid */
  gap: 20px;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 15px;
}

.feature-item .icon {
  font-size: 1.5rem;
  color: #ffc107; /* Gold/Yellow color for feature icons */
}

.feature-item .text {
  color: #ffffff;
  font-size: 1rem;
}

.custom-button {
  background-color: #dc3545; /* Red background */
  color: #ffffff; /* White text */
  border: 2px solid #ffc107; /* Gold/Yellow border */
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px; /* Slightly rounded corners */
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-button:hover {
  background-color: #c82333; /* Darker red on hover */
  border-color: #ffd700; /* Slightly darker gold on hover */
  color: #ffffff;
}

/* ----------------------------why-us-section----------------------- */

.why-us-section {
  background-color: #141414;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  margin-top: 108px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 50px;
  color: white;
  position: relative;
  font-family: Coustard, sans-serif;
}

.section-title .highlight {
  color: #ffba19;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(
    90deg,
    #ffba19 0%,
    #ffba19 25%,
    transparent 25%,
    transparent 35%,
    #c85a5a 35%,
    #c85a5a 65%,
    transparent 65%,
    transparent 75%,
    #ffba19 75%,
    #ffba19 100%
  );
  border-radius: 2px;
}

/* Remove the ::before pseudo-element completely */
/* .section-title::before {
  display: none;
} */

.left-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 613px;
  min-height: 588px;
}

.left-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  right: 73px;
  top: 125px;
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  color: #666;
  font-size: 1.5rem;
  opacity: 0.6;
}

.floating-icon:nth-child(1) {
  top: 10%;
  left: 10%;
}
.floating-icon:nth-child(2) {
  top: 20%;
  right: 15%;
}
.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 5%;
}
.floating-icon:nth-child(4) {
  bottom: 10%;
  right: 10%;
}
.floating-icon:nth-child(5) {
  top: 50%;
  left: 2%;
}
.floating-icon:nth-child(6) {
  top: 70%;
  right: 5%;
}

.features-list {
  position: relative;
}

.feature-items {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}

.feature-number {
  font-size: 4rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.15);
  margin-right: 20px;
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  flex: 1;
  backdrop-filter: blur(10px);
}

.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  max-width: 66px;
  min-height: 60px;
}

.feature-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.feature-text {
  flex: 1;
}

.feature-title {
  color: #ffba19;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 0;
}

.feature-description {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* -----------------team----------------------------------------- */

.team-section > div > h2 {
  font-size: 46px;
  font-family: Coustard, sans-serif;
}

.mb-0 {
  font-size: 18px;
  font-family: Coustard, sans-serif;
}

/* ---------------------------------------Newsletter Section----------------- */
.newsletter-section {
  background-color: #131313;
  padding: 60px 0;
  position: relative;
  max-width: 1398px;
  margin: 0 auto;
  border-radius: 10px;
}

.newsletter-title {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}

.newsletter-title .highlight {
  color: #ffba19;
}

.newsletter-subtitle {
  color: #cccccc;
  font-size: 18px;
  margin-bottom: 30px;
}

/* ------------------------------------------------- */
/* .email-form {
  display: flex;
  max-width: 400px;
  border: 1px solid white;
  border-radius: 6px;
  overflow: hidden; 
}

.email-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background-color: #111;
  color: #fff;
  font-size: 0.95rem;
  border-right: 1px solid transparent; 
}

.email-input::placeholder {
  color: #ccc;
}

.email-input:focus {
  outline: none;
  background-color: #1a1a1a;
}

.join-btn {
  background-color: #c84545;
  border: none;
  color: white;
  padding: 12px 25px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0 6px 6px 0;
}

.join-btn:hover {
  background-color: #a73838;
} */
/* ------------------------------------------------- */

.email-wrapper {
  position: relative;
  max-width: 400px;
}

.email-form {
  display: flex;
  background-color: #111;
  border: 1px solid white;
  border-radius: 6px;
  overflow: hidden;
  /* position: relative; */
}

.email-input {
  flex: 1;
  padding: 12px 15px;
  background-color: #111;
  color: #fff;
  border: none;
  font-size: 0.95rem;
}

.email-input::placeholder {
  color: #ccc;
}

.email-input:focus {
  outline: none;
  background-color: #1a1a1a;
}

.join-btn {
  position: absolute;
  top: -3px;
  right: 3px;

  height: 100%;
  background-color: #c84545;
  color: white;
  border: none;
  padding: 0 25px;
  border-radius: 0 6px 6px 0;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.join-btn:hover {
  background-color: #a73838;
}

.newsletter-illustration {
  max-width: 604px;
  min-height: 377px;
  position: absolute;
  top: 11px;
}

.newsletter-illustration img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/*-------------------------------------- Footer Section------------------- */
.footer-section {
  /* background-color: #1a1a1a; */
  padding: 72px 0 20px;
}

.footer-logo {
  color: #f4b942;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-description {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-column h5 {
  color: #ffba19;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f4b942;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon.instagram {
  background-color: #ba3e3e;
}
.social-icon.facebook {
  background-color: #ba3e3e;
}
.social-icon.twitter {
  background-color: #ba3e3e;
}
.social-icon.linkedin {
  background-color: #ba3e3e;
}

.follow-us {
  color: #ffba19;
  font-weight: 500;
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  color: white;
  font-size: 0.8rem;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
}
/* ---------------------------------------------------------------- */
/* DESKTOP - NORMAL POSITIONING */
@media screen and (min-width: 992px) {
  .navbar-collapse {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    box-shadow: none !important;
    border-top: none !important;
    background-color: transparent !important;
  }
  .create-event-desktop-wrapper{
    display: none!important;
  }
}
/* ---------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .newsletter-illustration {
    top: 39px;
  }
}
/* ---------------------------------------------------------------- */

/* MOBILE NAV OPTIMIZATIONS - OVERLAY STYLE */
@media screen and (max-width: 992px) {
  .blur-bg-mobile {
    background: rgba(0, 0, 0, 0.85); /* dark semi-transparent */
    backdrop-filter: blur(10px); /* blur effect */
    border-radius: 0;
    padding: 1.5rem;
    position: absolute;
    top: 100%; /* directly below navbar */
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .navbar-collapse {
    padding: 1rem;
    margin-top: 0;
  }

  .nav-divider {
    display: block;
  }

  .navbar-nav {
    margin-top: 0;
    width: 100%;
    text-align: left;
    /* padding: 0 1rem; */
  }

  .navbar-nav .nav-link {
    margin-right: 0;
    margin-bottom: 0.5rem;
    text-align: center;
    padding: 0.5rem 0 !important;
    border-bottom: 1px solid #333;
  }

  .dropdown-item {
    text-align: center !important;
  }

  .search-icon,
  .cart-icon {
    display: none !important;
  }

  .event-buutons {
    display: flex;
    justify-content: center;
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: left;
  }

  .navbar-nav .nav-item:last-child {
    margin-top: 1rem;
    text-align: center;
  }

  .navbar-nav .nav-item .btn-create-event {
    text-align: center;
    width: auto;
    display: inline-block;
  }

  .navbar-nav .search-icon,
  .navbar-nav .cart-icon {
    padding: 0.5rem 0;
    margin-right: 1rem;
    display: inline-block;
  }

  /* Hide divider on mobile */
  .divider-item {
    display: none;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    /* background-color: transparent; */
    padding: 0;
    margin: 0;
    background: #1a1a1a !important;
  }

  .dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    background-color: #2a2a2a;
    margin-bottom: 2px;
  }

  .about-image-container {
    margin-bottom: 40px; /* Space between image and text on smaller screens */
  }
  .about-section .col-md-6 {
    text-align: center; /* Center text content on smaller screens */
  }
  .underline-divider {
    justify-content: center; /* Center divider on smaller screens */
  }
  .features-grid {
    grid-template-columns: 1fr; /* Stack features on smaller screens */
  }

  .settings {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  /* .newsletter-illustration {
    margin-top: 30px;
    top: -4%;
    left: 38%;
  } */

  .left-illustration img {
    right: -169px;
    top: -9px;
  }
  /* changedportion-------------------- */

  .event-buutons {
    display: none; 
  }
}

/* ---------------------------------------------- */

@media screen and (max-width: 768px) {
  .main-heading {
    font-size: 2.5rem; /* Adjust for tablets */
  }
  .paragraph-text {
    font-size: 1rem;
  }
  .custom-button {
    padding: 10px 25px;
    font-size: 1rem;
  }
  .section-padding {
    padding: 60px 15px;
  }
  .main-heading,
  .about-heading {
    font-size: 2.5rem;
  }
  .feature-card .card-title {
    font-size: 1.2rem;
  }
  .feature-card .card-text,
  .about-paragraph,
  .feature-item .text {
    font-size: 0.9rem;
  }
  .about-paragraph{
    text-align: center;
  }
  .custom-button {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .floating-bar .icon {
    font-size: 1.3rem;
  }
  .left-illustration {
    min-height: 300px;
    margin-bottom: 30px;
  }
  .feature-number {
    font-size: 3rem;
    min-width: 60px;
    margin-right: 15px;
  }
  .team-grid-container-unique {
    display: none; /* Hide grid on small screens */
  }
  .team-carousel-container-unique {
    display: block; /* Show carousel on small screens */
  }
  .team-section-padding {
    padding: 60px 15px;
  }
  .team-main-heading {
    font-size: 2.2rem;
  }
  .team-underline-divider {
    margin-bottom: 2rem;
  }
  .team-member-card-item {
    margin-bottom: 0; /* No margin-bottom for cards inside carousel */
  }
  .newsletter-section {
    padding-bottom: 93px;
  }

  .newsletter-title {
    font-size: 2rem;
    text-align: center;
  }

  .newsletter-subtitle {
    text-align: center;
  }

  .email-form {
    margin: 0 auto;
  }

  .newsletter-illustration {
    height: 200px;
  }

  .footer-section {
    padding: 0px 0 20px;
  }

  .newsletter-illustration {
    display: none;
  }

  .footer-section .row {
    text-align: center;
  }

  .footer-column,
  .footer-logo,
  .footer-description,
  .follow-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 41px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }
  .left-illustration img {
    right: -66px;
    top: 10px;
  }
  .newsletter-section > div > div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .join-btn {
    position: absolute;
    top: 56px;
    /* right: 3px; */
    height: 100%;
    width: 100%;
    background-color: #c84545;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
}

/* ---------------------------------------------------- */

@media screen and (max-width: 576px) {
  .why-us-section {
    margin-top: 15px;
  }
  .left-illustration img {
    top: 0;
  }
  .newsletter-title {
    font-size: 1.8rem;
  }

  .email-form {
    flex-direction: column;
    /* gap: 10px; */
  }

  .email-input {
    border-radius: 5px;
  }
}
/* --------------------------------------------------------- */
@media screen and (max-width: 480px) {
  .main-heading {
    font-size: 1.8rem; /* Adjust for mobile phones */
  }
  .paragraph-text {
    font-size: 0.9rem;
  }
  .underline-divider span {
    width: 20px; /* Shorter lines for smaller screens */
  }
  .custom-button {
    width: 100%; /* Full width button on small screens */
    max-width: 250px; /* Max width for button */
  }
  .section-padding {
    padding: 40px 10px;
  }
  .main-heading,
  .about-heading {
    font-size: 2rem;
  }
  .feature-card {
    padding: 20px;
  }
  .feature-card .icon {
    font-size: 2.5rem;
  }
  .feature-card .card-title {
    font-size: 1.1rem;
  }
  .feature-card .card-text,
  .about-paragraph,
  .feature-item .text {
    font-size: 0.85rem;
  }
  .underline-divider span {
    width: 20px;
  }
  .custom-button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    font-size: 0.9rem;
  }
  .floating-bar {
    bottom: -17px;
    gap: 41px;
    padding: 25px 20px;
  }
  .floating-bar .icon {
    font-size: 1.1rem;
  }
  .why-us-section {
    padding: 40px 0;
  }

  .left-illustration img {
    right: 6px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-number {
    font-size: 2.5rem;
    min-width: 50px;
    margin-right: 10px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.85rem;
  }

  .feature-content {
    gap: 10px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .team-section-padding {
    padding: 40px 10px;
  }
  .team-main-heading {
    font-size: 1.8rem;
  }
  .team-underline-divider span {
    width: 20px;
  }
  .team-member-card-item img {
    width: 120px;
    height: 120px;
  }
  .team-member-card-item .team-member-name {
    font-size: 1.1rem;
  }
  .team-member-card-item .team-member-role {
    font-size: 0.85rem;
  }
  .team-section > div > h2 {
    font-size: 30px;
  }
  .mb-0 {
    font-size: 15px;
  }
  .newsletter-title {
    font-size: 1.6rem;
  }

  .newsletter-illustration {
    height: 180px;
  }
  .newsletter-subtitle {
    font-size: 16px;
  }
  /* changedportion--------------- */

  .event-buutons{
    display: block;
    text-align: center;
  }
}
/* ----------------------------------------------------------- */
@media screen and (max-width: 320px) {
  .main-heading {
    font-size: 1.5rem; /* Further adjust for very small screens */
  }
  .paragraph-text {
    font-size: 0.85rem;
  }
  .underline-divider span {
    width: 15px; /* Even shorter lines */
  }
  .custom-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  .section-padding {
    padding: 30px 5px;
  }
  .main-heading,
  .about-heading {
    font-size: 1.7rem;
  }
  .feature-card {
    padding: 15px;
  }
  .feature-card .icon {
    font-size: 2rem;
  }
  .feature-card .card-title {
    font-size: 1rem;
  }
  .feature-card .card-text,
  .about-paragraph,
  .feature-item .text {
    font-size: 0.8rem;
  }
  .underline-divider span {
    width: 15px;
  }
  .custom-button {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  .floating-bar {
    gap: 28px;
    padding: 14px 8px;
  }
  .floating-bar .icon {
    font-size: 1rem;
  }
  .feature-card {
    padding: 15px;
  }

  .feature-number {
    font-size: 2rem;
    min-width: 40px;
    margin-right: 8px;
  }

  .floating-icon {
    font-size: 1rem;
  }

  .feature-item {
    margin-bottom: 20px;
  }
  .team-section-padding {
    padding: 30px 5px;
  }
  .team-main-heading {
    font-size: 1.5rem;
  }
  .team-underline-divider span {
    width: 15px;
  }
  .team-member-card-item img {
    width: 100px;
    height: 100px;
  }
  .team-member-card-item .team-member-name {
    font-size: 1rem;
  }
  .team-member-card-item .team-member-role {
    font-size: 0.8rem;
  }
}
/* ---------------------------------------------------------------- */

@media (min-width: 480px) {
  .create-event-desktop-wrapper {
    display: block; /* Show on screens 480px and wider */
  }
  /* Push toggler to the right when desktop button is visible */
  .navbar-toggler {
    margin-left: auto;
  }
  /* Hide on screens 480px and wider */
  /*  */
}
