
/* base hidden state */

[data-animate]{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}

/* from left */

[data-animate="left"]{
transform: translateX(-120px);
}

/* from right */

[data-animate="right"]{
transform: translateX(120px);
}

/* from bottom */

[data-animate="up"]{
transform: translateY(80px);
}

/* from top (NEW) */

[data-animate="down"]{
transform: translateY(-80px);
}

/* fade */

[data-animate="fade"]{
transform: scale(.95);
}

/* visible state */

[data-animate].show{
  opacity:1;
  transform:translateY(0);
}





/* ================= BUTTON ================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent-green);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(76, 175, 0, 0.5);
}

.btn-primary:hover {
  background: var(--accent-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(76, 175, 0, 0.8);
  letter-spacing: 1.2px;
}
/* 1 BUTTON */

.arrow-btn{
position:relative;
  z-index:111;
bottom:1rem;
background:#ffffff;
width:3rem;
height:3rem;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
transition:0.3s;
}

.arrow-btn i{
color:black;
font-size:1rem;
}

.arrow-btn:hover{
transform:scale(1.15);
}

/* 2 BUTTON */

.go-btn{

display:inline-flex;
align-items:center;
gap:10px;


text-decoration:none;
color:white;

overflow:hidden;

transition:.35s ease;
}
.go-text {
    padding-left: 10px;
padding-right: 10px;

}

/* arrow */

.arrow{
display:flex;
transition:.35s cubic-bezier(.76,0,.24,1);
}


/* text color */

.go-btn:hover .go-text{
color:black;
background-color: white;
}

/* arrow move inside text */

.go-btn:hover .arrow{
transform:translateX(-25px);
opacity:0;
color:black;
}

/* 3 BUTTON */


.btn-parent{
height:30px;
width:120px;

display:flex;
justify-content:center;
align-items:center;

position:relative;
overflow:hidden;

background:transparent;
border-radius:40px;
border:1px solid white;

cursor:pointer;
transition:0.4s;
}

.btn-parent span{
position:absolute;
width:100%;
left:0;
text-align:center;
transition:0.3s ease;
font-size: .8rem;
font-weight:400;
}

.btn-txt-1{
top:50%;
transform:translateY(-50%);
color:white;
}

.btn-txt-2{
    top: 50%;
transform:translateY(150%);
color: black;
}

.btn-parent:hover .btn-txt-1{
transform:translateY(-200%);
}

.btn-parent:hover .btn-txt-2{
transform:translateY(-50%);

}

.btn-parent:hover{
background:white;
}

/* ================= BADGES ================= */

.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 500;
}

.badge-fintech {
  background: rgba(255, 153, 0, 0.15);
  color: #ff9900;
}

.badge-edtech {
  background: rgba(0, 102, 255, 0.15);
  color: #0066ff;
}

.badge-pharma {
  background: rgba(0, 170, 120, 0.15);
  color: #00aa78;
}

/* ================= BUTTON VARIANTS ================= */

.btn {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-orange {
  background: #ff9900;
  color: #fff;
}

.btn-orange:hover {
  background: #ffad33;
  transform: translateY(-2px);
  letter-spacing: 1.2px;
}

.btn-blue {
  background: #0033ff;
  color: #fff;
}

.btn-blue:hover {
  background: #335cff;
  transform: translateY(-2px);
  letter-spacing: 1.2px;
}

.btn-green {
  background: #1fa67a;
  color: #fff;
}

.btn-green:hover {
  background: #28c796;
  transform: translateY(-2px);
  letter-spacing: 1.2px;
}

/* ===== Cursor Glow ===== */

.cursor-glow{
position:absolute;
width:250px;
height:250px;
background:radial-gradient(circle,#00ff88,transparent 70%);
filter:blur(100px);
pointer-events:none;
opacity:0.5;
z-index: 0;
}


/* stagger animation */
.reveal:nth-child(1){transition-delay:0.1s;}
.reveal:nth-child(2){transition-delay:0.3s;}
.reveal:nth-child(3){transition-delay:0.5s;}
.reveal:nth-child(4){transition-delay:0.7s;}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 50px;
  height: 50px;

  background: #25D366;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 28px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.3);

  z-index: 9999;
  cursor: pointer;

  transition: 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b358;
}

/* Pulse animation */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* align both */
.filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* your search */
.search-parent {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  background: #111;
  border: 1px solid #222;
  border-radius: 40px;
  padding: 0 15px;
  overflow: hidden;
  color: white;
  cursor: pointer;
  transition: width .35s cubic-bezier(.34,1.56,.64,1);
}

.search-input {
  border: none;
  outline: none;
  background: transparent;
  color: white;
  margin-left: 10px;
  opacity: 0;
  width: 140px;
  font-size: 14px;
  transition: opacity .2s ease;
}

/* hover + click support */
.search-parent:hover,
.search-parent:focus-within {
  width: 230px;
}

.search-parent:hover .search-input,
.search-parent:focus-within .search-input {
  opacity: 1;
}

/* dropdown */
#categoryFilter {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #222;
  background: #111;
  color: white;
}


/* ===============================
   Infinite Loop Banner
================================== */

.loop-banner {
  background: #052b16; /* dark green */
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.loop-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 12s linear infinite;
}

.loop-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
  white-space: nowrap;
}

.loop-content span {
    font-family: "Purple Purse", serif;
  font-size: 60px;
  font-weight: 700;
  color: #d7c8db; /* light lavender */
  letter-spacing: 2px;
}

.loop-content .arrow {
  font-size: 50px;
  opacity: 0.8;
}

/* Images */
.loop-content img {
  width: 220px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 5%;
}


/* Infinite scrolling animation */
@keyframes scrollLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* =========================================================
   WORD REVEAL
========================================================= */

[data-animate="words"] span {

  display: inline-block;

  opacity: 0;
  transform: translateY(20px);

  filter: blur(5px);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    filter 0.5s ease;

}

[data-animate="words"].show span {

  opacity: 1;
  transform: translateY(0);

  filter: blur(0);

}
