@font-face {
  font-family: "ArialNova";
  src: url("./fonts/ArialNova.ttf") format("truetype");
}
@font-face {
  font-family: "ArialNovaBold";
  src: url("./fonts/ArialNova-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "UbuntuSansThin";
  src: url("./fonts/Ubuntu_Sans/static/UbuntuSans-Thin.ttf") format("truetype");
}
@font-face {
  font-family: "UbuntuSansBold";
  src: url("./fonts/Ubuntu_Sans/static/UbuntuSans-Bold.ttf") format("truetype");
}

:root {
  --button-back: #dcdcdc;
  --button-text-color: #545454;
  --icon-fill: #696969;

  --heading-color: rgb(129, 129, 129);
  --heading-font-size: 4.5rem;
  --heading-font-weight: 100;
  --heading-letter-spacing: -3px;
  --heading-line-height: 70px;
}
/* =================================== menu style =================================== */

.social-media-page {
  font-family: "ArialNova";
  background: #ffffff !important;
  width: 100vw !important;
  height: 100vh;
  max-height: 100vh;
  overflow-y: hidden;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
}
.social-media-page.menu-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.media-page-wrapper {
  width: 100%;
  height: auto;
  background: radial-gradient(
    circle at 30% 107%,
    #e7e7e7 0%,
    /* Yellow */ #e7e7e7 15%,
    /* Yellow */ #e7e7e7 30%,
    /* Yellow */ #e7e7e7 45%,
    #d6249f 55%,
    /* Orange-Red */ #e7e7e7 65%,
    /* Pink-Purple */ #e7e7e7 75% /* Blue */ /* Pink-Purple */ #e7e7e7 85%
      /* Blue */ /* Pink-Purple */ #e7e7e7 100% /* Blue */
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.social-media-page.scroll-down {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
}

.social-media-page::-webkit-scrollbar {
  height: 12px;
  width: 7px;
}

/* Track */
.social-media-page::-webkit-scrollbar-track {
  border-radius: 9999px;
  background: #e7e7e7;
}

/* Handle */
.social-media-page::-webkit-scrollbar-thumb {
  background: #bebebe;
  border-radius: 10px;
}

/* Handle on hover */
.social-media-page::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

::selection {
  color: black;
  background: rgb(236, 144, 22);
  border-radius: 9999px;
}
/* ------------------------------------ */

.social-header {
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

.social-navbar {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.links-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  width: 100%;
  max-width: 500px !important;
  margin-right: 2%;
}

.icons-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}

.social-menu-btn-icon {
  font-size: 1.8rem;
  color: #747474;
}

.menu-logo-container {
  margin-right: 2rem;
}
.icon-button {
  background: none;
  border: none;
  width: 27px;
  text-decoration: none;
  cursor: pointer;
}
.icon-button svg {
  fill: var(--icon-fill);
}
/* ----------------- heart icon style ------------------------ */
.like-button-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease-out;
  -webkit-tap-highlight-color: transparent;
}

.heart-icon {
  width: 30px;
  /* height: 27px; */
  fill: #e65f73;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: fill 0.3s ease, filter 0.3s ease;
  transform: scale(1);
}

/* Enhanced hover with glow */
.like-button-container:hover .heart-icon {
  fill: #f02f4b;
  filter: drop-shadow(0 0 8px rgba(218, 78, 78, 0.5));
  transform: scale(1.15);
  animation: heart-wiggle 0.5s ease-in-out infinite;
}

@keyframes heart-wiggle {
  0%,
  100% {
    transform: scale(1.1) rotate(0deg);
  }
  25% {
    transform: scale(1.15) rotate(-5deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  75% {
    transform: scale(1.15) rotate(-3deg);
  }
}

/* Enhanced clicked state with stronger animation */
.heart-clicked {
  fill: #ff0055;
  filter: drop-shadow(0 0 12px rgba(255, 0, 85, 0.8));
  animation: heart-pop-enhanced 0.5s cubic-bezier(0.25, 0.8, 0.25, 1.8) forwards;
}

@keyframes heart-pop-enhanced {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.5) rotate(-5deg);
  }
  50% {
    transform: scale(1.3) rotate(5deg);
  }
  70% {
    transform: scale(1.4) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* Particle burst effect */
.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

.particle.heart-shape {
  width: 12px;
  height: 12px;
  background: #ff0055;
  clip-path: polygon(
    50% 15%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}
.particle.blue-ones {
  width: 12px;
  height: 12px;
  background: #00b7ff;
  clip-path: polygon(
    50% 15%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

@keyframes particle-burst {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0) rotate(360deg);
    opacity: 0;
  }
}

/* Ripple wave effect */
.ripple-wave {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 3px solid #ff0055;
  border-radius: 50%;
  pointer-events: none;
  animation: ripple-expand 0.8s ease-out forwards;
}

.ripple-wave-blue {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 3px solid #60a5fa;
  border-radius: 50%;
  pointer-events: none;
  animation: ripple-expand 0.8s ease-out forwards;
}

@keyframes ripple-expand {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* Sparkle effect */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8);
  animation: sparkle-twinkle 0.6s ease-out forwards;
}

@keyframes sparkle-twinkle {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 1;
  }
  50% {
    transform: translate(var(--sx), var(--sy)) scale(1.5);
    opacity: 1;
  }
  100% {
    transform: translate(var(--sx), var(--sy)) scale(0);
    opacity: 0;
  }
}

/* Enhanced like count with bounce */
.like-count {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  color: #2b2b2b;
  font-weight: 800;
  font-size: 1rem;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1.2),
    opacity 0.4s ease-in-out;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 85, 0.5);
}

.like-count.show {
  opacity: 1;
  transform: translate(-50%, -20px);
  animation: count-bounce 0.6s ease-out;
}

@keyframes count-bounce {
  0% {
    transform: translate(-50%, 10px) scale(0.5);
  }
  50% {
    transform: translate(-50%, -25px) scale(1.2);
  }
  100% {
    transform: translate(-50%, -20px) scale(1);
  }
}
/* ----------------------------------------------------------- */
/* -------------------- comment button style --------------- */
.comment-button-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comment-button-container {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease-out;
  -webkit-tap-highlight-color: transparent;
}

.comment-icon {
  width: 35px;
  height: 35px;
  margin-bottom: -5px;
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
  transition: fill 0.3s ease,
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(1);
}

/* Enhanced hover with shake and glow */
.comment-button-container:hover .comment-icon {
  filter: drop-shadow(0 0 12px rgba(233, 119, 12, 0.8));
  animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {
  0%,
  100% {
    transform: scale(1.1) rotate(0deg);
  }
  25% {
    transform: scale(1.15) rotate(-5deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  75% {
    transform: scale(1.15) rotate(-3deg);
  }
}

/* Clicked state animation */
.comment-icon.clicked {
  z-index: 9999;
  animation: comment-pop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes comment-pop {
  0% {
    transform: scale(1) rotate(0deg);
  }
  30% {
    transform: scale(1.3) rotate(-10deg);
  }
  60% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    transform: scale(1.15) rotate(0deg);
  }
}

/* Badge styles with pulse animation */
.comment-badge {
  position: absolute;
  top: -7px;
  right: -8px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 0.3rem 0.4rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  line-height: 1;
  z-index: 10;
  animation: badge-pulse 2s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes badge-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 2px 12px rgba(239, 68, 68, 0.6);
  }
}

.comment-badge.hide {
  opacity: 0;
  transform: scale(0);
}

/* --- COMMENT CONTAINER STYLES --- */
.comment-slider-container {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px) scale(0.9);
  opacity: 0;
  width: 380px;
  height: 650px !important;
  overflow: hidden;
  background: #fdf7f7;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  padding: 1.25rem;
  box-shadow: 0 0 20px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.3s ease-out;
  z-index: 50;
}

.comment-slider-container.hidden {
  display: none;
}

.comment-slider-container.active {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.comment-items {
  margin: 1rem 0 1rem 0;
  padding: 10px 0.8rem 10px 0;
  max-height: 75%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 2px solid #f3e2e22a;
}


/* Scrollbar styling */
.comment-items::-webkit-scrollbar {
  width: 10px;
}

.comment-items::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.comment-items::-webkit-scrollbar-thumb {
  background-color: #d3d3d3;
  border-radius: 10px;
}

/* Individual comment styling (Replacing Tailwind classes in JS) */
.comment-title {
  /* Replaces text-base font-bold text-gray-800 mb-3 border-b border-blue-100 pb-2 */
  font-size: 1rem;
  font-weight: 700;
  color: #181818; /* gray-800 */
  margin-bottom: 0.75rem;
  border-bottom: 3px solid #eeeeee; /* blue-100 */
  background-color: #ffffff;
  padding: 0.5rem 0 0.5rem 0.4rem;
}

.comment-item {
  display: flex;
  gap: 0.4rem;
  animation: comment-slide-in 0.7s ease-out forwards;
  opacity: 0;
  transform: translateY(-100px);
  position: relative;
  z-index: 1;
}

.comment-item::before {
  content: "";
  position: absolute;
  top: -9px;
  left: -3px;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  padding: 5px;
  z-index: -1;
  opacity: 0;
  background-color: #f0e8e8;
}

.comment-item:hover::before {
  opacity: 1;
}

.comment-item:last-child {
  border-bottom: none;
}

.conment-avatar img {
  width: 30px;
}

.comment-meta {
  /* Replaces flex items-center justify-between text-xs text-gray-500 mb-1 */
  display: flex;
  padding-right: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.65rem;
  color: #1f1f1f;
  font-family: "ArialNova";
  font-weight: 500;
  margin-top: 5px;
}

.comment-user {
  /* Replaces font-semibold text-blue-700 */
  font-weight: 600;
  color: #141414; /* blue-700 */
}

.comment-text {
  font-size: 0.8rem;
  color: #1f1f1f;
  line-height: 1;
}
.com-hash-tag {
  font-weight: bold;
  color: #1f6bdc;
}

.com-pined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}

.heart-liked {
  font-size: 0.7rem;
  margin-top: 1rem;
}
/* Individual comment animation (kept) */
@keyframes comment-slide-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation delays for comments */
.comment-item:nth-child(2) {
  animation-delay: 0.05s;
}
.comment-item:nth-child(3) {
  animation-delay: 0.1s;
}
.comment-item:nth-child(4) {
  animation-delay: 0.15s;
}
.comment-item:nth-child(5) {
  animation-delay: 0.2s;
}
.comment-item:nth-child(6) {
  animation-delay: 0.25s;
}
.comment-item:nth-child(7) {
  animation-delay: 0.5s;
}

.emojy-and-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}
.emojies {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.emojies img {
  width: 30px;
  transition: transform 0.3s ease;
}
.emojies img:hover {
  transform: scale(1.3);
}

.input-comment {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.input-comment img {
  width: 37px;
}

.input-comment input::placeholder {
  color: var(--button-text-color);
  font-size: 0.9rem;
  font-family: "ArialNova";
  letter-spacing: -1px;
}

.input-comment input {
  padding-left: 1rem;
  width: 100%;
  border-radius: 9999px;
  height: 40px;
  background-color: transparent;
  border: 2px solid rgb(94, 94, 94);
  cursor: not-allowed;
}

/* Ripple and Particle effects (kept) */
.bubble-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
}

@keyframes bubble-float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--bx), var(--by)) scale(0);
    opacity: 0;
  }
}

.message-line {
  position: absolute;
  height: 2px;
  background: #60a5fa;
  border-radius: 2px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.8;
}

@keyframes line-expand {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: var(--line-width);
    opacity: 0;
  }
}

.ripple {
  position: absolute;
  border: 2px solid #ff0055;
  border-radius: 50%;
  pointer-events: none;
  animation: ripple-effect 0.6s ease-out forwards;
}

@keyframes ripple-effect {
  0% {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
}
/* ----------------------------------------------------------- */

/* ==================== DM CONTAINER STYLES ==================== */
/* ==================== DM BADGE AND ICON STYLES ==================== */
.dm-button-container {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease-out;
  -webkit-tap-highlight-color: transparent;
}

.dm-icon {
  width: 32px;
  height: 32px;
  fill: #3b82f6;
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
  transition: fill 0.3s ease,
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(1);
}

/* Enhanced hover with shake and glow */
.dm-button-container:hover .dm-icon {
  fill: #60a5fa;
  filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.8));
  animation: wiggle 0.5s ease-in-out;
}

/* Clicked state animation */
.dm-icon.clicked {
  z-index: 9999;
  animation: dm-pop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes dm-pop {
  0% {
    transform: scale(1) rotate(0deg);
  }
  30% {
    transform: scale(1.3) rotate(-10deg);
  }
  60% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    transform: scale(1.15) rotate(0deg);
  }
}

/* Badge styles with pulse animation */
.dm-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 0.3rem 0.4rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  line-height: 1;
  z-index: 10;
  animation: badge-pulse 2s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dm-badge.hide {
  opacity: 0;
  transform: scale(0);
}

.dm-button-wrapper {
  position: relative;
  display: inline-block;
}

.dm-slider-container {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px) scale(0.9);
  opacity: 0;
  width: 380px;
  height: 650px !important;
  overflow: hidden;
  background: #fdf7f7;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  padding: 0.3rem 1.25rem 1.25rem 1.25rem;
  box-shadow: 0 0 20px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.3s ease-out;
  z-index: 50;
}

.dm-slider-container.hidden {
  display: none;
}

.dm-slider-container.active {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dm-items {
  margin: 0rem 0 1rem 0;
  padding: 0 0.8rem 10px 0;
  max-height: 68%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #f3e2e22a;
}

.dm-items::-webkit-scrollbar {
  width: 10px;
}

.dm-items::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.dm-items::-webkit-scrollbar-thumb {
  background-color: #d3d3d3;
  border-radius: 10px;
}

.dm-head {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.dm-heading {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.status-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.status-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  position: relative;
}

.status-image {
  width: 65px !important;
}

.status-image:nth-child(3)::after,
.status-image:nth-child(4)::after {
  content: "";
  position: absolute;
  bottom: 17px;
  right: 4px;
  z-index: 5;
  padding: 6px;
  border-radius: 9999px;
  background-color: #00db00;
}

.status-image img {
  width: 100% !important;
}

.status-image p {
  font-size: 0.7rem;
  white-space: nowrap;
  font-weight: 100;
  color: var(--button-text-color);
}

.status-image::before {
  position: absolute;
  z-index: 5;
  top: -23px;
  left: -15x;
  font-size: 0.7rem;
  font-weight: 100;
  line-height: 1;
  color: #ffffff;
  border-radius: 9999px;
  padding: 6px 8px;
  text-align: center;
  width: 70px;
}
.status-image:nth-child(1)::before {
  content: "Share a thought!";
  background-color: #6a1bed;
}
.status-image:nth-child(2)::before {
  content: "Y'all really laughin?";
  background-color: #ffc705;
}
.status-image:nth-child(3)::before {
  content: "New jewelry just dropped ;)";
  background-color: #ff1990;
  width: 75px;
}
.status-image:nth-child(4)::before {
  content: "why you not see this???";
  background-color: #303030;
}

.msg-filter-cont {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.7rem;
}

.msg-filter-cont p {
  font-size: 0.8rem;
  padding: 8px 1.2rem;
  background-color: #efefef;
  border-radius: 10px;
  font-weight: bold;
  color: var(--button-text-color);
}

.msg-filter-cont p:nth-child(1) {
  background-color: #dcf2fd;
  color: #45b0e8;
}

.dm-item {
  display: flex;
  gap: 0.4rem;
  animation: item-slide-in 0.7s ease-out forwards;
  opacity: 0;
  transform: translateY(-100px);
  align-items: center;
  padding: 0.4rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 0.5rem;
}

.dm-item:hover {
  background-color: #f0e8e8;
}

.dm-user {
  font-weight: bold;
  color: #141414;
  font-size: 0.85rem;
  position: relative;
}

.dm-user .com-pined {
  position: absolute;
  z-index: 5;
  left: 35%;
  top: 0;
}

.dm-time-stamp {
  font-size: 0.6rem;
  color: #a0a2a7;
}

.dm-message {
  font-size: 0.8rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dm-user .blue-dot {
  position: absolute;
  right: 0;
  top: 100%;
  padding: 4px;
  border-radius: 999px;
  background-color: #0095f2;
}

.unread-text {
  font-weight: 500;
  color: #000;
}

.dm-avatar {
  width: 50px;
  height: 50px;
  margin-bottom: -0.27rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.dm-avatar img {
  width: 100%;
  height: 100%;
}

.two-overlaping {
  position: relative;
}
.two-overlaping img {
  width: 35px;
  height: 35px;
}

.two-overlaping img:nth-child(2) {
  position: absolute;
  bottom: 5px;
  right: 3px;
}

.online {
  position: relative;
}

.online:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 2px;
  z-index: 5;
  padding: 5px;
  border: 1px solid #dadada;
  border-radius: 9999px;
  background-color: #00db00;
}

.dm-content {
  flex: 1;
  overflow: hidden;
}

.dm-time {
  font-size: 0.65rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.dm-item:nth-child(2) {
  animation-delay: 0.05s;
}
.dm-item:nth-child(3) {
  animation-delay: 0.1s;
}

/* ==================== LIKE CONTAINER STYLES ==================== */
.like-button-wrapper {
  position: relative;
  display: inline-block;
}

.like-slider-container {
  position: absolute;
  top: 50px;
  right: 0;
  transform: translateY(-30px) scale(0.9);
  opacity: 0;
  width: 380px;
  height: 650px !important;
  overflow: hidden;
  background: #fdf7f7;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  padding: 1.25rem;
  box-shadow: 0 0 20px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.3s ease-out;
  z-index: 50;
}

.like-slider-container.hidden {
  display: none;
}

.like-slider-container.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.like-items {
  margin: 0.6rem 0 1rem 0;
  padding: 0 0.8rem 10px 0;
  max-height: 90%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #f3e2e22a;
}

.like-items::-webkit-scrollbar {
  width: 10px;
}

.like-items::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.like-items::-webkit-scrollbar-thumb {
  background-color: #d3d3d3;
  border-radius: 10px;
}

.like-title {
  font-size: 1rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 0.75rem;
  border-bottom: 3px solid #eeeeee;
  background-color: #ffffff;
  padding: 0.5rem 0 0.5rem 0.4rem;
}

.like-item {
  display: flex;
  gap: 0.8rem;
  animation: item-slide-in 0.7s ease-out forwards;
  opacity: 0;
  transform: translateY(-100px);
  padding: 0.5rem 0 0.5rem 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 0.5rem;
}

.like-blue-dot {
  position: absolute;
  border-radius: 9999px;
  right: 24px;
  top: 40%;
  padding: 4px;
  background-color: #287ff4;
  z-index: 5;
}

.like-blue-dot img {
  width: 100%;
}

.with-right-image {
  position: relative;
}

.with-right-image img {
  width: 40px;
  position: absolute;
  right: 0;
  top: 1%;
}

.time-done {
  font-size: 0.8rem;
  margin-top: 1rem;
  padding-left: 8px;
  padding-bottom: 1rem;
}

.with-right-button {
  position: relative;
}

.right-block-button,
.right-follow-button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #287ff4;
  border-radius: 9999px;
  font-size: 0.6rem;
  border: none;
  z-index: 6;
  color: white;
}
.right-follow-button {
  padding: 7px 20px;
}
.right-block-button {
  /* padding: 5px 13px; */
  padding: 7px 13px;
}

.like-item:hover {
  background-color: #f0e8e8;
}

.like-avatar {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.like-avatar img {
  width: 100%;
  position: inherit;
  border-radius: 50%;
}

.visit-two-overlaping img:nth-child(1) {
  position: relative;
}

.visit-two-overlaping img:nth-child(2) {
  position: absolute;
  z-index: 5;
  right: -8px;
  bottom: -6px;
}

.like-content {
  line-height: 1;
  flex: 1;
  /* overflow: hidden; */
}

.like-user {
  font-weight: 600;
  color: #141414;
  font-size: 0.9rem;
}

.alert-image {
  width: 40px !important;
  height: 40px !important;
}
.alert-image img {
  margin-left: -5px;
}
.alert-content .like-content {
  margin-left: -7px !important;
}

.like-message {
  font-size: 0.8rem;
  color: var(--button-text-color);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.like-time {
  font-size: 0.65rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.like-item:nth-child(2) {
  animation-delay: 0.05s;
}
.like-item:nth-child(3) {
  animation-delay: 0.1s;
}
.like-item:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes item-slide-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.download-profile {
  font-family: "ArialNova";
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-left: 10.8%;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--button-back); /* bg-gray-50 */
  border: 1px solid var(--button-back);
  border-radius: 9999px;
  font-size: 0.9rem; /* text-lg */
  position: relative;
  overflow: hidden;
  z-index: 10;
  cursor: pointer;
  isolation: isolate;
  transition: color 0.3s ease;
}

.download-profile:hover {
  color: #f9fafb;
}

/* before element animation */
.download-profile::before {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  left: -100%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 9999px;
  z-index: -10;
  transition: all 0.7s ease;
}

.download-profile:hover::before {
  left: 0;
  transform: translateY(-50%) scale(1.5);
}

/* SVG */
.download-profile svg {
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
  border-radius: 9999px;
  border: 1px solid #374151; /* gray-700 */
  transform: rotate(45deg);
  transition: transform 0.3s linear, background-color 0.3s linear,
    border-color 0.3s linear;
}

.download-profile:hover svg {
  transform: rotate(90deg);
  background-color: #f9fafb;
  border-color: transparent;
}

/* path color */
.download-profile svg path {
  fill: #1f2937; /* gray-800 */
  transition: fill 0.3s ease;
}

.download-profile:hover svg path {
  fill: #1f2937;
}

.social-menu-btn-icon {
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.8rem;
  transition: transform 0.2s ease-in-out;
}

.social-menu-btn-icon svg {
  fill: var(--icon-fill) !important;
  width: 25px;
  height: 25px;
}
.social-menu-btn-icon:hover {
  animation: vibrate 0.3s ease alternate;
}

@keyframes vibrate {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-2px);
  }
  20% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(2px);
  }
  40% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-2px);
  }
  60% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(2px);
  }
  80% {
    transform: translateX(0);
  }
  90% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}

/* ------------------- main container ------------------ */
.social-media-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  width: 100%;
  max-width: 1500px;
  height: auto;
}

.profile-biography {
  margin-top: 8rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}

.media-company-logo {
  /* border: 1px solid yellow; */
  width: 100%;
  max-width: 260px;
}

.media-company-logo img {
  width: 100%;
}

.company-info {
  flex-grow: 1;
  /* border: 1px solid orange; */
}

.page-name {
  display: flex;
}

.page-name span {
  margin-left: 0.8rem;
}
.page-name span svg {
  margin-top: 5px;
}

.verified-badge {
  position: relative;
  cursor: pointer;
}
.verified-text {
  width: 150px;
  font-family: "ArialNova";
  background-color: #252525;
  color: #dadada;
  border-radius: 9999px;
  position: absolute;
  line-height: 1;
  font-size: 0.7rem;
  text-align: center;
  padding: 0.5rem;
  top: 0.3rem;
  transform: translateX(2rem);
  z-index: 5;
  transition: all 0.3s ease;
  display: none;
}

.verified-badge:hover .verified-text {
  display: block;
}

.company-name {
  font-family: "ArialNovaBold";
  font-size: 3rem;
  font-weight: 1000;
  line-height: 0.9 !important;
  letter-spacing: -3px;
  color: rgb(44, 44, 44);
}

.statistics {
  display: flex;
  width: 100%;
  max-width: 400px;
  gap: 3rem;
  /* border: 1px solid rgb(44, 44, 44); */
  margin-top: 0.5rem;
}

.bio-content {
  width: 100%;
  max-width: 560px;
  display: flex;
  margin-top: 2rem;
  flex-direction: column;
  gap: 0.6rem;
  font-weight: 400;
}

.bio-para {
  line-height: 0.9;
}

.hash-and-link {
  line-height: 1;
  display: flex;
  flex-direction: column;
  width: 250px;
}
.hash-and-link span {
  color: #2867ef;
}
.buttons-and-badges {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.social-links-to-pages {
  margin-bottom: 7px;
  width: 550px;
}
.contact-link,
.services-link {
  text-decoration: none;
  font-size: 1rem;
  background-color: #dadada70;
  color: var(--button-text-color);
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 9999px;
  border: none;
}

.contact-link:hover,
.services-link:hover {
  background-color: #cecece70;
}

.hash-and-link a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

.badges {
  display: flex;
}
.badge p {
  margin-left: 10px;
}
.badge {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #dadada;
  border-radius: 9999px;
  align-items: center;
  position: relative;
}
.blue {
  background-color: #287ff4;
  z-index: 3;
}
.orange {
  background-color: #f6971c;
  margin-left: -6px;
  z-index: 2;
}
.red {
  background-color: #e90c40;
  margin-left: -6px;
  z-index: 1;
}
/* ============================================================ */

.clients-container::-webkit-scrollbar {
  height: 10px;
}

/* Track */
.clients-container::-webkit-scrollbar-track {
  border-radius: 9999px;
  background: #e7e7e7;
}

/* Handle */
.clients-container::-webkit-scrollbar-thumb {
  background: #bebebe;
  border-radius: 10px;
}

/* Handle on hover */
.clients-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.clients-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  /* border: 1px solid blue; */
  margin-top: 2rem;
  overflow-x: auto !important;
}

.clients {
  display: flex;
  min-width: 100%;
  gap: 15px;
  margin-bottom: 1rem;
}

.client {
  min-width: 130px;
  height: 130px;
  background-color: #f5f5f5;
  border-radius: 9999px;
  border: 5px solid #e1e1e1;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.client:hover {
  border-color: #ff7b00;
}

.client img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  object-fit: cover;
}

/* ------------------- Filter container ------------------ */
/* Container Layout */
.filter-container {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.inputs-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.grid-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.btn-full {
  width: 50%;
  cursor: pointer;
  border-top: none;
  border-left: none;
  border-right: none;
  background: none;
  border-bottom: 3px solid rgba(194, 194, 194, 0.61);
  padding: 0.8rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "ArialNova";
}
.btn-full svg {
  width: 2rem;
  height: 2rem;
  fill: var(--icon-fill);
}

.active-btn {
  border-color: black !important;
}

/* Search Input */
.input-field {
  position: relative;
  width: 40% !important;
  height: 45px;
  background: #f0f2ffef;
  border: none;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding-left: 90px;
}

.input-field input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  color: var(--button-text-color);
}

.input-field input:focus {
  outline: none;
}

.input-field:has(input:focus) {
  border: 3px solid rgb(100, 100, 100);
}

.input-field {
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

/* Search Icon */
.input-field .icon {
  position: absolute;
  left: 50px;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-field {
  font-weight: 200;
}

.input-field .icon svg {
  width: 100%;
  height: 100%;
}

/* ----------- custom dropdown -------------- */
.custom-select-media {
  position: relative;
  display: inline-block;
  width: 25%;
  min-width: 200px;
  margin-right: 15px;
  vertical-align: top;
}

.select-selected-media {
  width: 100%;
  height: 45px;
  background: #f0f2ffef;
  border-radius: 40px;
  border: none;
  outline: none;
  padding: 0 50px 0 25px;
  font-size: 1rem;
  font-weight: 200;
  color: var(--button-text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  user-select: none;
}

.select-selected-media:hover {
  background: #f0f2ffef;
}

.select-selected-media.active {
  background: #dee2fcef;
  box-shadow: 0 0 0 3px rgb(100, 100, 100);
  border-radius: 40px 40px 20px 20px;
}

/* Custom Arrow */
.select-selected-media::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--button-text-color);
  transition: transform 0.3s ease;
}

.select-selected-media.active::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Dropdown Items Container */
.select-items-media {
  position: absolute;
  background: #dee2fcef;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  z-index: 99;
  border-radius: 20px;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.select-items-media.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.select-items-media div {
  padding: 12px 25px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
  color: var(--button-text-color);
  font-size: 1rem;
  font-weight: 200;
}

.select-items-media div:hover {
  background: #f2f4ffef;
}

.select-items-media div:last-child {
  border-radius: 0 0 20px 20px;
}

.select-items-media div.same-as-selected {
  background: #f2f4ffef;
  font-weight: 400;
}

/* Scrollbar styling */
.select-items-media::-webkit-scrollbar {
  width: 8px;
}

.select-items-media::-webkit-scrollbar-track {
  background: transparent;
}

.select-items-media::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}

.select-items-media::-webkit-scrollbar-thumb:hover {
  background: #777;
}

/* Hidden select for form submission */
.custom-select-media select {
  display: none;
}

/* Clear Button */
.clear-btn {
  background: none;
  border: none;
  font-size: 0.8rem;
  color: #777;
  cursor: pointer;
  padding: 5px 0;
  position: relative;
  left: -1.5rem;
}

.clear-btn:hover {
  text-decoration: underline;
}

/* Optional: Mobile Responsive */
@media (max-width: 768px) {
  .filter-container {
    flex-direction: column;
    gap: 15px;
  }

  .clear-btn {
    align-self: flex-end;
    margin-right: 20px;
  }
}
/* -------------------- videos and awards --------------- */
.videos-and-awards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.videos-container,
.awards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  padding: 20px 0;
}

.video-card,
.award-card {
  height: 500px;
  background: transparent;
  border-radius: 30px;
  border: 5px solid transparent;
  transition: border-color 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.award-card {
  border: 1px solid #b3b3b36c;
}

.video-card:hover,
.award-card:hover {
  border-color: #f37005;
}

.video-card video {
  width: 600px !important;
  height: 100%;
  transform: scale(1.3);
}

/* ✅ Responsive Layout */
@media (max-width: 992px) {
  .videos-container,
  .awards-container {
    grid-template-columns: repeat(4, 220px);
    gap: 0;
  }
  .video-card,
  .award-card {
    border-radius: 0;
    height: 300px !important;
    border-width: 3px;
  }

  .video-card video,
  .award-card video {
    width: 100% !important;
    height: 100% !important;
    transform: scale(1.3);
  }
}

@media (max-width: 768px) {
  .videos-container,
  .awards-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .video-card,
  .award-card {
    border-radius: 0;
    height: 300px !important;
    border-width: 3px;
  }

  .video-card video,
  .award-card video {
    width: 100% !important;
    height: 100% !important;
    transform: scale(1.5);
  }
}

.awards-container {
  width: 100%;
}

.load-more-btn {
  background: var(--button-back);
  color: var(--button-text-color);
  border: none;
  padding: 12px 30px;
  border-radius: 9999px;
  font-size: 1rem;
  cursor: pointer;
  margin: 20px 0;
  font-family: "ArialNova";
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: #c9c9c9;
}

.load-more-btn:disabled {
  background: #f0f0f0;
  color: #999;
  cursor: not-allowed;
}
/* ----------------------------------------------------------------
---------------------------------------------------------------- */
.sponsors-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
}

/* ----------------- heading container --------------- */
.heading-container {
  margin-top: 1rem;
  width: 100%;
}
.heading-container h2 {
  font-family: "UbuntuSansThin";
  color: var(--heading-color);
  font-size: var(--heading-font-size);
  font-weight: var(--heading-font-weight);
  letter-spacing: var(--heading-letter-spacing);
  line-height: var(--heading-line-height);
}

/* ------------ for the social button ---------------- */
.social-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: none;
}
.main_back {
  position: absolute;
  border-radius: 10px;
  transform: rotate(90deg);
  width: 11em;
  height: 11em;
  background: linear-gradient(270deg, #03a9f4, #cc39a4, #ffb5d2);
  z-index: -2;
  box-shadow: inset 0px 0px 180px 5px #ffffff;
}

.main-social-btn {
  display: flex;
  flex-wrap: wrap;
  width: 14em;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.social-btn-card {
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-top-left-radius: 10px;
  background: lightgrey;
  transition: 0.4s ease-in-out, 0.2s background-color ease-in-out,
    0.2s background-image ease-in-out;
  background: rgba(255, 255, 255, 0.596);
  backdrop-filter: blur(5px);
  border: 1px solid transparent;
  -webkit-backdrop-filter: blur(5px);
}

.social-btn-card .instagram {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #cc39a4;
}

.social-btn-card:nth-child(2) {
  border-radius: 0px;
}

.social-btn-card:nth-child(2) .x {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #000000;
}

.social-btn-card:nth-child(3) {
  border-top-right-radius: 10px;
  border-top-left-radius: 0px;
}
a {
  text-decoration: none;
}
.social-btn-card:nth-child(3) .dribble {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #ffb5d2;
}

.social-btn-card:nth-child(4) {
  border-radius: 0px;
}

.social-btn-card:nth-child(4) .codepen {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: black !important;
}

.social-btn-card:nth-child(5) {
  border-radius: 0px;
}

.social-btn-card:nth-child(5) .float-btn-icon {
  position: absolute;
  opacity: 0;
  max-width: 40px;
  transition: 0.2s ease-in-out;
}

.social-btn-card:nth-child(6) {
  border-radius: 0px;
}

.social-btn-card:nth-child(6) .discord {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #8c9eff;
}

.social-btn-card:nth-child(7) {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 0px;
}

.social-btn-card:nth-child(7) .facebook {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: black;
}

.social-btn-card:nth-child(8) {
  border-radius: 0px;
}

.social-btn-card:nth-child(8) .telegram {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #29b6f6;
}

.social-btn-card:nth-child(9) {
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0px;
}

.social-btn-card:nth-child(9) .reddit {
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.main:hover {
  width: 14em;
  cursor: pointer;
}

.main:hover .main_back {
  opacity: 0;
}

.main:hover .social-btn-card {
  margin: 0.2em;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

.main:hover .social-btn-card:nth-child(5) {
  border: transparent;
}

.main:hover .text {
  opacity: 0;
  z-index: -3;
}

.main:hover .instagram {
  opacity: 1;
}

.main:hover .x {
  opacity: 1;
}

.main:hover .dribble {
  opacity: 1;
}

.main:hover .codepen {
  opacity: 1;
}

.main:hover .float-btn-icon {
  opacity: 1;
}

.bigboys-site {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main:hover .discord {
  opacity: 1;
}

.main:hover .facebook {
  opacity: 1;
}

.main:hover .telegram {
  opacity: 1;
}

.main:hover .reddit {
  opacity: 1;
}

.social-btn-card:nth-child(1):hover {
  background-color: #cc39a4;
}

.social-btn-card:nth-child(1):hover .instagram {
  fill: white;
}

.social-btn-card:nth-child(2):hover {
  background-color: #3f3f3f;
}

.social-btn-card:nth-child(2):hover .twitter {
  fill: white;
}

.social-btn-card:nth-child(3):hover {
  background-color: #ffb5d2;
}

.social-btn-card:nth-child(3):hover .dribble {
  fill: white;
}

.social-btn-card:nth-child(4):hover {
  background-color: #1e1f26;
}

.social-btn-card:nth-child(4):hover .codepen {
  fill: white;
}

.social-btn-card:nth-child(5):hover {
  animation: backgroundIMG 0.1s;
  animation-fill-mode: forwards;
}

.social-btn-card:nth-child(5):hover .uiverse #paint0_linear_501_142 stop {
  stop-color: white;
}

.social-btn-card:nth-child(5):hover .uiverse #paint1_linear_501_142 stop {
  stop-color: white;
}

.social-btn-card:nth-child(5):hover .uiverse #paint2_linear_501_142 stop {
  stop-color: white;
}

@keyframes backgroundIMG {
  100% {
    background-image: linear-gradient(#bf66ff, #6248ff, #00ddeb);
  }
}

.social-btn-card:nth-child(6):hover {
  background-color: #8c9eff;
}

.social-btn-card:nth-child(6):hover .discord {
  fill: white;
}

.social-btn-card:nth-child(7):hover {
  background-color: #0062e2;
}
.social-btn-card:nth-child(8):hover {
  background-color: #29b6f6;
}

.social-btn-card:nth-child(8):hover .telegram > path:nth-of-type(1) {
  fill: white;
}

.social-btn-card:nth-child(8):hover .telegram > path:nth-of-type(2) {
  fill: #29b6f6;
}

.social-btn-card:nth-child(8):hover .telegram > path:nth-of-type(3) {
  fill: #29b6f6;
}

.social-btn-card:nth-child(9):hover {
  background-color: rgb(255, 69, 0);
}

.social-btn-card:nth-child(9) .reddit > g circle {
  fill: rgb(255, 69, 0);
}

.social-btn-card:nth-child(9) .reddit > g path {
  fill: white;
}

.text {
  font-family: "UbuntuSansThin";
  position: absolute;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.4s ease-in-out;
  text-align: center;
  line-height: 1;
  z-index: 3;
}

/* -------------------------- package cards container ------------------- */
.package-cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 1rem;
  position: relative;
}

.package-card {
  font-family: "UbuntuSansThin";
  width: 20vw !important;
  min-height: 60vh;
  padding: 0 10px;
  border-radius: 24px;
  position: relative;
  border: 1px solid rgba(184, 184, 184, 0.596);
  overflow: visible;
}

.bullet-points {
  height: 35vh;
  margin-top: 2rem;
  position: relative;
  z-index: 9 !important;
  overflow: visible;
}

.bullet-points::before {
  content: " ";
  position: absolute;
  top: -10%;
  left: 50px;
  width: 65%;
  height: 120%;
  text-decoration: none;
  background: #fff;
  border-radius: 1rem;
  transform: skewX(15deg);
  transition: 0.5s;
  z-index: -1;
}

.bullet-points::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 50px;
  width: 65%;
  height: 120%;
  background: #fff;
  border-radius: 1rem;
  transform: skewX(15deg);
  transition: 0.5s;
  filter: blur(30px);
  z-index: -1;
}

.bullet-points:before,
.bullet-points:after {
  background: linear-gradient(315deg, #e2e2e2, #f1f1f1);
}

.bullet-points:hover::before {
  transform: skewX(0deg); /* Add hover effect */
}

.bullet-points span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
}

.bullet-points span::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  opacity: 1;
}

.bullet-points span::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  opacity: 1;
}

.package-card:hover:before {
  transform: skewX(0deg) scaleX(1);
}

.card-title {
  margin-top: 2rem;
  position: relative;
  z-index: 100 !important;
}
.project-button {
  position: absolute;
  bottom: 3rem;
}

.first .bullet-points,
.second .bullet-points {
  margin-top: 2rem;
}
.card-title h3 {
  position: relative;
  font-family: "UbuntuSansBold";
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: -1px;
  font-weight: 1000;
  z-index: 5;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.strong-words {
  font-family: "UbuntuSansBold";
}
.card-title p {
  position: relative;
  margin-top: 10px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2;
  z-index: 5;
}

.bullet-points ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  position: relative;
  list-style-type: none;
  z-index: inherit;
  height: 100%;
  border-radius: 1rem;
  padding-left: 1rem;
  background: rgba(255, 255, 255, 0.219);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bullet-points ul li {
  font-size: 1rem;
  font-weight: bold;
}

/* ------------ cards button --------------- */
.animated-button {
  font-family: var(--font-family-3);
  z-index: 100;
}

.button-el {
  --duration: 0.4s; /* smoother timing */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 16rem;
  height: 3.5rem;
  background: #333333;
  border: 1px solid transparent;
  border-radius: 3rem;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: background-color var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
    color var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
    border-color var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
  color: #dadada;
  font-size: 1.2rem;
  font-weight: bold;
}

.button-el:hover {
  background-color: rgb(44, 44, 44);
  color: #e7e7e7;
}

/* Move inner content */
.button-el > * {
  transition: transform var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
}

.button-el:hover > * {
  transform: translateX(-1rem);
}

/* ----- Text flip effect ----- */
.button-label-wrap {
  position: relative;
  display: inline-block;
  perspective: 800px;
  overflow: hidden;
  transform: translateX(10px);
  height: 1.3em; /* matches text size */
  line-height: 1.3em;
}

.inside-label {
  display: block;
  transform-origin: 50% 100%;
  transition: transform var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.inside-label:nth-child(1) {
  transform: translateY(0) rotateX(0deg);
}

.inside-label:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%) rotateX(-90deg);
}

.button-el:hover .inside-label:nth-child(1) {
  transform: translateY(-100%) rotateX(90deg);
}

.button-el:hover .inside-label:nth-child(2) {
  transform: translateY(0) rotateX(0deg);
}

/* ----- Arrow movement with circle background ----- */
.button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  z-index: 100 !important;
  transform: translateX(1.5rem);
  opacity: 0;
  transition: transform var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
    opacity var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
    background-color var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
    color var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
}

.button-arrow::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  height: 100%;
  background-color: white;
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  transition: left var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
    opacity var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
    width var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
}

.button-el:hover .button-arrow {
  transform: translateX(0);
  opacity: 1;
  color: #000000;
}

.button-el:hover .button-arrow::before {
  left: 0;
  opacity: 1;
  width: 100%;
}

/* Icon */
.icon {
  display: inline-flex;
  transition: transform var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
    opacity var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
}

.button-el:hover .icon {
  transform: translateX(-2.5rem);
  opacity: 0;
}

/* Reset */
.--pos-l svg,
.--pos-r svg {
  width: 1.2em;
  height: 1.2em;
  stroke: currentColor;
}

.indus-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

.indus-card-btn {
  font-size: 1rem;
  letter-spacing: -1px;
  width: 13rem !important;
  height: 3rem !important;
}

.different {
  background-color: #fff;
}

/* ------------------ Sonsors content ------------- */
.sponsors-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sponsor-heading {
  width: 100%;
  text-align: center;
  margin-top: 5rem;
}

.sponsor-heading h2 {
  font-family: "UbuntuSansThin";
  font-size: var(--heading-font-size);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  letter-spacing: var(--heading-letter-spacing);
  line-height: var(--heading-line-height);
  /* text-align: center; */
  padding: 0 12rem;
}

.sponsor-heading p {
  text-align: left;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -1px;
  padding: 0 12rem;
  margin-top: 2rem;
  color: var(--button-text-color);
}

/* ------------------ sponsor gird --------------- */
.sponsors-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  transition: all 0.3s ease;
  position: relative;
}

/* Partial right border */
.sponsor-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: #ff00bf44;
}

.sponsor-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 60%;
  background-color: #ff00bf44;
}

.sponsor-item:hover img {
  opacity: 0.8;
  /* filter: sepia(1) hue-rotate(320deg) saturate(2) brightness(1.2); */
}

/* Remove right border for last item in each row */
.sponsor-item:nth-child(5n)::after {
  display: none;
}

/* Remove bottom border for last row */
.sponsor-item:nth-last-child(-n + 5)::before {
  display: none;
}

.sponsor-item img {
  max-width: 140px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .sponsors-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .sponsor-item:nth-child(5n)::after {
    display: block;
  }

  .sponsor-item:nth-child(4n)::after {
    display: none;
  }

  .sponsor-item:nth-last-child(-n + 5)::before {
    display: block;
  }

  .sponsor-item:nth-last-child(-n + 4)::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sponsor-item:nth-child(4n)::after {
    display: block;
  }

  .sponsor-item:nth-child(3n)::after {
    display: none;
  }

  .sponsor-item:nth-last-child(-n + 4)::before {
    display: block;
  }

  .sponsor-item:nth-last-child(-n + 3)::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsor-item {
    padding: 30px 15px;
    min-height: 120px;
  }

  .sponsor-item:nth-child(3n)::after {
    display: block;
  }

  .sponsor-item:nth-child(2n)::after {
    display: none;
  }

  .sponsor-item:nth-last-child(-n + 3)::before {
    display: block;
  }

  .sponsor-item:nth-last-child(-n + 2)::before {
    display: none;
  }

  .sponsor-item img {
    max-width: 100px;
    max-height: 60px;
  }
}

/* ---------------- FAQs container ------------ */
.faq-container {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  overflow: hidden;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faq-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 79px,
    rgba(255, 255, 255, 0.08) 79px,
    rgba(255, 255, 255, 0.08) 80px
  ); */
  pointer-events: none;
  z-index: 1;
}

.faq-heading {
  width: 100%;
}

.faq-heading h2 {
  font-family: "UbuntuSansThin";
  font-size: var(--heading-font-size);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  letter-spacing: var(--heading-letter-spacing);
  line-height: var(--heading-line-height);
  text-align: center;
}

.faq-content {
  width: 100%;
  max-width: 1000px;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.faq-item {
  border: 1px solid rgba(109, 109, 109, 0.808);
  border-radius: 50px;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  /* background: rgba(214, 214, 214, 0.9); */
  background: #d8267e;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.faq-item.active {
  background: #fff0f7ef;
  /* background: rgba(214, 214, 214, 0.9); */
  border-color: rgba(255, 255, 255, 0.25);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question {
  color: #2e2e2e;
  font-size: 18px;
  font-weight: 500;
  flex: 1;
}

.faq-arrow {
  width: 10px;
  height: 10px;
  border-left: 2px solid rgba(39, 39, 39, 0.6);
  border-bottom: 2px solid rgba(41, 41, 41, 0.6);
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item:hover .faq-arrow {
  border-color: rgb(63, 63, 63);
}

.faq-item.active .faq-arrow {
  transform: rotate(135deg);
  border-color: rgb(56, 56, 56);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 24px 24px;
  color: rgba(44, 44, 44, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------------------------- */
.grecaptcha-badge {
  display: none;
}
/* ---------------------------- */

/* -------------------------------- code for the full page menu -------------------------- */
.small-menu-close {
  right: 40px !important;
}

@media (max-width: 1440px) {
  .social-media-container {
    max-width: 1200px;
  }
  .sponsors-container {
    width: 90%;
  }

  .video-card,
  .award-card {
    height: 400px;
  }

  .package-cards {
    gap: 0.3;
    justify-content: space-between;
  }
  .package-card {
    width: 25vw !important;
    min-height: 65vh !important;
    /* border: 1px solid red; */
  }

  .bullet-points {
    margin-top: 1rem;
  }

  .project-button {
    position: relative;
    bottom: 3rem;
  }

  .first .bullet-points,
  .second .bullet-points {
    margin-top: 3rem;
  }

  .card-title h3 {
    font-size: 1.5rem;
    line-height: 0.9;
    letter-spacing: -1px;
    font-weight: 800;
  }
  .card-title p {
    font-size: 0.9rem;
    line-height: 1;
  }

  .bullet-points ul li {
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.3;
  }
  /* ======================  */
  .sponsor-heading h2 {
    padding: 6rem;
  }
}

@media (max-width: 1366px) {
  .package-card {
    height: 90vh !important;
    /* border: 1px solid red; */
  }
  .bullet-points {
    height: 50vh !important;
    padding: 1rem 0.2rem;
  }
  .bullet-points ul {
    padding: 1rem 0.5rem;
  }

  .sponsor-heading h2 {
    padding: 3rem 4rem;
  }

  .heading-container h2 {
    letter-spacing: -5px;
  }
}

@media (max-width: 1024px) {
  .download-profile {
    margin-left: 2%;
  }

  .media-company-logo {
    margin-left: 3%;
    max-width: 200px;
  }

  .social-media-container {
    max-width: 900px;
  }
  .select-items-media.show {
    width: 110%;
    left: -5%;
  }
  .company-name {
    font-size: 2rem;
  }
  .verified-badge svg {
    width: 30px;
    height: 30px;
    margin-top: 0 !important;
  }
  .verified-text {
    top: -3px;
  }
  .bio-para {
    width: 80%;
  }
  .client {
    min-width: 110px;
    height: 110px;
    border-width: 3px;
  }

  .heading-container h2 {
    font-size: 3rem;
    letter-spacing: -1px;
    line-height: 0.9;
    text-align: justify;
  }

  .package-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    padding: 1rem;
  }
  .package-card {
    height: 40vh !important;
    width: 40vw !important;
  }

  .bullet-points ul {
    height: 80%;
  }
  .bullet-points ul li {
    font-size: 0.9rem;
  }
  .bullet-points::before,
  .bullet-points::after {
    height: 90%;
    top: -4%;
  }
  .bullet-points span::after {
    bottom: 36px;
  }
  .sponsor-heading h2 {
    padding: 1rem 0;
    font-size: 3rem;
    letter-spacing: -1px;
    line-height: 0.9;
    text-align: left;
  }
  .sponsor-heading p {
    padding: 0;
  }

  .faq-heading h2 {
    padding: 1rem 0;
    font-size: 3rem;
    letter-spacing: -1px;
    line-height: 0.9;
  }
}

@media (max-width: 768px) {
  .links-group {
    gap: 2rem;
  }
  .icons-group {
    gap: 1.3rem;
  }

  .download-profile {
    margin-left: 2%;
  }
  .media-company-logo {
    width: 50%;
    margin-left: 0;
    max-width: 150px;
  }
  .media-company-logo img {
    margin-left: 3%;
    width: 100%;
  }
  .bio-content {
    margin-top: 0.8rem;
  }
  .profile-biography {
    gap: 3rem;
  }
  .hash-and-link {
    font-size: 0.9rem;
  }
  .badges {
    font-size: 0.9rem;
  }
  .social-media-container {
    max-width: 700px;
  }
  .select-items-media.show {
    width: 110%;
    left: -5%;
  }
  .company-info {
    width: 50%;
  }
  .company-name {
    font-size: 1.6rem;
    letter-spacing: normal;
  }
  .statistics span {
    font-size: 0.9rem;
  }
  .bio-para {
    width: 90%;
    text-align: left;
    font-size: 0.9rem;
  }

  .verified-badge svg {
    width: 30px;
    height: 30px;
    margin-top: 0 !important;
  }
  .inputs-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .input-field {
    width: 50%;
    padding-left: 1.5rem;
  }

  .input-field .icon {
    left: 5px;
  }

  .custom-select-media {
    width: 40%;
  }

  .clear-btn {
    margin-right: 0;
    align-self: center;
    margin-left: 1rem;
  }

  .heading-container h2,
  .sponsor-heading h2,
  .faq-container h2 {
    font-size: 2.5rem;
  }

  .sponsor-heading p {
    font-size: 1.2rem;
  }

  .like-slider-container {
    right: -7rem;
  }
}
/* -------------- for download icon on smaller screens ----------------- */

.download-for-mobiles {
  display: none;
  background: transparent;
  width: 35px;
  height: 35px;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.download-for-mobiles:hover {
  animation: arrow-wiggle 0.5s ease-in-out infinite;
}

@keyframes arrow-wiggle {
  0%,
  100% {
    transform: scale(1.1) rotate(0deg);
  }
  25% {
    transform: scale(1.15) rotate(-5deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  75% {
    transform: scale(1.15) rotate(-3deg);
  }
}
.download-for-mobiles svg {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.download-for-mobiles svg:hover {
  transform: scale(1.1);
}



@media (max-width: 480px) {
  .profile-biography {
    margin-top: 5.5rem;
  }
  .links-group {
    gap: 1rem;
  }
  .icons-group {
    justify-content: center;
    gap: 1.5rem;
  }
  .download-profile {
    display: none !important;
  }
  .download-for-mobiles {
    margin-top: -5px;
    display: block;
  }
  .social-media-container {
    max-width: 450px;
  }

  .media-company-logo {
    max-width: 100px;
  }
  .profile-biography {
    gap: 1rem;
  }
  .company-name {
    font-size: 1.5rem;
  }
  .page-name .verified-badge {
    margin-left: 0.1rem !important;
  }
  .statistics {
    gap: 1rem;
  }
  .statistics span {
    font-size: 0.7rem;
  }
  .verified-text {
    top: -2.6rem !important;
    left: -100px !important;
  }

  .bio-para {
    width: 98%;
    font-size: 0.9rem;
  }

  .input-field {
    width: 100% !important;
    padding-left: 2rem;
  }
  .custom-select-media {
    width: 100% !important;
    margin-right: 0;
  }

  .select-items-media.show {
    width: 100% !important;
    left: 0;
  }

  .heading-container h2,
  .sponsor-heading h2,
  .faq-container h2 {
    font-size: 2rem;
    text-align: left;
  }

  .videos-container,
  .awards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-links-to-pages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 60%;
  }
  .social-links-to-pages a {
    font-size: 0.7rem;
    text-align: center;
  }

  .badges p,
  .badges p .strong {
    font-size: 0.8rem;
  }
  .company-info {
    position: relative;
    margin-bottom: 5.5rem;
  }

  .buttons-and-badges {
    position: absolute;
    width: 149%;
    bottom: -5.5rem;
    left: -7rem;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .social-links-to-pages {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .social-links-to-pages a {
    width: 40%;
  }

  .package-cards {
    grid-template-columns: 1fr;
  }
  .package-card {
    width: 100% !important;
  }

  .faq-question {
    font-size: 1rem;
  }
  .faq-header {
    padding: 20px 24px;
  }

  .client {
    min-width: 70px;
    height: 70px;
  }

  .bio-para,
  .hash-and-link {
    font-size: 0.75rem;
  }

  .dm-icon{
    padding-top: 0.19rem;
  }
  .comment-slider-container {
    width: 360px;
    left: -23% !important;
  }
  .like-slider-container {
    width: 360px;
    right: -5.8rem;
  }
  .dm-slider-container {
    width: 370px;
    left: 145%;
  }
  .statistics {
    margin-top: 0;
  }

  .coffee-icon {
    display: none;
  }

  .third,
  .fourth {
    height: 78vh !important;
  }
  .third .bullet-points,
  .fourth .bullet-points {
    height: 75% !important;
  }
}

@media (max-width: 400px) {
  .verified-text {
    left: -10rem !important;
  }
}

/* ======================== weather container =========================== */
/* ======================== Weather Container & Button =========================== */
.weather-wrapper {
  position: relative; /* establishes positioning context */
  display: inline-block; /* dropdown will stay attached below */
}

.weather-container {
  /* padding-top: 5px; */
  position: relative; /* establishes positioning context for dropdown */
  display: inline-block; /* keeps container inline with icon */
}

.weather-icon-button {
  cursor: pointer;
  transition: transform 0.25s ease;
  display: block; /* ensures icon is block-level */
}

.weather-icon-button:hover {
  transform: scale(1.1);
  animation: cloud-wiggle 0.5s ease-in-out infinite;
}

@keyframes cloud-wiggle {
  0%,
  100% {
    transform: scale(1.1) rotate(0deg);
  }
  25% {
    transform: scale(1.15) rotate(-5deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  75% {
    transform: scale(1.15) rotate(-3deg);
  }
}

/* ======================== Weather Dropdown Panel =========================== */
.weather-dropdown {
  position: absolute;
  top: 55px; /* ensures dropdown opens downward */
  left: 50%; /* position from center of icon */
  transform: translateX(-50%); /* center the dropdown under the icon */

  width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  overflow: hidden;

  /* Closed state */
  max-height: 0;
  opacity: 0;
  pointer-events: none;

  transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* Open state */
.weather-dropdown.open {
  max-height: 380px; /* enough for full content */
  opacity: 1;
  pointer-events: auto;
}

/* ======================== Weather Content =========================== */
.weather-content {
  padding: 16px;
  font-family: sans-serif;
}

.weather-location {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.weather-main {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.weather-temp {
  font-size: 32px;
  font-weight: 700;
}

.weather-icon {
  height: 46px;
  width: 46px;
}

.weather-description {
  font-size: 14px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.weather-details {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.weather-detail-label {
  color: #666;
  font-size: 12px;
}

/* Error message */
.error-message {
  text-align: center;
  padding: 20px;
  color: #c00;
  font-weight: 600;
  font-size: 14px;
}


@media (max-width: 400px) {
  .weather-dropdown {
    left: 100% !important;
  }
}