:root {
  --primary: #0a4dd4;
  --black: #000;
  --white: #fff;
  --bg-grad: radial-gradient(circle at 50% 50%, #ffffff 0%, #f0f2f5 100%);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  background: var(--bg-grad);
  color: var(--black);
  overflow-x: hidden;
}
.bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.dot-path {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 400px;
  height: 200px;
  border: 1px dashed rgba(0, 0, 0, 0.418);
  border-radius: 50% 10% 50% 10%;
  transform: rotate(-15deg);
}
.float-icon {
  position: absolute;
  font-size: 100px;
  animation: float 6s infinite ease-in-out;
  opacity: 0.6;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.nav-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgb(255, 0, 0);
  backdrop-filter: blur(15px);
  padding: 15px 30px;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.nav-links {
  display: flex;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.6;
  transition: 0.3s;
}
.nav-links a:hover {
  opacity: 1;
}
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 150px 5% 50px;
  text-align: center;
  margin-top: -50px;
}
.badge {
  color: #343434;
  background: #d6d6d6be;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 0.7px solid rgb(187, 187, 187);
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  animation: glass-shine 3s infinite linear;
}
@keyframes glass-shine {
  0% {
    left: -150%;
  }
  30% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.hero-h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -4px;
  margin-bottom: 30px;
}
.hero-desc {
  max-width: 750px;
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}
.decs-item {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}
.decs-item:hover {
  border-bottom: 1px solid currentColor;
}
.web:hover {
  color: #3b82f6;
}
.app:hover {
  color: #8b5cf6;
}
.crm:hover {
  color: #10b981;
}
.ai:hover {
  color: var(--primary);
}
.btn-main {
  background: var(--black);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 100px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.4s;
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-main:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.visual-grid {
  display: flex;
  gap: 25px;
  width: 100%;
  max-width: 1100px;
  margin-top: 80px;
  perspective: 1500px;
  align-items: flex-end;
}
.card {
  background: var(--white);
  border-radius: 35px;
  padding: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: 0.5s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-10px) rotateX(2deg);
}
.card-stats {
  width: 250px;
  height: 180px;
  text-align: left;
}
.card-video {
  flex: 1;
  height: 350px;
  overflow: hidden;
  background: #fafafa;
}
.card-cta {
  width: 280px;
  height: 220px;
  background: var(--primary);
  color: white;
  border: none;
  text-align: left;
}
.video-box {
  width: 100%;
  height: 220px;
  background: #eee;
  border-radius: 20px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .visual-grid {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 100% !important;
    height: auto !important;
  }
  .hero-h1 {
    letter-spacing: -2px;
  }
  .nav-links {
    display: none;
  }
  .hero-desc {
    font-size: 14px;
    color: #000000;
  }
  .bg-decor {
opacity: 0.3;  }
  .hero-section{
      margin-top: -100px;

  }
}
.floating-glass-box {
  position: absolute;
  right: 2%;
  top: 70%;
  width: 280px;
  padding: 10px;
  background: transparent;
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: floatVertical 4s infinite ease-in-out;
}
@keyframes floatVertical {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
@media (max-width: 1024px) {
  .floating-glass-box {
    display: none;
  }
}
.top-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  z-index: 2000;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s;
}
.top-header.hide {
  transform: translateY(-100%);
  opacity: 0;
}
.top-header img {
  height: 405x;
  width: 80px;
}
.logo {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -1px;
}
.desktop-links {
  display: flex;
  gap: 30px;
}
.desktop-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 600;
}
.nav-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
}
.bottom-nav {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(150px);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 12px;
  border-radius: 100px;
  display: flex;
  gap: 8px;
  z-index: 2001;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.bottom-nav.show {
  transform: translateX(-50%) translateY(0);
}
.nav-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 15px;
  border-radius: 100px;
  transition: 0.3s;
  min-width: 65px;
}
.nav-icon-wrapper {
  color: #888;
  margin-bottom: 2px;
  transition: 0.3s;
}
.nav-item span {
  font-size: 10px;
  font-weight: 700;
  color: #888;
}
.nav-item:hover .nav-icon-wrapper,
.nav-item:hover span {
  color: #000;
}
.nav-item svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .desktop-links,
  .nav-btn {
    display: none;
  }
  .top-header {
    justify-content: center;
    padding: 15px;
  }
  .bottom-nav {
    width: 92%;
    justify-content: space-around;
    bottom: 15px;
    padding: 8px 5px;
  }
  .nav-item {
    min-width: auto;
    padding: 8px 10px;
  }
}
.cc-ultra-visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}
.cc-ultra-card {
  position: relative;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(146, 146, 146, 0.393);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.cc-ultra-business-premium {
  padding: 35px;
  justify-content: flex-end;
}
.cc-ultra-shiny-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(111, 111, 111, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: cc-ultra-sweep-anim 10s infinite ease-in-out;
}
@keyframes cc-ultra-sweep-anim {
  0% {
    left: -100%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.cc-ultra-badge-white {
  background: #fff;
  color: #000;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 15px;
}
.cc-ultra-card-h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #000;
}
.cc-ultra-card-p {
  font-size: 15px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.5;
}
.cc-ultra-arrow-btn {
  text-decoration: none;
  color: #000;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cc-ultra-circle-icon {
  background: #000;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cc-ultra-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cc-ultra-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  background: #000;
}
.cc-ultra-video-overlay {
  position: absolute;
  inset: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}
.cc-ultra-tag-glass {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 50px;
  color: #fff;
  font-size: 10px;
  width: fit-content;
}
.cc-ultra-video-info h3 {
  color: #fff;
  font-size: 22px;
  margin: 0;
}
.cc-ultra-video-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin: 5px 0 0;
}
.cc-ultra-glass-offer {
  padding: 35px;
  justify-content: center;
}
.cc-ultra-label-blue {
  color: #0a4dd4;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
}
.cc-ultra-offer-h3 {
  font-size: 24px;
  font-weight: 900;
  margin: 10px 0;
}
.cc-ultra-offer-p {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.4;
}
.cc-ultra-price-tag {
  margin-top: 20px;
  font-weight: 900;
  color: #0a4dd4;
  font-size: 18px;
}
@media (max-width: 850px) {
  .cc-ultra-visual-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .cc-ultra-card {
    min-height: 300px;
    border-radius: 24px;
  }
  .cc-ultra-business-premium {
    grid-column: span 1;
    padding: 20px;
  }
  .cc-ultra-video-card {
    grid-column: span 1;
    min-height: 300px;
  }
  .cc-ultra-glass-offer {
    grid-column: span 2;
    padding: 30px;
    text-align: center;
    min-height: auto;
  }
  .cc-ultra-card-h2 {
    font-size: 20px;
  }
  .cc-ultra-card-p {
    font-size: 12px;
  }
  .cc-ultra-video-info h3 {
    font-size: 18px;
  }
  .cc-ultra-offer-h3 {
    font-size: 20px;
  }
}
.float-icon {
  color: #000;
}
:root {
  --bg: #ffffff;
  --text: #000000;
  --gray: #666666;
  --accent: #0070f3;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#grid-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  z-index: 1;
}
.grid-box {
  border: 0.5px solid rgba(0, 0, 0, 0.03);
  transition: background 0.8s ease;
}
.grid-box.active {
  background: var(--text);
  transition: background 0s;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  pointer-events: none;
  padding: 0 20px;
}
h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 15vw, 8rem);
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 0.9;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.2s;
}
p {
  font-size: clamp(0.9rem, 4vw, 1.2rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.4s;
}
.cta-btn {
  pointer-events: auto;
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}
.cta-btn:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
:root {
  --accent: #ffd000;
  --nav-bg: rgba(255, 255, 255, 0.49);
}
.bottom-nav {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 480px;
  height: 75px;
  background: var(--nav-bg);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-size: 0.65rem;
  font-weight: 600;
  position: relative;
  width: 60px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-icon-wrapper {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 2px;
}
.nav-item i {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}
.nav-item:hover {
  color: var(--accent);
}
.nav-item:hover .nav-icon-wrapper {
  background: black;
  color: #fff;
  transform: translateY(-25px) scale(1.2);
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.3);
}
.nav-item span {
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.nav-item:hover span {
  transform: translateY(5px);
  opacity: 0;
}
.profile-nav .nav-icon-wrapper {
  background: rgba(0, 0, 0, 0.05);
}
.nav-item.active {
  color: var(--accent);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .grid-box {
    border-width: 0.2px;
  }
  .bottom-nav {
    width: 95%;
    bottom: 15px;
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  #grid-container {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
}
.trust-deep-section {
  position: relative;
  background: #ffffff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 20px;
}
.bg-ghost-text {
  position: absolute;
  font-size: 15vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.tape-container {
  position: absolute;
  width: 140%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.deep-tape {
  height: 80px;
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 1.5rem;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.blur-effect {
  filter: blur(4px);
  opacity: 0.8;
}
.tape-yellow {
  background: #0070f3;
  color: #000;
  transform: rotate(-12deg) translateY(-80px);
}
.tape-black {
  background: #000;
  color: #0070f3;
  transform: rotate(8deg) translateY(40px);
}
.tape-scroll,
.tape-scroll-reverse {
  display: flex;
  white-space: nowrap;
  animation: scroll-tape 20s linear infinite;
}
.tape-scroll-reverse {
  animation-direction: reverse;
}
@keyframes scroll-tape {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.main-sharp-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.impact-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  color: #000;
  line-height: 0.9;
  letter-spacing: -3px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}
.outline-txt {
  color: transparent;
  -webkit-text-stroke: 2px #000;
}
.sub-impact {
  font-size: 1.2rem;
  color: #a7a7a7;
  margin-top: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .trust-deep-section {
    height: 70vh;
  }
  .deep-tape {
    height: 50px;
    font-size: 1rem;
  }
  .impact-text {
    font-size: 3.5rem;
    letter-spacing: -1px;
  }
  .bg-ghost-text {
    font-size: 25vw;
  }
  .tape-yellow {
    transform: rotate(-15deg) translateY(-40px);
  }
  .tape-black {
    transform: rotate(12deg) translateY(20px);
  }
}











/*servceee*/

/* --- TUMHARI PURANI CSS (BILKUL SAME) --- */
.services-section {
  padding: 80px 0;
  background: #fff;
}
.services-container {
  width: 100%;
  margin: 0 auto;
}
.services-intro {
  padding: 0 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.services-intro h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 15px;
  line-height: 1.2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
}
.services-grid a {
  text-decoration: none;
}
.service-card {
  position: relative;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.card-bg {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}
.service-card:hover .card-bg {
  bottom: 0;
}
.card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: 0.4s;
}
.s-icon {
  width: 32px;
  height: 32px;
  color: #000;
  margin-bottom: 12px;
  transition: 0.4s;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  transition: 0.4s;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
.service-card:hover .s-icon,
.service-card:hover h3 {
  color: #fff;
  transform: scale(1.1);
}
.see-details {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #777;
  margin-top: 8px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  transform: translateY(0);
}
.service-card:hover .see-details {
  color: #fff;
  letter-spacing: 2.5px;
  transform: translateY(-5px);
}

/* --- NAYA CSS: Wrapper Animation aur View More Button --- */

/* Wrapper Desktop par sirf 2 rows (362px) dikhayega */
.services-grid-wrapper {
  overflow: hidden;
  max-height: 362px; /* 180px * 2 rows + border margin */
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Expand hone par max-height barh jayegi aur smooth open hoga */
.services-grid-wrapper.expanded {
  max-height: 2500px; /* Itni value ke sub cards easily aa jayein */
}

/* Button ki styling */
.view-more-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.view-more-btn {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 12px 35px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit; /* Aapka theme font utha layega */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.view-more-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- MOBILE RESPONSIVE CSS --- */
@media (max-width: 768px) {
  .services-intro {
    padding: 0 15px 30px;
  }
  .services-intro h2 {
    font-size: 2rem; /* Adjusted according to your original CSS */
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    height: 160px;
  }
  
  /* Mobile pe 6 cards = 3 rows, is liye max height change ki hai */
  .services-grid-wrapper {
    max-height: 482px; /* 160px * 3 rows + border margin */
  }
}

/* Hover Colors (Tumhare Apnay!) */
#s-web:hover .s-icon, #s-web:hover h3 { color: #0070f3; }
#s-app:hover .s-icon, #s-app:hover h3 { color: #e7ff33; }
#s-wp:hover .s-icon, #s-wp:hover h3 { color: #0821c4; }
#s-pms:hover .s-icon, #s-pms:hover h3 { color: #2e5bff; }
#s-crm:hover .s-icon, #s-crm:hover h3 { color: #00ff9d; }
#s-erp:hover .s-icon, #s-erp:hover h3 { color: #09cb53; }
#s-csd:hover .s-icon, #s-csd:hover h3 { color: #abd814; }
#s-bus:hover .s-icon, #s-bus:hover h3 { color: #818181; }
#s-saas:hover .s-icon, #s-saas:hover h3 { color: #36c31a; }
#s-port:hover .s-icon, #s-port:hover h3 { color: #0a775a; }
#s-ui:hover .s-icon, #s-ui:hover h3 { color: #ff0000; }
#s-pos:hover .s-icon, #s-pos:hover h3 { color: #c2315c; }
#s-video:hover .s-icon, #s-video:hover h3 { color: #b27007; }
#s-meta:hover .s-icon, #s-meta:hover h3 { color: #e1306c; }
#s-gd:hover .s-icon, #s-gd:hover h3 { color: #ff9a00; }
#s-ecom:hover .s-icon, #s-ecom:hover h3 { color: #f97316; }
#s-ppt:hover .s-icon, #s-ppt:hover h3 { color: #8a2be2; }
#s-smm:hover .s-icon, #s-smm:hover h3 { color: #ff0050; }
#s-ai:hover .s-icon, #s-ai:hover h3 { color: #1aff00; }




/*videoooooooo*/
.center-text {
  text-align: center;
  width: 100%;
}
.portfolio-section {
  padding: 100px 0;
  background: #fff;
}


.video-wrapper {
  position: relative;
  margin: 0 100px;
  height: 80vh;
  border-radius: 20px;
  overflow: hidden;
  cursor: none;
}
.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.video-wrapper:hover .showcase-video {
  filter: grayscale(0%);
}
.magnetic-btn {
  position: fixed;
  width: 100px;
  height: 100px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  pointer-events: none;
  z-index: 50;
  transition:
    transform 0.1s ease-out,
    width 0.3s,
    height 0.3s;
}
#btn-target {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  height: 100px;
}
@media (max-width: 768px) {
  .video-wrapper {
    margin: 0 20px;
    height: 50vh;
    cursor: auto;
  }
  .magnetic-btn {
    display: none;
  }
}
.magnetic-btn {
  position: fixed;
  width: 140px;
  height: 50px;
  color: white;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: scale(0);
  transition:
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.3s ease;
}
.video-wrapper:hover .magnetic-btn {
  opacity: 1;
  transform: scale(1);
}
.video-wrapper {
  position: relative;
  cursor: none;
}
.puzzle-section {
  background: #ffffff;
  padding: 100px 5%;
  display: flex;
  justify-content: center;
}
.puzzle-container-wrapper {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.info-side {
  text-align: left;
}
.sale-badge {
  background: #000;
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  transform: rotate(-10deg);
  font-family: "Space Grotesk", sans-serif;
}
.glaze-text {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}
.instruction-desc {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}
.steps-list {
  list-style: none;
  padding: 0;
}
.steps-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}
.steps-list i {
  color: #0070f3;
  width: 20px;
}
.board-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
  background: #f0f0f0;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.puzzle-board {
  display: grid;
  grid-template-columns: repeat(3, 110px);
  grid-template-rows: repeat(3, 110px);
  gap: 4px;
}
.tile {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}
.game-overlay,
.countdown-overlay,
.win-display {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
.start-game-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 15px 35px;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .puzzle-container-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .info-side {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .glaze-text {
    font-size: 2.5rem;
  }
}
.pulse-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#dotCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pulse-content {
  position: relative;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}
.reveal-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  letter-spacing: -2px;
  filter: blur(15px);
  opacity: 0;
  transform: scale(0.9);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal-text.active {
  filter: blur(0px);
  opacity: 1;
  transform: scale(1);
}
.reveal-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 1000;
  line-height: 1.1;
  font-size: 100px;
  letter-spacing: -2px;
  position: relative;
  color: #000;
  background: radial-gradient(
    400px circle at var(--mouse-x) var(--mouse-y),
    #ff0080 0%,
    #ffdb00 30%,
    #ff4d4d 60%,
    #000 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  filter: blur(15px);
  opacity: 0;
  transform: scale(0.9);
  transition:
    filter 1.5s ease,
    opacity 1.5s ease,
    transform 1.5s ease;
  -webkit-text-fill-color: transparent;
}
.reveal-text.active {
  filter: blur(0px);
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 768px) {
  .reveal-text {
    font-size: 60px;
  }
}
:root {
  --cc-yellow: #0b7dda;
  --cc-bg: #f9f9f9;
  --cc-dark: #111;
}
.cr-reviews-sec {
  padding: 80px 5%;
  background: #fff;
  font-family: "Space Grotesk", sans-serif;
}
.cr-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.cr-title h2 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}
.cr-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.cr-card {
  background: var(--cc-bg);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #eee;
  transition: 0.3s;
}
.cr-card:hover {
  transform: translateY(-5px);
  border-color: var(--cc-yellow);
}
.cr-card h4 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.cr-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}
.cr-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.cr-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  width: 90%;
  max-width: 450px;
}
.cr-form-box input,
.cr-form-box textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: inherit;
  outline: none;
}
.cr-form-box input:focus {
  border-color: var(--cc-yellow);
}
.cr-btn {
  background: var(--cc-dark);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}
.cr-btn:hover {
  background: var(--cc-yellow);
  color: #000;
}
.cr-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.cr-dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
}
.cr-dot.active {
  background: var(--cc-dark);
  width: 25px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .cr-review-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cr-card {
    padding: 15px;
  }
  .cr-card h4 {
    font-size: 1rem;
  }
  .cr-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.pricing-3d-section {
  background: #ffffff;
  padding: 100px 0;
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
  position: relative;
}
.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 10px 0;
  text-transform: uppercase;
}
.carousel-nav {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 150;
  pointer-events: none;
  transform: translateY(-50%);
}
.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.nav-btn:hover {
  background: #0070f3;
  transform: scale(1.1);
}
.nav-btn:active {
  transform: scale(0.9);
}
.scroll-toast {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  z-index: 100;
  transition: 0.6s;
  opacity: 0;
}
.scroll-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.carousel-wrapper {
  width: 100%;
  height: 450px;
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.track {
  position: relative;
  width: 220px;
  height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.card {
  position: absolute;
  width: 220px;
  height: 320px;
  border-radius: 24px;
  padding: 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backface-visibility: hidden;
  transition: 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.card.dark {
  background: #000;
  color: #fff;
}
.card.light {
  background: #fff;
  color: #000;
}
.price-box .amt {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}
.card-mid h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 10px 0;
}
.card-bottom {
  font-size: 0.7rem;
  border-top: 1px solid rgba(128, 128, 128, 0.2);
  padding-top: 15px;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .carousel-nav {
    top: 65%;
    padding: 0 15px;
  }
  .nav-btn {
    width: 40px;
    height: 40px;
  }
  .track,
  .card {
    width: 160px;
    height: 240px;
  }
  .carousel-wrapper {
    perspective: 1200px;
  }
}
.direct-contact-section {
  background: #000;
  color: #fff;
  padding: 120px 5%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact-flex-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.contact-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
.floating-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  z-index: 2;
}
.visual-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(224, 224, 224, 0.15) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.contact-content {
  flex: 1;
  max-width: 550px;
}
.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -2px;
}
.section-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 40px;
  font-weight: 300;
}
.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #000000;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  margin-bottom: 30px;
}
.primary-btn:hover {
  background: #000000;
  color: rgb(255, 255, 255);
  transform: translateY(-3px);
  box-shadow: 1px 10px 0px 5px rgb(255, 255, 255);
}
.secondary-links {
  display: flex;
  gap: 30px;
}
.text-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  opacity: 0.8;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}
.text-link:hover {
  opacity: 1;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .contact-flex-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
  }
  .contact-content {
    max-width: 100%;
  }
  .secondary-links {
    justify-content: center;
  }
  .floating-img {
    max-width: 100%;
  }
}
.footer-section {
  background: #000;
  color: #f8f8f8;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.footer-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}
.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.slanted-up {
  transform: rotate(-6deg) translateY(20px) scale(1.1);
}
.slanted-down {
  transform: rotate(4deg) translateY(100px) scale(1.1);
}
.marquee-inner span {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  padding-right: 40px;
  text-transform: uppercase;
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}
.footer-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.bento-tile {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  transition: 0.4s ease;
  overflow: hidden;
}
.bento-tile:hover {
  border: 1px solid white;
}
.cta-box {
  grid-column: span 2;
}
.social-box {
  grid-column: span 1;
}
.links-box {
  grid-column: span 1;
}
.contact-box {
  grid-column: span 2;
}
.bottom-bar {
  grid-column: span 3;
  padding: 20px 30px;
}
.contact-grid-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 15px;
}
.contact-details-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.c-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
  font-size: 0.95rem;
}
.c-item i {
  color: #0070f3;
  width: 20px;
  flex-shrink: 0;
}
.contact-map {
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  filter: grayscale(1) invert(1) contrast(0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
}
.contact-map:hover {
  filter: grayscale(0) invert(0);
}
@media (max-width: 600px) {
  .contact-grid-inner {
    grid-template-columns: 1fr;
  }
  .contact-map {
    height: 120px;
  }
}
.mini-tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #a0a0a0;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}
.cta-box h2 {
  font-family: "Space Grotesk";
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 10px 0;
  line-height: 1.2;
}
.cta-box h2 span {
  color: #0070f3;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 10px 25px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 15px;
  font-size: 0.9rem;
}
.footer-btn:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.s-link {
  background: rgba(255, 255, 255, 0.05);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 0.3s,
    color 0.3s;
}
.s-link:hover {
  background-color: white;
  color: black;
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}
.s-link i {
  width: 20px;
  height: 20px;
}
.contact-details .c-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: #ccc;
  font-size: 0.9rem;
}
.contact-details i {
  color: #0070f3;
  width: 18px;
  flex-shrink: 0;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #444;
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 10px;
}
.legal a {
  color: #ccc;
  text-decoration: none;
}
.legal a:hover {
  color: #0070f3;
}
@media (max-width: 900px) {
  .footer-section {
    padding: 60px 0;
  }
  .footer-bento-grid {
    grid-template-columns: 1fr;
  }
  .cta-box,
  .social-box,
  .links-box,
  .contact-box,
  .bottom-bar {
    grid-column: span 1;
    padding: 25px;
  }
  .social-links-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .footer-flex {
    flex-direction: column;
    text-align: center;
  }
  .legal {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .social-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
}
.slanted-up {
  transform: rotate(-6deg) translateY(50px) scale(1.2);
}
.slanted-down {
  transform: rotate(4deg) translateY(150px) scale(1.2);
}
.marquee-inner {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-inner span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  padding-right: 60px;
  text-transform: uppercase;
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.side-action-menu {
  position: fixed;
  bottom: 60px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}
@media (max-width: 768px) {
  .side-action-menu {
    bottom: 80px;
    right: 0;
  }
   
}
.fab-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.side-tab {
  width: 60px;
  height: 55px;
  border-radius: 16px 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.side-tab:hover {
  width: 70px;
  transform: translateX(-3px);
}
.whatsapp-tab {
  background-color: #25d366;
  color: white;
}
.whatsapp-tab:hover {
  background-color: #1ebe57;
}
.ai-tab {
  background: #ffffff;
  color: #0070f3;
  border-left: 1.5px solid #eaeaea;
  border-top: 1.5px solid #eaeaea;
  border-bottom: 1.5px solid #eaeaea;
  border-right: none;
}
.ai-tab:hover {
  background: #f0f7ff;
}
.ai-gif {
  width: 42px;
  height: 42px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 4px 6px rgba(0, 112, 243, 0.15));
}
.fab-tooltip {
  position: absolute;
  right: 80px;
  background: #111111;
  color: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.fab-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #111111;
}
.fab-container:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.fb-widget-container {
  position: fixed;
  left: 0;
  bottom: 15vh;
  z-index: 2500;
  display: flex;
  flex-direction: row;
  align-items: center;
  transform: translateX(-280px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fb-widget-container.is-open {
  transform: translateX(0);
}
.fb-panel {
  width: 280px;
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 15px 20px;
  box-shadow: 10px 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  flex-shrink: 0;
}
.fb-close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 26px;
  color: #999;
  cursor: pointer;
  transition: 0.2s;
  line-height: 1;
  padding: 0;
}
.fb-close-btn:hover {
  color: #000;
  transform: scale(1.2);
}
.fb-title {
  margin: 0 0 12px 0;
  font-size: 15px;
  color: #333;
  font-weight: 700;
}
.fb-stats {
  font-size: 11px;
  color: #888;
  margin-top: 12px;
  font-weight: 500;
}
.fb-thanks {
  font-size: 12px;
  color: #28a745;
  margin-top: 10px;
  font-weight: 700;
}
.fb-emojis {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.fb-svg-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
}
.fb-svg-btn svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.fb-svg-btn svg circle {
  fill: transparent;
  stroke: #999;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}
.fb-svg-btn svg path,
.fb-svg-btn svg line {
  stroke: #999;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: all 0.3s ease;
}
.fb-svg-btn[data-val="1"]:hover svg circle,
.fb-svg-btn[data-val="1"].is-active svg circle {
  fill: #ff4d4f;
  stroke: #ff4d4f;
}
.fb-svg-btn[data-val="2"]:hover svg circle,
.fb-svg-btn[data-val="2"].is-active svg circle {
  fill: #ffa940;
  stroke: #ffa940;
}
.fb-svg-btn[data-val="3"]:hover svg circle,
.fb-svg-btn[data-val="3"].is-active svg circle {
  fill: #ffc53d;
  stroke: #ffc53d;
}
.fb-svg-btn[data-val="4"]:hover svg circle,
.fb-svg-btn[data-val="4"].is-active svg circle {
  fill: #a0d911;
  stroke: #a0d911;
}
.fb-svg-btn[data-val="5"]:hover svg circle,
.fb-svg-btn[data-val="5"].is-active svg circle {
  fill: #52c41a;
  stroke: #52c41a;
}
.fb-svg-btn:hover svg path,
.fb-svg-btn:hover svg line,
.fb-svg-btn.is-active svg path,
.fb-svg-btn.is-active svg line {
  stroke: #fff;
}
.fb-svg-btn.is-active {
  transform: scale(1.15);
}
.fb-door-wrapper {
  position: relative;
  flex-shrink: 0;
}
.fb-door-btn {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 15px 8px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
  transform-origin: left center;
  animation: door-rattle 4s infinite;
  transition: background 0.3s ease;
}
.fb-widget-container.is-open .fb-door-btn {
  animation: none;
  background: #333;
}
.fb-door-text {
  display: block;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}
.fb-door-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 10;
}
.fb-door-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(15px);
}
.fb-widget-container.is-open .fb-door-btn::after {
  display: none;
}
@keyframes door-rattle {
  0%,
  85% {
    transform: rotateY(0deg);
  }
  87% {
    transform: rotateY(20deg);
  }
  89% {
    transform: rotateY(-5deg);
  }
  91% {
    transform: rotateY(15deg);
  }
  93% {
    transform: rotateY(-2deg);
  }
  95% {
    transform: rotateY(10deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
