/* --- Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --purple:        #6a1fd0;
    --purple-light:  #8b5cf6;
    --purple-soft:   #ede9fe;
    --purple-card:   #eee8fb;
    --purple-icon:   #e8e0f8;
    --dark-banner:   #1c0a4a;
    --white:         #ffffff;
    --page-bg:       #f5f4f9;
    --dark-text:     #0f0f0f;
    --body-text:     #555566;
    --radius:        16px;
    --shadow:        0 2px 16px rgba(100,60,200,0.10);
    --t:             0.38s cubic-bezier(0.22,1,0.36,1);
  }

body {
    background-color: #0b0b0e;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    /* max-width: 1280px; */
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════
   NAVBAR — paste everything below into your project
═══════════════════════════════════════════ */
 
/* ── Top bar ── */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  /* Outer glass strip */
  background: rgba(10, 6, 28, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
 
.nav-bar.scrolled {
  background: rgba(8, 4, 22, 0.82);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
 
/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-16px);
  animation: navFadeIn 0.6s 0.1s ease forwards;
}
 
/* 
  👉 Replace src with your logo image:
     <img src="./assets/upnex-logo.png" .../>
  OR keep the CSS logo below
*/
.nav-logo__img {
  height: 42px;
  width: auto;
  display: block;
}
 
/* CSS Logo fallback */
.nav-logo__css {
  display: flex;
  align-items: center;
  gap: 8px;
}
 
.nav-logo__icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(124,58,237,0.5);
}
 
.nav-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
 
.nav-logo__name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
 
.nav-logo__name span { color: #a855f7; }
 
.nav-logo__sub {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1px;
}
 
/* ── Center pill (links container) ── */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: navFadeIn 0.6s 0.2s ease forwards;
}
 
/* ── Nav links ── */
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 18px;
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
  border: none;
  background: transparent;
  font-family: 'Manrope', sans-serif;
}
 
.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,0.10);
  color: #fff;
}
 
/* chevron */
.nav-link__chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
 
.nav-link[aria-expanded="true"] .nav-link__chevron {
  transform: rotate(180deg);
}
 
/* ── Dropdown menu ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(16, 8, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 100;
}
 
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
 
.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
 
.nav-dropdown__item:hover {
  background: rgba(124,58,237,0.25);
  color: #fff;
}
 
.nav-dropdown__icon {
  width: 28px;
  height: 28px;
  background: rgba(124,58,237,0.20);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}
 
.nav-item {
  position: relative;
}
 
/* ── Right side ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  opacity: 0;
  animation: navFadeIn 0.6s 0.3s ease forwards;
}
 
/* Social icons */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}
 
.nav-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  flex-shrink: 0;
}
 
.nav-social:hover {
  background: rgba(124,58,237,0.30);
  border-color: rgba(124,58,237,0.50);
  color: #fff;
  transform: translateY(-2px);
}
 
.nav-social svg {
  width: 15px;
  height: 15px;
  display: block;
}
 
/* Contact button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(124,58,237,0.50);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
 
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.65);
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
}
 
/* ── Mobile hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}
 
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
 
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* ── Mobile drawer ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  z-index: 999;
  background: rgba(10, 5, 28, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
  pointer-events: none;
}
 
.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
 
.nav-mobile__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  border: none;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  width: 100%;
  text-align: left;
}
 
.nav-mobile__link:hover,
.nav-mobile__link.active { background: rgba(124,58,237,0.15); color: #fff; }
 
.nav-mobile__sub {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 4px 16px;
}
 
.nav-mobile__sub.open { display: flex; }
 
.nav-mobile__sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
 
.nav-mobile__sub-link:hover { background: rgba(124,58,237,0.18); color: #fff; }
 
/* Mobile bottom row */
.nav-mobile__bottom {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.nav-mobile__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
 
.nav-mobile__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(124,58,237,0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
 
.nav-mobile__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.60);
}
 
/* ── Animations ── */
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-pill { display: none; }
  .nav-socials { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
}
 
@media (max-width: 480px) {
  .nav-bar { padding: 10px 16px; }
}

/* --- Hero Banner Container with Full Background Image --- */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 40px;
    
    /* Applies your unified graphic globally across the container panel */
    background-image: url('/images/bannerbg.webp');
    background-repeat: no-repeat;
    /* background-position: center right; */
    background-size: cover;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: center;
    flex-grow: 1;
}

/* --- Content Block Positioning --- */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 5;
}

.tagline {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
}

.highlight-text {
    color: #6366f1; /* Vibrant brand color */
    display: inline-block;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8; /* Muted contrast slate gray */
    max-width: 540px;
}

/* --- UI Buttons & Interaction Transitions --- */
.cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary {
    background-color: #6366f1;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn i {
    font-size: 15px;
    transition: transform 0.2s ease;
}

.btn-secondary:hover i {
    transform: translateX(4px);
}

/* --- Bottom Stats Panel Row --- */
.stats-bar {
    background: rgba(15, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin-top: 40px;
    z-index: 10;
    width:90%;
    margin-left:auto;
    margin-right: auto;

}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.12);
}

.stat-icon-box {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.stat-info p {
    font-size: 12px;
    color: #94a3b8;
}

/* --- Load Animations --- */
.animate-fade-in {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(35px);
    animation: fadeInUp 0.9s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Fully Responsive Mobile-Friendly Media Queries --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .stat-item:nth-child(2)::after {
        display: none; /* Hide alternating dividers for 2-column grids */
    }
}

@media (max-width: 768px) {
    .hero-banner {
        background: linear-gradient(rgba(11, 11, 14, 0.88), rgba(11, 11, 14, 0.88)), 
                    url('bannerbg.webp') no-repeat center center;
        background-size: cover;
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-spacer {
        display: none;
    }

    .tagline, .hero-description {
        margin: 0 auto;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* --- UPDATED: Forces clean 2x2 grid layout on mobile screens --- */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr); 
        gap: 24px;
        padding: 24px;
    }
    
    /* Strips all default desktop divider lines */
    .stat-item::after {
        display: none !important;
    }
    
    /* Centers the item alignments inside their 2x2 grid segments */
    .stat-item {
        justify-content: center;
        padding-left: 0; 
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }
    .stats-bar {
        gap: 20px 12px; /* Pulls elements slightly closer horizontally */
        padding: 20px 16px;
    }
    .stat-info h3 {
        font-size: 18px; /* Slightly downscales number size so text never wraps */
    }
    .stat-icon-box {
        font-size: 22px;
    }
}

  /* ═══════════════════════════
     SECTION
  ═══════════════════════════ */
  .wc {
    width: 100%;
    background: var(--white);
    padding: 48px 0 0;
  }
 
  .wc__inner {
    /* max-width: 1120px; */
    margin: 0 auto;
    padding: 0 40px;
  }
 
  /* ═══════════════════════════
     HEADER
  ═══════════════════════════ */
  .wc__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 0;
    margin-bottom: 36px;
    align-items: start;
  }
 
  .wc__title {
    font-size: clamp(30px, 3.8vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-text);
    letter-spacing: -0.025em;
    grid-column: 1;
    grid-row: 1;
  }
 
  .wc__title .pu { color: var(--purple); }
 
  .wc__desc {
    font-size: clamp(13px, 1.2vw, 15px);
    color: var(--body-text);
    line-height: 1.72;
    grid-column: 2;
    grid-row: 1;
    padding-top: 6px;
    /* Align vertically with top of title */
    align-self: start;
  }
 
  .wc__sub {
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 700;
    color: var(--dark-text);
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 18px;
  }
 
  /* ═══════════════════════════
     CARDS
  ═══════════════════════════ */
  .wc__cards {
    display: grid;
    grid-template-columns: 1.22fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
 
  /* --- Base card --- */
  .card {
    background: var(--purple-card);
    border-radius: var(--radius);
    padding: 26px 24px 0;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity   0.55s var(--t),
      transform 0.55s var(--t),
      box-shadow 0.32s ease;
  }
  .card:nth-child(1) { transition-delay: 0.04s; }
  .card:nth-child(2) { transition-delay: 0.15s; }
  .card:nth-child(3) { transition-delay: 0.26s; }
  .card.in { opacity:1; transform:translateY(0); }
 
  .card:hover {
    box-shadow: 0 10px 36px rgba(106,31,208,0.18);
    transform: translateY(-4px) scale(1.012);
  }
  /* keep in + hover combined */
  .card.in:hover { opacity:1; }
 
  .card__title {
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.30;
    margin-bottom: 12px;
  }
 
  .card__body {
    font-size: clamp(11.5px, 1.05vw, 13.5px);
    color: var(--body-text);
    line-height: 1.68;
    margin-bottom: 20px;
  }
 
  /* --- Featured card with image --- */
  /* Featured card: left=text, right=image side-by-side */
 .card--feat {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 26px 0 0 24px;
  overflow: hidden;
  background-image: url('/images/induscardbf.webp'); /* 👈 apni image path */
  background-size: cover;
  background-position: center;
  position: relative;
}
 
/* ADD THIS — overlay for text visibility */
.card--feat::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(10, 5, 30, 0.65) 0%,
    rgba(10, 5, 30, 0.30) 100%
  ); */
  z-index: 0;
  border-radius: var(--radius);
}

/* Text upar rahega overlay ke */
.card--feat .card__text {
  position: relative;
  z-index: 1;
}
  .card--feat .card__text {
    flex: 1;
    min-width: 0;
    padding-right: 14px;
    padding-bottom: 26px;
  }
 
  /* Real photo — right side, fills full card height */
  .card--feat .card__img {
    width: 50%;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0 var(--radius) var(--radius) 0;
    align-self: stretch;
    margin-top: -26px;
    transition: transform 0.5s ease;
  }
  .card--feat:hover .card__img { transform: scale(1.04); }
 
  /* Fallback CSS visual */
  .card__img-fallback {
    width: 50%;
    flex-shrink: 0;
    background: linear-gradient(145deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 0 var(--radius) var(--radius) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    margin-top: -26px;
    transition: transform 0.5s ease;
  }
  .card--feat:hover .card__img-fallback { transform: scale(1.03); }
 
  .fb { border-radius: 4px 7px 7px 4px; transition: transform 0.3s ease; }
  .card--feat:hover .fb:nth-child(1) { transform: rotate(-4deg) translateY(-6px); }
  .card--feat:hover .fb:nth-child(2) { transform: rotate(0deg)  translateY(-10px); transition-delay:.06s; }
  .card--feat:hover .fb:nth-child(3) { transform: rotate(4deg)  translateY(-6px);  transition-delay:.12s; }
  .fb1 { width:22px; height:72px; background:#c4b5fd; }
  .fb2 { width:26px; height:88px; background:#a78bfa; }
  .fb3 { width:18px; height:62px; background:#ddd6fe; }
  .flap { margin-left:12px; }
  .fls  { width:64px; height:42px; background:#1e1b4b; border-radius:4px 4px 0 0; border:2px solid #a78bfa; }
  .flb  { width:72px; height:5px;  background:#a78bfa; border-radius:0 0 3px 3px; }
 
  /* --- Icon cards --- */
  .card--ico {
    padding-bottom: 28px;
  }
 
  .card__icon {
    width: 54px;
    height: 54px;
    background: var(--purple-icon);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background var(--t), transform var(--t);
  }
 
  .card:hover .card__icon {
    background: var(--purple);
    transform: scale(1.08) rotate(-5deg);
  }
 
  .card__icon svg { width: 26px; height: 26px; }
 
  .card:hover .card__icon svg [data-s] {
    stroke: white;
  }
 
  /* ═══════════════════════════
     BANNER
  ═══════════════════════════ */
  .wc__banner {
    background: var(--dark-banner);
    border-radius: 18px;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px 48px;
    align-items: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
  }
  .wc__banner.in { opacity:1; transform:translateY(0); }
 
  .ban__title {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
  }
 
  .ban__body {
    font-size: clamp(12px, 1.05vw, 14px);
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    max-width: 420px;
  }
 
  .ban__stats {
    display: flex;
    gap: 44px;
    align-items: center;
    flex-shrink: 0;
  }
 
  .bst__val {
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
  }
 
  .bst__val .star { color: #f59e0b; font-size: 0.82em; }
 
  .bst__lbl {
    font-size: clamp(10px, 0.85vw, 12px);
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    margin-top: 3px;
  }
 
  /* ═══════════════════════════
     HEADER REVEAL ANIMATIONS
  ═══════════════════════════ */
  .wc__title, .wc__desc, .wc__sub {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .wc__title { transition-delay: 0s; }
  .wc__desc  { transition-delay: 0.10s; }
  .wc__sub   { transition-delay: 0.20s; }
 
  .wc.in .wc__title,
  .wc.in .wc__desc,
  .wc.in .wc__sub { opacity:1; transform:translateY(0); }
 
  /* purple underline sweep */
  .wc__title .pu {
    position: relative;
    display: inline;
  }
  .wc__title .pu::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    height: 2px; width: 0;
    background: var(--purple);
    border-radius: 2px;
    transition: width 0.7s 0.6s cubic-bezier(0.22,1,0.36,1);
  }
  .wc.in .wc__title .pu::after { width: 100%; }
 
  /* ═══════════════════════════
     RESPONSIVE
  ═══════════════════════════ */
  @media (max-width: 960px) {
    .wc__head { grid-template-columns: 1fr; column-gap: 0; }
    .wc__desc { grid-column: 1; grid-row: 2; margin-top: 14px; }
    .wc__sub  { grid-row: 3; }
    .wc__cards { grid-template-columns: 1fr 1fr; }
    .card--feat { grid-column: 1 / -1; }
  }
 
  @media (max-width: 640px) {
    .wc__inner { padding: 0 20px; }
    .wc { padding: 36px 0 0; }
    .wc__cards { grid-template-columns: 1fr; }
 
    /* Stack image below text on mobile */
    .card--feat {
      flex-direction: column;
      padding: 22px 20px 0;
    }
    .card--feat .card__text { padding-right: 0; padding-bottom: 16px; }
    .card--feat .card__img,
    .card--feat .card__img-fallback {
      width: calc(100% + 40px);
      margin: 0 -20px 0;
      height: 160px;
      border-radius: 0 0 var(--radius) var(--radius);
      flex-shrink: unset;
      align-self: auto;
    }
 
    .wc__banner { grid-template-columns: 1fr; padding: 24px 22px; border-radius: 14px; }
    .ban__stats { gap: 24px; flex-wrap: wrap; }
  }
 
  @media (max-width: 400px) {
    .ban__stats { gap: 16px; }
  }

   /* ---------- Section ---------- */
  .cp-section {
    width: 100%;
    background: #ffffff;
    padding: 64px 0 72px;
  }
 
  .cp-inner {
    /* max-width: 1140px; */
    margin: 0 auto;
    padding: 0 40px;
  }
 
  /* ---------- Heading ---------- */
  .cp-head {
    text-align: center;
    margin-bottom: 48px;
    /* reveal */
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .cp-head.cp-in { opacity: 1; transform: translateY(0); }
 
  .cp-title {
    font-size: clamp(26px, 3.6vw, 46px);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.025em;
    line-height: 1.18;
    margin-bottom: 14px;
  }
 
  .cp-title .pu { color: #7c3aed; }
 
  .cp-desc {
    font-size: clamp(13px, 1.2vw, 16px);
    color: #555;
    font-weight: 400;
  }
 
  /* ---------- Cards Grid ---------- */
  .cp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
 
  /* ---------- Single Card ---------- */
.cp-card {
  background: #eeeaf8;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;        /* ADD */
  min-height: 380px;         /* ADD */
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity   .6s ease,
    transform .6s ease,
    box-shadow .3s ease;
}
 
  .cp-card.cp-in {
    opacity: 1;
    transform: translateY(0);
  }
 
  .cp-card:hover {
    box-shadow: 0 14px 40px rgba(124, 58, 237, 0.18);
    transform: translateY(-5px) scale(1.012);
  }
  /* keep visible when hovered */
  .cp-card.cp-in:hover { opacity: 1; }
 
  /* top text area */
.cp-card__top {
  padding: 28px 26px 20px;
  flex-shrink: 0;
  position: relative;        /* ADD */
  z-index: 2;                /* ADD */
}
 
  .cp-card__title {
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
  }
 
  .cp-card__body {
    font-size: clamp(12px, 1.05vw, 13.5px);
    color: #555;
    line-height: 1.68;
    margin-bottom: 20px;
  }
 
  /* pill button */
  .cp-card__btn {
    display: inline-block;
    background: #fff;
    color: #333;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(11px, 0.95vw, 13px);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.10);
    transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
  }
 
  .cp-card__btn:hover {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(124,58,237,0.35);
  }
 
  /* image container — fills remaining card height */
.cp-card__img-wrap {
  flex: 1;
  min-height: 120px;
  position: relative;
  z-index: 0;
}
 
.cp-card__img {
  position: absolute;        /* changed */
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center bottom;
  display: block;
  transition: transform .5s ease;
  z-index: 0;
}
 
 .cp-card:hover .cp-card__img {
  transform: scale(1.05);
}

.cp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to bottom,
    rgba(238, 234, 248, 0.85) 0%,
    rgba(238, 234, 248, 0.60) 50%,
    rgba(238, 234, 248, 0.10) 100%
  ); */
  z-index: 1;
  border-radius: 20px;
}
 
  /* ── CSS Fallbacks when image not loaded ── */
  /* UG: graduation cap shape */
 .cp-fallback-ug  { background: linear-gradient(160deg, #c4b5fd 0%, #7c3aed 100%); }
  .cp-fallback-ug::after {
    content: '🎓';
    font-size: 80px;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  }
 
  /* PG: books + diploma */
 .cp-fallback-pg  { background: linear-gradient(160deg, #ddd6fe 0%, #6d28d9 100%); }
  .cp-fallback-pg::after {
    content: '📚';
    font-size: 80px;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  }
 
  /* MBA: briefcase */
.cp-fallback-mba { background: linear-gradient(160deg, #c4b5fd 0%, #5b21b6 100%); }
  .cp-fallback-mba::after {
    content: '💼';
    font-size: 80px;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .cp-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
    .cp-card:last-child { grid-column: 1 / -1; flex-direction: row; }
    .cp-card:last-child .cp-card__img-wrap {
      min-height: 180px;
      flex: 0 0 42%;
      border-radius: 0;
    }
    .cp-card:last-child .cp-card__img {
      object-position: center;
    }
  }
 
  @media (max-width: 640px) {
    .cp-section { padding: 48px 0 56px; }
    .cp-inner { padding: 0 20px; }
    .cp-head { margin-bottom: 32px; }
    .cp-cards { grid-template-columns: 1fr; gap: 14px; }
    .cp-card:last-child { flex-direction: column; }
    .cp-card:last-child .cp-card__img-wrap {
      flex: 1;
      min-height: 200px;
    }
    .cp-card__img-wrap { min-height: 180px; }
  }

  /* ── Section ── */
.tc-section {
  width: 100%;
  background: #fff;
  padding: 28px 0 36px;
  overflow: hidden;
}
 
  .tc-inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 40px;
  }
 
  /* ── Heading ── */
.tc-head {
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
  .tc-head.tc-in { opacity: 1; transform: translateY(0); }
 
.tc-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
  .tc-pu { color: #7c3aed; }
 
  .tc-desc {
    font-size: clamp(13px, 1.2vw, 15px);
    color: #666;
  }
 
  /* ── Tabs ── */
  .tc-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s .12s ease, transform .6s .12s ease;
  }
  .tc-tabs.tc-in { opacity: 1; transform: translateY(0); }
 
  .tc-tab {
    padding: 8px 22px;
    border-radius: 999px;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #444;
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .22s ease;
  }
 
  .tc-tab:hover {
    border-color: #7c3aed;
    color: #7c3aed;
  }
 
  .tc-tab--active {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(124,58,237,0.40);
  }
 
  /* ── Slider wrapper ── */
  .tc-slider-wrap {
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s .24s ease, transform .6s .24s ease;
  }
  .tc-slider-wrap.tc-in { opacity: 1; transform: translateY(0); }
 
  .tc-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    /* hide scrollbar */
    scrollbar-width: none;
  }
  .tc-slider::-webkit-scrollbar { display: none; }
 
  /* ── Card ── */
.tc-card {
 flex: 0 0 calc(25% - 15px);
  min-width: 160px;
  max-width: 220px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   .55s ease,
    transform .55s ease,
    box-shadow .28s ease;
}
  .tc-card.tc-in { opacity: 1; transform: translateY(0); }
  .tc-card.tc-hidden { display: none; }
 
  .tc-card:hover {
    box-shadow: 0 16px 48px rgba(124,58,237,0.25);
    transform: translateY(-5px) scale(1.015);
  }
  .tc-card.tc-in:hover { opacity: 1; }
 
  /* selected/active card outline (like image 1 card 03) */
  .tc-card.tc-selected {
    box-shadow: 0 0 0 2.5px #7c3aed, 0 16px 48px rgba(124,58,237,0.30);
  }
 
  /* ── Card background image ── */
  .tc-card__bg {
    position: absolute;
    inset: 0;
    background: #1a103a;
  }
 
  .tc-card__bg img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
  }
  .tc-card:hover .tc-card__bg img { transform: scale(1.07); }
 
  /* dark gradient overlay always */
.tc-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}
.tc-card:hover .tc-card__bg::after {
  background: rgba(10,5,30,0.45);
  transition: background .35s ease;
}
 
  /* ── Card number ── */
  .tc-card__num {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }
 
  /* ── Card bottom area ── */
  .tc-card__bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    padding: 0;
  }
 
  /* Default state: only title visible */
.tc-card__bottom-default {
  padding: 12px 14px 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  transition: opacity .3s ease, transform .3s ease;
}
  /* Hover state: title + description */
.tc-card__hover {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px 16px;
  background: transparent;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
 
  .tc-card:hover .tc-card__bottom-default {
    opacity: 0;
    transform: translateY(-6px);
  }
 
  .tc-card:hover .tc-card__hover {
    opacity: 1;
    transform: translateY(0);
  }
 
  /* Touch/mobile: tap to reveal */
  .tc-card.tc-tapped .tc-card__bottom-default {
    opacity: 0;
    transform: translateY(-6px);
  }
  .tc-card.tc-tapped .tc-card__hover {
    opacity: 1;
    transform: translateY(0);
  }
 
  .tc-card__title {
    font-size: clamp(13px, 1.15vw, 15px);
    font-weight: 700;
    color: #fff;
    line-height: 1.30;
    margin-bottom: 0;
  }
 
  .tc-card__desc {
    font-size: clamp(11px, 0.95vw, 12.5px);
    color: rgba(255,255,255,0.82);
    line-height: 1.60;
    margin-top: 8px;
  }
 
  /* ── CSS fallback bg colours when image missing ── */
  .tc-fb { background: #1a103a !important; }
  .tc-fb--1 { background: linear-gradient(160deg,#4c1d95,#7c3aed) !important; }
  .tc-fb--2 { background: linear-gradient(160deg,#1e1b4b,#4338ca) !important; }
  .tc-fb--3 { background: linear-gradient(160deg,#312e81,#6d28d9) !important; }
  .tc-fb--4 { background: linear-gradient(160deg,#2e1065,#5b21b6) !important; }
 
  /* ── Arrow buttons ── */
  .tc-arrow {
    display: none; /* shown by JS when needed */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(124,58,237,0.35);
    background: #fff;
    color: #7c3aed;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: background .2s, color .2s, transform .2s;
    line-height: 1;
  }
  .tc-arrow:hover { background: #7c3aed; color: #fff; }
  .tc-arrow--prev { left: -20px; }
  .tc-arrow--next { right: -20px; }
 
  /* ── Dots ── */
  .tc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }
 
  .tc-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
  }
  .tc-dot--active {
    background: #7c3aed;
    transform: scale(1.35);
  }
 
  /* ── Responsive ── */
  @media (max-width: 1024px) {
    .tc-card { flex: 0 0 calc(33.33% - 14px); max-width: 200px; }
  }
 
  @media (max-width: 768px) {
  .tc-inner { padding: 0 20px; }
  .tc-section { padding: 36px 0 44px; }
  .tc-card { flex: 0 0 calc(50% - 10px); max-width: 180px; }
  .tc-arrow--prev { left: -12px; }
  .tc-arrow--next { right: -12px; }
  }
 
  @media (max-width: 480px) {
  .tc-card { flex: 0 0 70vw; max-width: 220px; }
  .tc-tabs { gap: 6px; }
  .tc-tab { padding: 6px 14px; font-size: 12px; }
}

   /* ---------- Section Shell ---------- */
  .career-section {
    position: relative;
     min-height: auto;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
 
    /* *** REPLACE THIS URL WITH YOUR OWN BACKGROUND IMAGE *** */
    background-image: url('/images/frombg.webp');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
  }
 
  /* Dark purple overlay */
  .career-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      rgba(20, 10, 55, 0.88) 0%,
      rgba(40, 20, 90, 0.82) 50%,
      rgba(20, 10, 55, 0.75) 100%
    );
    z-index: 0;
  }
 
  /* Subtle animated radial pulse */
  .career-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(120, 80, 255, 0.18) 0%, transparent 70%);
    animation: pulse-glow 6s ease-in-out infinite alternate;
  }
 
  @keyframes pulse-glow {
    from { opacity: 0.6; transform: scale(1); }
    to   { opacity: 1;   transform: scale(1.05); }
  }
 
  /* ---------- Layout Container ---------- */
  .career-container {
    position: relative;
    z-index: 1;
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
   padding: 50px 40px; 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
 
  /* ---------- LEFT COPY ---------- */
  .career-copy { display: flex; flex-direction: column; gap: 20px; }
 
  /* Badge */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
    width: fit-content;
    letter-spacing: 0.3px;
  }
 
  .badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 6px #a78bfa;
    animation: blink 1.8s ease-in-out infinite;
  }
 
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.35; }
  }
 
  /* Heading */
  .career-heading {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
  }
 
  .accent {
    background: linear-gradient(90deg, #a78bfa, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
 
  /* Sub text */
  .career-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin: 0;
    max-width: 440px;
  }
 
  /* Link */
  .career-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a78bfa;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    position: relative;
    transition: gap 0.3s ease, color 0.3s ease;
  }
 
  .career-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: #a78bfa;
    border-radius: 2px;
    transition: width 0.35s ease;
  }
 
  .career-link:hover { gap: 14px; color: #c4b5fd; }
  .career-link:hover::after { width: 100%; }
 
  .career-link svg { transition: transform 0.3s ease; }
  .career-link:hover svg { transform: translateX(4px); }
 
  /* ---------- RIGHT CARD ---------- */
  .career-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 24px;
    padding: 28px 28px;
    box-shadow:
      0 8px 32px rgba(0,0,0,0.35),
      inset 0 1px 0 rgba(255,255,255,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
 
  .career-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 20px 50px rgba(0,0,0,0.4),
      inset 0 1px 0 rgba(255,255,255,0.15);
  }
 
  .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 6px;
    letter-spacing: -0.2px;
  }
 
  .card-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-align: center;
    margin: 0 0 28px;
  }
 
  /* ---------- FORM ---------- */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
 
  .form-group { display: flex; flex-direction: column; gap: 6px; }
 
  .form-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }
 
  .input-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
 
  .input-icon {
    position: absolute;
    left: 12px;
    width: 15px; height: 15px;
    stroke: rgba(167, 139, 250, 0.7);
    pointer-events: none;
    transition: stroke 0.25s;
  }
 
  .form-input {
    width: 100%;
    padding: 11px 14px 11px 36px;
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
  }
 
  .form-input::placeholder { color: rgba(255,255,255,0.35); }
 
  .form-input:focus {
    border-color: #a78bfa;
    background: rgba(167, 139, 250, 0.2);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.18);
  }
 
  .form-input:focus + .input-icon,
  .input-wrap:focus-within .input-icon { stroke: #a78bfa; }
 
  /* Floating label animation on focus */
  .form-input:focus ~ .form-label,
  .form-input:not(:placeholder-shown) ~ .form-label { color: #a78bfa; }
 
  /* ---------- CTA BUTTON ---------- */
  .cta-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #7c3aed 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
  }
 
  .cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }
 
  .cta-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.65);
  }
 
  .cta-btn:hover::before { opacity: 1; }
  .cta-btn:active { transform: translateY(0) scale(0.98); }
 
  /* Ripple effect */
  .cta-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: scale(0);
    animation: ripple-out 0.6s linear;
    pointer-events: none;
  }
 
  @keyframes ripple-out {
    to { transform: scale(4); opacity: 0; }
  }
 
  .btn-text { position: relative; z-index: 1; }
 
  .btn-arrow {
    position: relative; z-index: 1;
    transition: transform 0.3s ease;
  }
  .cta-btn:hover .btn-arrow { transform: translateX(4px); }
 
  .btn-loader {
    display: none;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
  }
 
  @keyframes spin { to { transform: rotate(360deg); } }
 
  .cta-btn.loading .btn-text { display: none; }
  .cta-btn.loading .btn-arrow { display: none; }
  .cta-btn.loading .btn-loader { display: block; }
 
  /* Privacy note */
  .privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.4);
    margin: 12px 0 0;
  }
 
  .privacy-note svg { stroke: rgba(255,255,255,0.4); }
 
  /* ---------- ENTRANCE ANIMATIONS ---------- */
  [data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
 
  [data-animate].visible { opacity: 1; transform: translateY(0); }
 
  [data-animate-delay="0"] { transition-delay: 0.1s; }
  [data-animate-delay="1"] { transition-delay: 0.2s; }
  [data-animate-delay="2"] { transition-delay: 0.35s; }
  [data-animate-delay="3"] { transition-delay: 0.5s; }
  [data-animate-delay="4"] { transition-delay: 0.65s; }
 
  .career-card[data-animate] { transition-delay: 0.25s; }
 
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px) {
    .career-container {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 36px 28px;
    }
 
    .career-section { background-attachment: scroll; }
 
    .career-copy { text-align: center; align-items: center; }
 
    .career-sub { max-width: 100%; }
 
    .career-card { padding: 32px 24px; }
  }
 
  @media (max-width: 560px) {
    .form-grid { grid-template-columns: 1fr; }
 
    .career-card { padding: 28px 18px; border-radius: 18px; }
 
    .career-container { padding: 50px 16px; }
 
    .cta-btn { font-size: 12px; letter-spacing: 0.7px; }
  }
 
  @media (max-width: 380px) {
    .career-heading { font-size: 28px; }
    .badge { font-size: 12px; }
  }


  .reviews-section {
    background: #fff;
    padding: 70px 0 80px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
  }
 
  /* ---------- Header ---------- */
  .reviews-header {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
 
  .reviews-header.visible {
    opacity: 1;
    transform: translateY(0);
  }
 
  .reviews-title {
    font-size: clamp(26px, 4.5vw, 52px);
    font-weight: 800;
    color: #0f0f1a;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }
 
  .purple { color: #7c3aed; }
 
  .reviews-sub {
    font-size: 15px;
    color: #6b7280;
    font-weight: 400;
  }
 
  /* ---------- Slider ---------- */
  .slider-outer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    /* Edge fade */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }
 
  .slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
  }
 
  /* Row 1: moves left */
  #track1 { animation: slideLeft 35s linear infinite; }
  /* Row 2: moves right */
  #track2 { animation: slideRight 40s linear infinite; }
 
  @keyframes slideLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
 
  @keyframes slideRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }
 
  /* Pause on hover */
  .slider-outer:hover #track1,
  .slider-outer:hover #track2 { animation-play-state: paused; }
 
  /* ---------- Card ---------- */
  .review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 22px 18px;
    width: 290px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }
 
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.12);
    border-color: #c4b5fd;
  }
 
  /* Stars */
  .stars {
    display: flex;
    gap: 3px;
  }
 
  .stars svg {
    width: 15px; height: 15px;
    fill: #f59e0b;
  }
 
  /* Review text */
  .review-text {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.7;
    flex: 1;
  }
 
  /* Author row */
  .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #f3f4f6;
    padding-top: 12px;
    margin-top: auto;
  }
 
  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ede9fe;
    flex-shrink: 0;
    background: #ede9fe;
  }
 
  /* Fallback initials avatar */
  .avatar-init {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.5px;
  }
 
  .author-info { display: flex; flex-direction: column; gap: 1px; }
 
  .author-name {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
  }
 
  .author-role {
    font-size: 11.5px;
    color: #9ca3af;
    font-weight: 400;
  }
 
  /* ---------- Responsive ---------- */
  @media (max-width: 768px) {
    .reviews-section { padding: 50px 0 60px; }
    .review-card { width: 250px; padding: 18px 18px 14px; }
    .reviews-title { font-size: 26px; }
  }
 
  @media (max-width: 480px) {
    .review-card { width: 220px; }
    .reviews-sub { font-size: 13px; }
    /* Slower on mobile for readability */
    #track1 { animation-duration: 28s; }
    #track2 { animation-duration: 34s; }
  }
 
  /* Reduce motion */
  @media (prefers-reduced-motion: reduce) {
    #track1, #track2 { animation: none; }
    .slider-track { flex-wrap: wrap; width: 100%; justify-content: center; padding: 0 20px; }
    .review-card { width: calc(50% - 10px); }
  }

   /* *** REPLACE THIS URL WITH YOUR OWN BACKGROUND IMAGE *** */
  .faq-section {
    font-family: 'Poppins', sans-serif;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-image: url('/images/faqbg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
  }
 
  /* dark overlay on bg */
  .faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 30, 0.55);
    z-index: 0;
  }
 
  /* ---- Glassmorphism Card ---- */
  .faq-card {
    position: relative;
    z-index: 1;
    width: 80%;
    /* max-width: 780px; */
    background: rgba(20, 16, 50, 0.72);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 52px 52px 44px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
 
    /* entrance animation */
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(.22,1,.36,1),
                transform 0.8s cubic-bezier(.22,1,.36,1);
  }
 
  .faq-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
 
  /* ---- Heading ---- */
  .faq-head { margin-bottom: 36px; }
 
  .faq-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }
 
  .faq-sub {
    font-size: 14.5px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
  }
 
  /* ---- Accordion list ---- */
  .faq-list { display: flex; flex-direction: column; gap: 10px; }
 
  /* ---- Each item ---- */
  .faq-item {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }
 
  .faq-item:hover { box-shadow: 0 4px 20px rgba(124,58,237,0.18); }
 
  /* Question button */
  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #111827;
    transition: color 0.2s;
  }
 
  .faq-q:hover { color: #7c3aed; }
 
  /* Icon circle */
  .faq-icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.4s cubic-bezier(.22,1,.36,1);
  }
 
  .faq-icon svg {
    width: 14px; height: 14px;
    stroke: #fff;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1);
  }
 
  /* Active state icon: + → × (rotate 45°) */
  .faq-item.active .faq-icon { background: #6d28d9; }
  .faq-item.active .faq-icon svg { transform: rotate(45deg); }
 
  /* Answer panel */
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(.22,1,.36,1),
                padding 0.3s ease;
  }
 
  .faq-a p {
    padding: 0 20px 18px;
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.75;
  }
 
  /* Open state */
  .faq-item.active .faq-a { max-height: 300px; }
 
  /* ---- Responsive ---- */
  @media (max-width: 860px) {
    .faq-card { padding: 40px 36px 36px;
    width:100%
    }
    .faq-section { background-attachment: scroll; }
  }
 
  @media (max-width: 600px) {
    .faq-card { padding: 32px 20px 28px; border-radius: 18px; }
    .faq-title { font-size: 26px; }
    .faq-q { font-size: 13.5px; padding: 16px 16px; }
    .faq-a p { padding: 0 16px 16px; font-size: 13px; }
    .faq-icon { width: 26px; height: 26px; }
    .faq-icon svg { width: 12px; height: 12px; }
  } 
 
  @media (max-width: 380px) {
    .faq-title { font-size: 22px; }
    .faq-card { padding: 24px 14px 22px; }
  }


   .ft {
    width: 100%;
    background: linear-gradient(135deg, #1a0a4a 0%, #2d1080 40%, #1a0a4a 100%);
    font-family: 'Poppins', sans-serif;
    padding-top: 52px;
    position: relative;
    overflow: hidden;
  }
 
  /* Subtle top border glow */
  .ft::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7c3aed, #06b6d4, #7c3aed, transparent);
    animation: borderGlow 4s ease-in-out infinite;
  }
 
  @keyframes borderGlow {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
  }
 
  /* ---- Inner grid ---- */
  .ft__inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 40px 40px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
  }
 
  /* ---- Entrance animation ---- */
  [data-fa] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  [data-fa].ft-in { opacity: 1; transform: translateY(0); }
  [data-fa-delay="1"] { transition-delay: 0.1s; }
  [data-fa-delay="2"] { transition-delay: 0.2s; }
  [data-fa-delay="3"] { transition-delay: 0.3s; }
 
  /* ---- Brand col ---- */
  .ft__logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
    display: block;
  }
 
  .ft__logo-fallback {
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }
 
  .ft__logo-u {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
  }
 
  .ft__logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }
 
  .ft__logo-text small {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
  }
 
  .ft__desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 300px;
  }
 
  /* Social icons */
  .ft__social {
    display: flex;
    gap: 12px;
  }
 
  .ft__soc-link {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  }
 
  .ft__soc-link svg { width: 16px; height: 16px; }
 
  .ft__soc-link:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
    transform: translateY(-3px);
  }
 
  /* ---- Nav cols ---- */
  .ft__col-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }
 
  .ft__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
 
  .ft__links a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.60);
    text-decoration: none;
    transition: color 0.22s ease, padding-left 0.22s ease;
    display: inline-block;
  }
 
  .ft__links a:hover {
    color: #fff;
    padding-left: 5px;
  }
 
  /* ---- Contact col ---- */
  .ft__contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
 
  .ft__contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
  }
 
  .ft__contact-list a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.22s ease;
  }
 
  .ft__contact-list a:hover { color: #fff; }
 
  .ft__ci {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s ease;
  }
 
  .ft__ci svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.75); }
 
  .ft__contact-list li:hover .ft__ci {
    background: rgba(124,58,237,0.4);
  }
 
  /* ---- Bottom bar ---- */
  .ft__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 40px;
    text-align: left;
    max-width: 100%;
  }
 
  .ft__bottom p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    /* max-width: 1200px; */
    margin: 0 auto;
  }
 
  /* ---- Responsive ---- */
  @media (max-width: 1024px) {
    .ft__inner {
      grid-template-columns: 1fr 1fr;
      gap: 36px 40px;
    }
    .ft__brand { grid-column: 1 / -1; }
    .ft__desc { max-width: 100%; }
  }
 
  @media (max-width: 640px) {
    .ft__inner {
      grid-template-columns: 1fr 1fr;
      padding: 0 20px 36px;
      gap: 28px 24px;
    }
    .ft__brand { grid-column: 1 / -1; }
    .ft__bottom { padding: 14px 20px; }
  }
 
  @media (max-width: 420px) {
    .ft__inner {
      grid-template-columns: 1fr;
    }
    .ft__col--contact { grid-column: 1; }
  }

.univ-section {
    width: 100%;
    background: #fff;
    padding: 28px 0 32px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid #2563eb;    /* blue top border like screenshot */
  }
 
  /* ---- Heading ---- */
  .univ-head {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .univ-head.u-in { opacity: 1; transform: translateY(0); }
 
  .univ-label {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }
 
  /* ---- Track outer: clip + fade edges ---- */
  .univ-track-outer {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s .1s ease, transform .5s .1s ease;
 
    /* Edge fade */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  }
  .univ-track-outer.u-in { opacity: 1; transform: translateY(0); }
 
  /* ---- Scrolling track ---- */
  .univ-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 6px 0 10px;
    cursor: grab;
    user-select: none;
    will-change: transform;
  }
 
  .univ-track.is-dragging { cursor: grabbing; }
 
  /* ---- Logo card ---- */
  .univ-card {
    flex-shrink: 0;
    height: 68px;
    min-width: 180px;
    max-width: 240px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 50px;          /* pill shape like screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  }
 
  .univ-card:hover {
    border-color: #c4b5fd;
    box-shadow: 0 4px 20px rgba(124,58,237,0.12);
    transform: translateY(-2px);
  }
 
  .univ-card img {
    max-height: 44px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    display: block;
    pointer-events: none;
  }
 
  /* Fallback text if image missing */
  .univ-card__name {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    text-align: center;
    white-space: nowrap;
  }
 
  /* ---- Responsive ---- */
  @media (max-width: 768px) {
    .univ-card { height: 58px; min-width: 150px; padding: 8px 18px; }
    .univ-card img { max-height: 36px; max-width: 120px; }
    .univ-section { padding: 22px 0 26px; }
  }
 
  @media (max-width: 480px) {
    .univ-card { height: 52px; min-width: 130px; padding: 6px 14px; }
    .univ-card img { max-height: 32px; }
  }
  
  
  /* Paste in <style> */

.scroll-top,
.scroll-bottom {
  position: fixed;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124,58,237,0.50);
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

.scroll-top  { bottom: 80px; }
.scroll-bottom { bottom: 24px; }

.scroll-top.visible,
.scroll-bottom.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover,
.scroll-bottom:hover {
  box-shadow: 0 8px 28px rgba(124,58,237,0.70);
  transform: translateY(-3px);
}

.scroll-top:active,
.scroll-bottom:active {
  transform: translateY(0);
}

/* Hide bottom btn when already at bottom */
.scroll-bottom.at-bottom { opacity: 0.3; pointer-events: none; }

@media (max-width: 480px) {
  .scroll-top  { right: 16px; bottom: 72px; width: 40px; height: 40px; }
  .scroll-bottom { right: 16px; bottom: 20px; width: 40px; height: 40px; }
}
  