@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
}
:root {
  --text-color: #f5f5f5;
  --hover-color: #f7e928;
  --main-bg-color: #250021;
  --bg-color: #000; /* #5b1971;   */ /*#09003bf5,#09003bf5 */
  --bg-white: #fff;
  --secon-bg-color: #292e33;
  --big-font: 2.5rem;
  --norma-font: 2rem;
  --neon-box-shadow: 0 0 0.5rem #f7e928;
  --h2-font: 3rem;
  --font-neon-text-shadow: 0 0 10px rgba(192, 235, 39, 0.3),
    0 0 20px rgba(192, 235, 39, 0.3), 0 0 30px rgba(192, 235, 39, 0.3),
    0 0 40px rgba(192, 235, 39, 0.3), 0 0 70px rgba(192, 235, 39, 0.3),
    0 0 80px rgba(192, 235, 39, 0.3), 0 0 100px rgba(192, 235, 39, 0.3),
    0 0 150px rgba(192, 235, 39, 0.3);
  --navlist-hover-shadow: 0 0 10px 0 0 10px rgba(235, 231, 26, 0.897),
    0 0 20px rgba(235, 231, 26, 0.897), 0 0 30px rgba(235, 231, 26, 0.897),
    0 0 40px rgba(235, 231, 26, 0.897), 0 0 70px rgba(235, 231, 26, 0.897),
    0 0 80px rgba(235, 231, 26, 0.897), 0 0 100px rgba(235, 231, 26, 0.897),
    0 0 150px rgba(235, 231, 26, 0.897);
  --circle-size: 340px;
  --circle-border-width: 6px;
  --circle-border-color: rgba(192, 235, 39, 0.3);
  --circle-bg: transparent;
  --circle-border-radius: 50%; /* change to 5px for a rounded rectangle */
  --blink-duration: 1s;
}

::-webkit-scrollbar {
  height: 0;
  width: 0.5rem;
}

::-webkit-scrollbar-track {
  background: var(--secon-bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--hover-color);
  border-radius: 5rem;
}

.wrap {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  background: transparent;
  padding: 50px;
  box-sizing: border-box;
  flex-direction: column;
}

/* The badge (circle) */
.badge {
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: var(--circle-border-radius);
  background: var(--circle-bg);
  border: var(--circle-border-width) solid var(--circle-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(31, 122, 140, 0.12);
  /* blinking animation */
  animation: blink var(--blink-duration) infinite ease-in-out;
  transition: transform 0.15s ease;
}

.badge:active {
  transform: scale(0.98);
}

@keyframes blink {
  0% {
    box-shadow: 0 0 0 rgba(31, 122, 140, 0);
    opacity: 1;
  }
  35% {
    box-shadow: 0 0 20px rgba(31, 122, 140, 0.45);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 rgba(31, 122, 140, 0);
    opacity: 0.5;
  }
  100% {
    box-shadow: 0 0 0 rgba(31, 122, 140, 0);
    opacity: 1;
  }
}

/* Inner logo styles */
.logo-circle img {
  margin: 25%;
  width: 50%;
  height: 50%;
  object-fit: cover;
  display: block;
  border-radius: 50%; /* keeps the logo clipped slightly if you use small border-radius */
}

/* Controls for demo / replacement of logo */

.muted {
  opacity: 0.75;
  font-size: 13px;
  color: #333;
}

/* small responsive tweak */
@media (max-width: 420px) {
  :root {
    --circle-size: 110px;
  }
}
.sponsors {
  display: block;
}
.sponsors .sponsors-image {
  display: flex;
  align-items: left;
  justify-content: space-around;
}
.sponsors .img-slider {
  animation: slider 20s linear infinite;
}
.sponsors .img-slider img {
  margin: 10px;
}
@keyframes slider {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header.sticky {
  background: var(--bg-color);
  border-bottom: 1px solid var(--secon-bg-color);
  padding: 12px 10%;
}

.logo {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}
span {
  color: var(--hover-color);
}
.logo .point {
  font-size: 10px;
  letter-spacing: -1px;
}
.navlist a.active {
  color: var(--hover-color);
}
.navlist {
  display: flex;
}
.navlist a {
  display: inline-block;
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 20px;
  animation: slideAnimation 1s ease forwards;
  animation-delay: calc(0.3s * var(--i));
  opacity: 0;
}
.navlist a:hover {
  color: var(--hover-color);
  text-shadow: var(--navlist-hover-shadow);
}
#menu-icon {
  font-size: 1.8rem;
  z-index: 100001;
  cursor: pointer;
  margin-left: 25px;
  background: var(--hover-color);
  box-shadow: 0 0 0.3rem #f7e928;
  border-radius: 3px;
  color: var(--secon-bg-color);
  display: none;
}

section {
  padding: 100px 10%;
}

.home {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 4em;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.home-content {
  max-width: 600px;
}
.home-content h1 {
  font-size: var(--big-font);
  font-weight: 700;
}
.change-text {
  font-size: 1.5rem;
  font-weight: 600;
}
.change-text h3 {
  display: inline-flex;
  margin: 0;
  vertical-align: top;
}
.change-text h3 .word {
  position: absolute;
  display: flex;
  opacity: 0;
}
.change-text h3 .word .letter {
  transform-origin: center center 25px;
}

.change-text h3 .word .letter.out {
  transform: rotateX(90deg);
  transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
}
.change-text h3 .word .letter.in {
  transition: 0.38s ease;
}

.change-text h3 .word .letter.behind {
  transform: rotateX(-90deg);
}
.home-content p {
  color: #bdbdbd;
  line-height: 1.6;
}
.info-box {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  margin: 1rem 0 2rem;
}
.info-box h5 {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1rem;
}
.info-box span {
  font-size: 0.5rem;
  color: var(--hover-color);
}
.btn-box {
  display: flex;
  justify-content: space-between;
  width: 320px;
  height: 45px;
}
.btn-box .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 150px;
  height: 100%;
  background: var(--hover-color);
  color: var(--bg-color);
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.6s;
  box-shadow: var(--neon-box-shadow);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--hover-color);
}
.btn:hover {
  color: var(--hover-color);
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bg-color);
  width: 0;
  height: 100%;
  z-index: -1;
  transition: 0.4s;
}
.btn:hover::before {
  width: 100%;
}
.btn:nth-child(2) {
  background: var(--bg-color);
  color: var(--hover-color);
}
.btn:nth-child(2):hover {
  color: var(--bg-color);
}
.btn:nth-child(2)::before {
  background: var(--hover-color);
}

.social-icons {
  margin-top: 0.4rem;
  display: flex;
  justify-content: space-between;
  width: 220px;
  height: 40px;
}
.social-icons a {
  display: inline-flex;
  width: 50px;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
  color: var(--hover-color);
  border: 2px solid var(--hover-color);
  transition: 0.6s;
  box-shadow: 0 0 0.3rem #f7e928;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.social-icons a i {
  font-size: 1.5rem;
}
.social-icons a:hover {
  color: var(--bg-color);
}
.social-icons a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--hover-color);
  transition: 0.6s;
  z-index: -1;
}
.social-icons a:hover::before {
  width: 100%;
}
.home-image {
  position: relative;
}
.img-box {
  text-align: center;
}
.img-box img {
  /* border: 3px solid; */
  width: 100%;
  max-width: 450px;
  height: auto;
}
.liquid-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 10%;
}
.liquid-shape:nth-child(2) {
  filter: blur(50px);
}
/* About Section*/
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 2em;
  background: var(--secon-bg-color);
}
.about .img-about {
  text-align: center;
  position: relative;
}
.about .img-about img {
  max-width: 400px;
  height: auto;
}
.about-content span {
  color: #fdfdfd;
  font-size: 0.8rem;
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-content h2 {
  color: var(--hover-color);
  font-weight: 700;
  font-size: var(--norma-font);
}
.about-content h3 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
.about-content p {
  color: #fdfdfd;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.info-about1,
.info-about2,
.info-about3 {
  background: transparent;
  font-size: 0.5rem;
  position: absolute;
  padding: 10px;
  width: 90px;
  height: 90px;
  border-radius: 69% 31% 66% 34% / 21% 30% 70% 79%;
  display: block;
  /* box-shadow: var(--neon-box-shadow);
  border: 1px solid var(--hover-color);
  outline: 2px solid var(--bg-color); */
  z-index: 100;
  animation: morph 6s linear infinite;
}
.info-about1 {
  left: 10%;
  top: 34%;
}
.info-about2 {
  left: 66%;
  top: 15%;
}
.info-about3 {
  left: 61%;
  top: 70%;
}
.img-about span {
  color: var(--hover-color);
  font-size: 1rem;
  font-weight: 600;
}
/* Service Section */

.main-text {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--hover-color);
}
.main-text h2 {
  font-weight: 700;
  font-size: var(--norma-font);
}
.main-text span {
  color: #fdfdfd;
  font-size: 0.8rem;
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* Services */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: transparent;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--neon-box-shadow);
  width: 300px;
}
.card h3 {
  color: var(--hover-color);
  margin-bottom: 10px;
}
.card p {
  color: #fdfdfd;
  font-weight: 300;
  line-height: 1.6;
}
.section-services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 2rem;
}
.section-services .service-box {
  flex: 1 1 18rem;
  padding: 2rem;
  text-align: center;
  background: var(--secon-bg-color);
  transition: transform 0.4s;
  border-radius: 10px;
}
.service-btn {
  width: auto;
  justify-content: center;
}
.service-box:hover {
  transform: translateY(-0.7rem);
}
.service-icon {
  border: 2px solid var(--hover-color);
  padding: 2rem;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  font-size: 3rem;
  border-radius: 50%;
  position: relative;
  color: var(--hover-color);
  box-shadow: var(--neon-box-shadow);
  outline: 3px solid var(--bg-color);
}
.service-box h3 {
  margin: 10px;
  font-size: 1.5rem;
}
.service-box p {
  margin: 5rem 0 1.5rem 0;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fdfdfd;
  line-height: 1.6;
}
/*---Artist Section*/
.section-artist {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 2rem;
}
.artist-box {
  flex: 1 1 18rem;
  padding: 2rem;
  text-align: center;
  background: var(--secon-bg-color);
  transition: transform 0.4s;
  border-radius: 10px;
}
.artist-box:hover {
  transform: translateY(-0.7rem);
}
.artist-box h3 {
  color: var(--hover-color);
  margin: 10px;
  font-size: 1.5rem;
  border: none;
  box-shadow: var(--neon-box-shadow);
}
.artist-box p {
  margin: 3rem 0 1.5rem 0;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fdfdfd;
  line-height: 1.6;
}
.art-img {
  text-align: center;
}
.art-img img {
  width: 100%;
  max-width: 150px;
  height: 150px;
  border: 2px solid var(--hover-color);
  border-radius: 50%;
  background: var(--bg-color);
  position: relative;
  color: var(--hover-color);
  box-shadow: var(--neon-box-shadow);
  outline: 2px solid var(--bg-color);
}

/* Portfolio */
.filter-button {
  margin: 2rem;
  text-align: center;
}
.filter-button .button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-left: 1.3rem;
  color: var(--text-color);
}
.filter-button .button:hover {
  color: var(--hover-color);
}
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.port-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #292e33;
  display: flex;
  grid-template-rows: 1fr auto;
  align-items: center;
  border: 2px solid var(--hover-color);
  box-shadow: var(--neon-box-shadow);
}
.port-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.students {
  border-top: 5px solid #fff !important;
  border-left: 5px solid #fff !important;
  padding: 10px;
}
.port-box2 {
  display: flex;
  margin: 2px;
  padding: 2px;
}
.port-content2 {
  margin: 0 0 5px 30px;
  text-align: cnter;
}

.port-image2 img {
  /*max-width: 250px;*/
  width: 100%;
  opacity: 0.5s;
  height: 100%;
  transition: 0.5s;
  border: 2px solid var(--hover-color);
  box-shadow: var(--neon-box-shadow);
}
.port-image2:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.drama {
  width: 400px !important;
  height: 250px !important;
}
.prev img {
  width: 100% !important;
  height: 100px !important;
}
.port-image img {
  /*max-width: 250px;*/
  width: 100%;
  opacity: 0.5s;
  height: 100%;
  transition: 0.5s;
}
.port-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2), #12f7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: 0.5s;
  padding: 0 0;
}
.port-box:hover .port-content {
  opacity: 1;
}
.port-box:hover .port-image img {
  transform: scale(1.1);
}
.port-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.port-content p {
  font-size: 0.8rem;
  margin: 5px 0 15px 0;
}

.port-content a {
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--hover-color);
  outline: 2px solid #fff;
}
.port-content a i {
  font-size: 1.3rem;
  color: var(--secon-bg-color);
}

/*Contact Section */
.contact {
  background: var(--secon-bg-color);
  width: 100%;
}
.contact form {
  text-align: center;
  max-width: 50rem;
  margin: 1rem auto;
  margin-bottom: 3rem;
}
.contact form input,
.contact form textarea {
  width: 100%;
  color: var(--text-color);
  background: var(--bg-color);
  margin-bottom: 0.8rem;
  border: none;
  border-radius: 5px;
  padding: 0.7rem;
}
.contact form textarea {
  resize: none;
}
.btn-box {
  display: flex;
  justify-content: center;
  width: 100%;
}
.formBtn .btn {
  cursor: pointer;
  font-size: 1rem;
}
/* footer */
footer {
  padding: 1.5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer p {
  color: #bdbdbd;
}
footer a {
  display: inline-flex;
  justify-content: center;
  color: var(--text-color);
  background: var(--hover-color);
  padding: 0.6rem;
  border-radius: 5px;
}
footer a i {
  font-size: 1rem;
  color: var(--secon-bg-color);
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 2s;
}

.scroll-bottom {
  opacity: 0;
  transform: translateY(300px);
  transition: 3s;
}

.scroll-top {
  opacity: 0;
  transform: translateY(-300px);
  transition: 3s;
}

.show-items {
  opacity: 1;
  transform: translateX(0);
}

/*animatoon*/
@keyframes morph {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
  }
  30% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  }
  60% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 68%;
  }
  80% {
    border-radius: 69% 31% 66% 34% / 21% 30% 70% 79%;
  }
}

@keyframes glow {
  0% {
    background: var(--bg-color);
    box-shadow: none;
  }
  100% {
    background: var(--hover-color);
    box-shadow: var(--neon-box-shadow);
  }
}
@keyframes slideAnimation {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Extras */
.gold-gud {
  color: var(--hover-color);
  margin: 15px;
  padding: 5px;
  border-radius: 50%;
}
.gold-gud em {
  font-size: 0.6rem;
  font-weight: 200;
  color: var(--hover-color);
  margin-top: -10px;
  padding-bottom: 15px;
}
.gold-gud img {
  border-radius: 50% !important;
}

 /* ===== FLOATING BUTTON CONTAINER ===== */

/* Container & positioning */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
}

/* Tooltip label */
.whatsapp-label {
  background: #fff;
  color: #111;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transform-origin: left center;
  transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.15s;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

/* The round WhatsApp button */
.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #25d366, #1ebe5d);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.18);
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.whatsapp-btn:active {
  transform: scale(0.97);
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

/* Pulse animation */
.whatsapp-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.18) 0%,
    rgba(37, 211, 102, 0.06) 40%,
    transparent 60%
  );
  animation: pulse 2.6s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Show label on hover/focus */
.whatsapp-float:hover .whatsapp-label,
.whatsapp-float:focus-within .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Initially the label sits slightly left (hidden) */
.whatsapp-label {
  transform: translateX(-8px);
}

/* Small responsive tweak on tiny screens */
@media (max-width: 420px) {
  .whatsapp-label {
    display: none;
  } /* save space on small phones */
  .whatsapp-float {
    left: 12px;
    bottom: 18px;
  }
  .whatsapp-btn {
    width: 52px;
    height: 52px;
  }
}

/* Visually hidden but available to screen readers for aria-live messages */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
  .whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    animation: bounceIn 1s ease forwards;
  }

  /* ===== BUTTON ===== */
  .whatsapp-btn {
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Hover effect */
  .whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
  }

  /* ===== PULSE ANIMATION AROUND BUTTON ===== */
  .whatsapp-pulse {
    position: absolute;
    width: 85px;
    height: 85px;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2.5s infinite ease-out;
  }

  /* ===== WHATSAPP ICON ===== */
  .whatsapp-btn svg {
    width: 35px;
    height: 35px;
    fill: white;
  }

  /* ===== LABEL ===== */
  .whatsapp-label {
    position: absolute;
    left: 80px;
    bottom: 20px;
    background: #ffffff;
    color: #111;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
  }

  .whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
  }

  /* ===== ANIMATIONS ===== */
  @keyframes pulse {
    0% {
      transform: scale(0.9);
      opacity: 0.7;
    }
    70% {
      transform: scale(1.6);
      opacity: 0;
    }
    100% {
      transform: scale(1.6);
      opacity: 0;
    }
  }

  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    50% {
      opacity: 0.9;
      transform: scale(1.1);
    }
    70% {
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (max-width: 480px) {
    .whatsapp-label {
      display: none;
    }
    .whatsapp-btn {
      width: 55px;
      height: 55px;
    }
  }

/* Break Point */
@media (max-width: 991px) {
  header,
  header.sticky {
    padding: 15px 3%;
  }
  footer {
    padding: 15px 5%;
  }
  section {
    padding: 50px 5%;
  }
  .navlist a {
    padding: 8px 15px;
  }
  :root {
    --big-font: 2.2rem;
    --norma-font: 1.8rem;
    --neon-box-shadow: 0 0 0.8rem #f7e928;
    --h2-font: 3rem;
  }
  .home-content {
    margin-top: 5rem;
  }

  .social-icons {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
    transition: all 0.4s ease;
  }
  #menu-icon.bx-x {
    transform: rotate(-180deg);
  }
  .navlist {
    display: flex;
    position: absolute;
    top: -1000px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: var(--bg-color);
    text-align: left;
    padding: 0 5%;
    transition: all 0.45s ease;
  }
  .navlist a {
    display: block;
    padding-bottom: 1rem;
    font-size: 1rem;
  }
  .navlist.open {
    top: 100%;
  }
  .home {
    grid-template-columns: 1fr;
  }
  .home-image {
    margin-bottom: 5rem;
  }
  .liquid-shape {
    width: 80%;
    left: 10%;
    top: 13%;
  }
  .about {
    flex-direction: column-reverse;
  }

  .skill-main {
    grid-template-columns: 1fr;
  }
  .filter-buttons {
    margin: 2.5rem 0;
  }
  footer p {
    font-size: 0.8rem;
  }
}
@media (max-width: 420px) {
  html {
    font-size: 80%;
  }
  footer p {
    font-size: 0.6rem;
  }
  .filter-buttons .button {
    font-size: 0.8rem;
  }
  .img-about img {
    width: 300px;
  }
  .info-about1,
  .info-about2,
  .info-about3 {
    display: none;
  }
  .img-about p {
    font-size: 1rem;
  }
  .sponsors .img-slider {
    display: flex;
    margin: 10px;
  }
}
