 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --navy: #0f2060;
    --gold: #f5a623;
    --gold-dark: #e09510;
    --white: #ffffff;
    --page-bg: #dde2ed;
  }
 
  body {
    font-family: 'Open Sans', sans-serif;
    background: var(--page-bg);
    color: var(--white);
    overflow-x: hidden;
  }
 
  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes scaleUp {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes bannerSlide {
    from { opacity: 0; transform: translateY(-100%); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
  }
  @keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.5); }
    50%       { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
  }
  @keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  @keyframes watermarkDrift {
    0%   { opacity: 0.03; letter-spacing: 4px; }
    50%  { opacity: 0.06; letter-spacing: 8px; }
    100% { opacity: 0.03; letter-spacing: 4px; }
  }
 
  /* ─── STICKY HEADER ─── */
  header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 56px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    animation: fadeUp 0.5s ease both;
  }
  header img.logo { height: 52px; object-fit: contain; }
 
  .enquire-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 11px 28px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    animation: goldPulse 2.5s ease infinite;
  }
  .enquire-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,166,35,0.4);
  }
 
  /* ─── ADMISSION BANNER ─── */
  .admission-banner {
    background: var(--gold);
    color: var(--navy);
    text-align: center;
    padding: 11px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    animation: bannerSlide 0.5s ease 0.1s both;
    /* shimmer effect */
    background: linear-gradient(
      90deg,
      #f5a623 0%, #f5a623 40%,
      #ffd580 50%, #f5a623 60%, #f5a623 100%
    );
    background-size: 200% auto;
    animation: bannerSlide 0.5s ease 0.1s both, shimmer 3s linear 1s infinite;
  }
 
  /* ─── PAGE SECTION — gives L & R white space ─── */
  .page-section {
    padding: 28px 2.5%;
    background: var(--page-bg);
  }
 
  /* ─── HERO BLOCK ─── */
  .hero {
    background: var(--navy);
    border-radius: 12px;
    position: relative;
    display: grid;
    grid-template-columns: 260px 1fr 440px;
    align-items: stretch;
    min-height: 500px;
    overflow: hidden;
    box-shadow: 0 12px 60px rgba(0,0,0,0.3);
  }
 
  /* Animated watermark */
  .hero::before {
    content: 'AMITY UNIVERSITY';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 100px;
    color: rgba(255,255,255,0.04);
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    text-align: center;
    animation: watermarkDrift 6s ease-in-out infinite;
  }
 
  /* ── GIRL COLUMN ── */
  .hero-girl {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    padding-left: 16px;
    animation: slideInLeft 0.8s ease 0.3s both;
  }
  .girl-circle {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-58%);
    width: 215px;
    height: 215px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 0;
    transition: transform 0.3s ease;
  }
  .hero-girl:hover .girl-circle {
    transform: translateX(-58%) scale(1.04);
  }
  .hero-girl img {
    position: relative;
    z-index: 1;
    width: 235px;
    max-height: 480px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    transition: transform 0.4s ease;
    animation: float 4s ease-in-out 1s infinite;
  }
 
  /* ── TEXT COLUMN ── */
  .hero-text {
    position: relative;
    z-index: 1;
    padding: 52px 30px 52px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
 
  .pg-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 12px;
    animation: fadeUp 0.6s ease 0.5s both;
  }
  .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeUp 0.6s ease 0.65s both;
  }
  .ai-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    width: fit-content;
    animation: fadeUp 0.6s ease 0.8s both;
    transition: background 0.2s, border 0.2s;
  }
  .ai-badge:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.5);
  }
 
  .duration-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    animation: fadeUp 0.6s ease 0.95s both;
  }
  .hourglass-icon {
    width: 34px; height: 34px;
    background: var(--gold);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    animation: goldPulse 2.5s ease 1.5s infinite;
  }
  .duration-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--white);
  }
 
  .btn-brochure {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 13px 28px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    width: fit-content;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    animation: fadeUp 0.6s ease 1.1s both;
  }
  .btn-brochure:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,0.4);
  }
  .btn-brochure svg {
    transition: transform 0.3s;
  }
  .btn-brochure:hover svg {
    transform: translateY(3px);
  }
 
  /* QS ranking card */
  .qs-card {
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    overflow: hidden;
    max-width: 420px;
    animation: scaleUp 0.6s ease 1.25s both;
    transition: background 0.2s, transform 0.2s;
  }
  .qs-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
  }
  .qs-left {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .qs-icon {
    width: 42px; height: 42px;
    background: var(--gold);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: var(--navy);
    flex-shrink: 0;
  }
  .qs-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.35;
    color: var(--white);
  }
  .qs-right {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .qs-right-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
  }
 
  /* ── FORM COLUMN ── */
  .hero-form {
    position: relative;
    z-index: 1;
    padding: 30px 36px 30px 20px;
    /* display: flex; */
    align-items: center;
    animation: slideInRight 0.8s ease 0.4s both;
  }
  .form-card {
    background: var(--white);
    border-radius: 14px;
    padding: 26px 24px;
    color: #222;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    transition: box-shadow 0.3s;
  }
  .form-card:hover {
    box-shadow: 0 12px 50px rgba(0,0,0,0.4);
  }
  .form-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: white;
    margin-bottom: 3px;
    line-height: 1.2;
    text-align: center;
  }
  .form-card .sub {
    font-size: 12.5px;
    /* color: #777; */
    margin-bottom: 16px;
    text-align: center;
  }
 
  .fg { margin-bottom: 12px; }
  .fg label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
  }
  .fg input, .fg select {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #dde2ee;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
    background: #fff;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    font-family: 'Open Sans', sans-serif;
    appearance: none;
    -webkit-appearance: none;
  }
  .fg input:focus, .fg select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(15,32,96,0.08);
  }
  .fg input::placeholder { color: #aaa; }
 
  .phone-wrap {
    display: flex;
    border: 1.5px solid #dde2ee;
    border-radius: 6px;
    overflow: hidden;
    transition: border 0.2s, box-shadow 0.2s;
  }
  .phone-wrap:focus-within {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(15,32,96,0.08);
  }
  .phone-prefix {
    display: flex; align-items: center; gap: 5px;
    padding: 0 10px;
    background: #f5f7fb;
    border-right: 1.5px solid #dde2ee;
    font-size: 13px; font-weight: 600; color: #333;
    white-space: nowrap; flex-shrink: 0;
  }
  .phone-prefix img { width: 20px; height: 14px; }
  .phone-wrap input { border: none; border-radius: 0; flex: 1; min-width: 0; box-shadow: none !important; }
 
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
  }
  .sel-wrap { position: relative; }
  .sel-wrap::after {
    content: '';
    position: absolute;
    right: 11px; top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #555;
    transition: transform 0.2s;
  }
  .sel-wrap select { padding-right: 30px; cursor: pointer; }
 
  .chk-row {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12px; color: #444;
    margin-bottom: 7px; line-height: 1.4;
  }
  .chk-row input[type="checkbox"] {
    width: 14px; height: 14px; min-width: 14px;
    margin-top: 2px; accent-color: var(--navy); cursor: pointer;
  }
  .chk-row a { color: var(--navy); }
 
  .submit-btn {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 6px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
  }
  .submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }
  .submit-btn:hover {
    background: #0a1840;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,32,96,0.4);
  }
  .submit-btn:hover::after {
    transform: translateX(100%);
  }
 
  /* ─── MOBILE ─── */
  @media (max-width: 960px) {
    header { padding: 10px 18px; }
    .page-section { padding: 16px 14px 0; }
 
    .hero {
      grid-template-columns: 1fr;
      min-height: unset;
      border-radius: 10px 10px 0 0;
      overflow: visible;
      animation: none;
    }
    .hero::before { display: none; }
 
    /* Disable per-element animations on mobile for performance */
    .hero-girl, .hero-text, .hero-form,
    .pg-label, .hero-title, .ai-badge,
    .duration-row, .btn-brochure, .qs-card { animation: none; }
 
    /* Order: text → girl → form */
    .hero-text { order: 1; padding: 28px 20px 16px; }
    .hero-girl  { order: 2; height: 220px; padding-left: 0; }
    .hero-form  { order: 3; padding: 0; }
 
    .girl-circle { width: 170px; height: 170px; bottom: -20px; left: 50%; transform: translateX(-50%); }
    .hero-girl img { width: auto; height: 210px; max-height: 210px; animation: none; }
    .hero-girl:hover .girl-circle { transform: translateX(-50%) scale(1); }
 
    .hero-title { font-size: 26px; }
    .btn-brochure { width: 100%; justify-content: center; }
    .qs-card { max-width: 100%; }
 
    /* Form — white card, clearly separated */
    .hero-form { padding: 0; background: transparent; }
    .form-card {
      border-radius: 0 0 10px 10px;
      border-top: 3px solid var(--gold);
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
      padding: 22px 18px 28px;
      background: var(--white);
    }
    /* .form-card h3 { color: var(--navy); } */
    .form-card .sub { text-align: left; }
    .fg label { color: #333; }
    .fg input, .fg select { background: #fff; border-color: #dde2ee; color: #333; }
    .fg input::placeholder { color: #aaa; }
    .fg select option { background: #fff; color: #333; }
    .phone-wrap { border-color: #dde2ee; }
    .phone-prefix { background: #f5f7fb; border-right-color: #dde2ee; color: #333; }
    .phone-wrap input { background: #fff; color: #333; }
    .sel-wrap::after { border-top-color: #555; }
    .chk-row { color: #444; }
    .chk-row a { color: var(--navy); }
    .submit-btn { background: var(--navy); color: var(--white); }
    .two-col { grid-template-columns: 1fr; }
 
    .page-section::after { content: ''; display: block; height: 20px; }
  }
 
  @media (max-width: 480px) {
    .hero-title { font-size: 22px; }
    header img.logo { height: 36px; }
    .enquire-btn { padding: 9px 12px; font-size: 12px; }
    .form-card h3 { font-size: 18px !important; }
  }
  /* SECTION */
.stats-section {
  padding: 50px 0;
  background: #f5f6f8;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.stats-container {
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* BOX */
.stat-box {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  animation: fadeUp 1s ease;
}

/* HOVER EFFECT */
.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* TEXT */
.stat-box h2 {
  font-size: 42px;
  color: #1f3b6d;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  color: #555;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE (2 BY 2) */
@media (max-width: 768px) {

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-box {
    padding: 20px 10px;
  }

  .stat-box h2 {
    font-size: 28px;
  }

}
/* SECTION */
.why-amity {
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f7fb, #eef1f6);
  text-align: center;
}

/* HEADER */
.why-top h2 {
  font-size: 36px;
  color: #1f3b6d;
  margin-bottom: 10px;
}

.why-top p {
  color: #666;
  margin-bottom: 50px;
}

/* GRID */
.why-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.why-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

/* TEXT */
.why-item h3 {
  font-size: 18px;
  color: #1f3b6d;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* HOVER EFFECT 🔥 */
.why-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #1f3b6d, #294b8a);
  color: #fff;
}

.why-item:hover h3,
.why-item:hover p {
  color: #fff;
}

/* STAGGER ANIMATION */
.why-item:nth-child(1) { animation: fadeUp 0.6s ease forwards 0.1s; }
.why-item:nth-child(2) { animation: fadeUp 0.6s ease forwards 0.2s; }
.why-item:nth-child(3) { animation: fadeUp 0.6s ease forwards 0.3s; }
.why-item:nth-child(4) { animation: fadeUp 0.6s ease forwards 0.4s; }
.why-item:nth-child(5) { animation: fadeUp 0.6s ease forwards 0.5s; }
.why-item:nth-child(6) { animation: fadeUp 0.6s ease forwards 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .why-top h2 {
    font-size: 26px;
  }

}

/* SECTION */
.mba-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #0f3c66, #0b2d4d);
  color: #fff;
}

/* CONTAINER */
.mba-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.mba-left {
  width: 50%;
}

.mba-left h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

/* TABS */
.tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: 0.3s;
}

.tab-btn.active {
  background: #fff;
  color: #000;
}

/* CONTENT */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeUp 0.5s ease;
}

/* SEMESTER BOX */
.semester {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.semester span {
  display: inline-block;
  background: #3a7bd5;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-size: 13px;
}

.semester ul {
  padding-left: 20px;
}

.semester li {
  margin-bottom: 8px;
}

/* RIGHT */
.mba-right {
  width: 40%;
  text-align: center;
}

.certificate-box {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  transform: rotate(-3deg);
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.certificate-box img {
  width: 100%;
  border-radius: 10px;
}

/* HOVER EFFECT */
.certificate-box:hover {
  transform: rotate(0deg) scale(1.05);
}

.certificate-text {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.9;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .mba-container {
    flex-direction: column;
  }

  .mba-left,
  .mba-right {
    width: 100%;
  }

  .mba-left h2 {
    font-size: 24px;
  }

}

/* SECTION */
.apply-premium {
  padding: 40px 0;
  background: linear-gradient(135deg, #f7f9fc, #eef2f7);
  position: relative;
  overflow: hidden;
}

/* BACKGROUND SHAPES */
.apply-premium::before,
.apply-premium::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(31, 59, 109, 0.08);
  filter: blur(80px);
}

.apply-premium::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.apply-premium::after {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -80px;
}

/* CONTAINER */
.apply-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT */
.apply-content {
  width: 55%;
}

.apply-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #1f3b6d;
}

/* BOX */
.apply-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 15px;
  background: #fff;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(40px);
}

/* ICON */
.apply-box .icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ffc400, #ff9f00);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}

/* TEXT */
.apply-box p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* HOVER */
.apply-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* IMAGE */
.apply-image {
  width: 40%;
  display: flex;
  justify-content: center;
}

.apply-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  animation: float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* STAGGER ANIMATION */
.apply-box:nth-child(2) { animation: fadeUp 0.6s ease forwards 0.2s; }
.apply-box:nth-child(3) { animation: fadeUp 0.6s ease forwards 0.4s; }
.apply-box:nth-child(4) { animation: fadeUp 0.6s ease forwards 0.6s; }
.apply-box:nth-child(5) { animation: fadeUp 0.6s ease forwards 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .apply-wrap {
    flex-direction: column;
  }

  .apply-content,
  .apply-image {
    width: 100%;
  }

  .apply-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .apply-image img {
    max-width: 260px;
  }

}

/* SECTION */
.fee-modern {
  padding: 70px 0;
  background: #f8fafc;
}

/* WRAPPER */
.fee-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.fee-wrapper h2 {
  font-size: 32px;
  color: #1f3b6d;
  margin-bottom: 40px;
}

/* LAYOUT */
.fee-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* LEFT GRID */
.fee-cards {
  width: 60%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD BASE */
.card {
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* TEXT FIX */
.card span {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.card h3 {
  font-size: 28px;
  margin-top: 10px;
  color: #111827;
  font-weight: 700;
}

/* COLOR CARDS */
.card.one {
  background: #fff8db;
  border-left: 5px solid #facc15;
}

.card.two {
  background: #eef4ff;
  border-left: 5px solid #3b82f6;
}

.card.three {
  grid-column: span 2;
  background: #eafaf1;
  border-left: 5px solid #22c55e;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* SHINE EFFECT */
.card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  left: -120%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: 0.5s;
}

.card:hover::before {
  left: 100%;
}

/* EMI BOX */
.emi-box {
width: 40%;
background: #eef4ff; /* Amity Yellow */
border-radius: 20px;
padding: 40px;
color: #1f2937; /* dark text (visible) */
text-align: center;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
transition: 0.3s;
}

/* EMI TEXT */
.emi-box p {
  font-size: 18px;
  margin-bottom: 10px;
  /*color: rgba(255,255,255,0.9);*/
  color:black;
}

.emi-box h3 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  color: red;
}

/* BUTTON */
.emi-box button {
      background: red;
    color: white;
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.emi-box button:hover {
  background: #e6f9ec;
}

/* EMI HOVER */
.emi-box:hover {
  transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 768px) {

  .fee-layout {
    flex-direction: column;
  }

  .fee-cards {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .card.three {
    grid-column: span 1;
  }

  .emi-box {
    width: 100%;
  }

  .fee-wrapper h2 {
    font-size: 24px;
    text-align: center;
  }
}

/* SECTION */
.amity-process-premium {
  padding: 40px 0;
  background: #ffffff;
}

/* WRAP */
.amity-process-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.amity-process-heading {
  font-size: 34px;
  color: #1f3b6d;
  margin-bottom: 60px;
}

/* TIMELINE */
.amity-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* BASE LINE */
.amity-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e5e7eb;
}

/* PROGRESS LINE */
.amity-progress-line {
  position: absolute;
  top: 22px;
  left: 0;
  height: 2px;
  background: #1f3b6d;
  width: 0;
  animation: progressFlow 2s ease forwards;
}

/* STEP */
.amity-step-item {
  width: 100%;
  text-align: center;
  position: relative;
}

/* CIRCLE */
.amity-circle {
  width: 45px;
  height: 45px;
  background: #e5e7eb;
  color: #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: bold;
  position: relative;
  z-index: 2;
  transition: 0.4s;
}

/* ACTIVE STEP ANIMATION */
.amity-step-item:nth-child(2) .amity-circle { animation: stepActive 0.5s forwards 0.3s; }
.amity-step-item:nth-child(3) .amity-circle { animation: stepActive 0.5s forwards 0.6s; }
.amity-step-item:nth-child(4) .amity-circle { animation: stepActive 0.5s forwards 0.9s; }
.amity-step-item:nth-child(5) .amity-circle { animation: stepActive 0.5s forwards 1.2s; }

/* CARD */
.amity-box {
  margin-top: 20px;
  background: #f9fafb;
  padding: 20px;
  border-radius: 14px;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

/* TEXT */
.amity-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.amity-box p {
  font-size: 14px;
  color: #555;
}

/* CARD ANIMATION */
.amity-step-item:nth-child(2) .amity-box { animation: fadeUp 0.5s forwards 0.4s; }
.amity-step-item:nth-child(3) .amity-box { animation: fadeUp 0.5s forwards 0.7s; }
.amity-step-item:nth-child(4) .amity-box { animation: fadeUp 0.5s forwards 1s; }
.amity-step-item:nth-child(5) .amity-box { animation: fadeUp 0.5s forwards 1.3s; }

/* HOVER */
.amity-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* KEYFRAMES */
@keyframes progressFlow {
  to { width: 100%; }
}

@keyframes stepActive {
  to {
    background: #1f3b6d;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(31,59,109,0.15);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
/* MOBILE PREMIUM CENTER DESIGN */
@media (max-width: 768px) {

  .amity-timeline {
    flex-direction: column;
    /* gap: 30px; */
    padding-left: 0;
    align-items: center;
  }

  /* REMOVE LINES */
  .amity-timeline::before,
  .amity-progress-line {
    display: none;
  }

  /* STEP */
  .amity-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* NUMBER CIRCLE */
  .amity-circle {
    width: 35px;
    height: 35px;
    font-size: 15px;
    background: #1f3b6d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  }

  /* ARROW */
  .amity-step-item::after {
    content: "↓";
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 10px;
  }

  /* LAST STEP NO ARROW */
  .amity-step-item:last-child::after {
    display: none;
  }

  /* CARD */
  .amity-box {
    width: 100%;
    max-width: 320px;
    padding: 16px;
    border-radius: 14px;
    background: #f3f4f6;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  }

  .amity-box h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .amity-box p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* TITLE */
  .amity-process-heading {
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
  }

}

/* SECTION */
.spec-premium-sec {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

/* WRAP */
.spec-premium-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.spec-premium-wrap h2 {
  font-size: 36px;
  color: #1f3b6d;
  margin-bottom: 50px;
}

/* GRID */
.spec-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.spec-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  border: 1px solid #e5e7eb;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

/* SHINE EFFECT */
.spec-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: 0.6s;
}

.spec-item:hover::after {
  left: 100%;
}

/* HOVER */
.spec-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  color: #1f3b6d;
}

/* FEATURED CARD */
.spec-item.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #1f3b6d, #294a80);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 20px 50px rgba(31,59,109,0.3);
}

/* FEATURED HOVER */
.spec-item.featured:hover {
  transform: translateY(-10px) scale(1.03);
}

/* MOBILE */
@media (max-width: 768px) {

  .spec-premium-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spec-item.featured {
    grid-column: span 2;
  }

  .spec-premium-wrap h2 {
    font-size: 24px;
  }

}
/* SECTION */
.rank-scroll-sec {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.rank-scroll-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.rank-scroll-wrap h2 {
  font-size: 34px;
  color: #1f3b6d;
  margin-bottom: 40px;
}

/* SLIDER */
.rank-scroll-slider {
  overflow: hidden;
}

/* TRACK */
.rank-scroll-track {
  display: flex;
  gap: 20px;
}

/* CARD */
.rank-box {
  flex: 0 0 calc(20% - 16px);
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  transition: 0.3s;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* IMAGE (CIRCLE BADGE) */
.rank-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;

  background: #f1f5f9;
  padding: 12px;
  border-radius: 50%;
  transition: 0.3s;
}

/* TEXT */
.rank-box p {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

/* HOVER */
.rank-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.rank-box:hover img {
  transform: scale(1.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .rank-box {
    flex: 0 0 100%;
  }
}
/* =========================
   SECTION
========================= */
.rec-sec {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

/* =========================
   WRAP
========================= */
.rec-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  overflow: hidden;
}

/* =========================
   TITLE
========================= */
.rec-wrap h2 {
  font-size: 32px;
  color: #1f3b6d;
  margin-bottom: 50px;
  line-height: 1.4;
}

.rec-wrap span {
  color: #6b7280;
  font-weight: 400;
}

/* =========================
   SLIDER
========================= */
.rec-slider {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

/* =========================
   TRACK (MAIN FIX HERE)
========================= */
.rec-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;

  /* smooth infinite animation */
  animation: scrollLeft 40s linear infinite;
}

/* SECOND ROW REVERSE */
.rec-track-2 {
  animation: scrollRight 40s linear infinite;
}

/* =========================
   LOGOS
========================= */
.rec-track img {
  height: 50px;
  width: auto;
  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.7;

  transition: all 0.2s ease;
}

/* HOVER EFFECT */
.rec-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* =========================
   ANIMATION KEYFRAMES
========================= */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .rec-track {
    gap: 30px;
  }

  .rec-track img {
    height: 40px;
  }

  .rec-wrap h2 {
    font-size: 22px;
  }

}

/* =========================
   SECTION
========================= */
.faq-sec {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

/* =========================
   WRAP
========================= */
.faq-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
}

/* =========================
   LEFT
========================= */
.faq-left {
  width: 35%;
}

.faq-left h2 {
  font-size: 36px;
  color: #111827;
  margin-bottom: 30px;
}

/* BOX */
.faq-box {
  background: linear-gradient(135deg, #1f3b6d, #294a80);
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.faq-box h3 {
  margin-bottom: 10px;
}

.faq-box p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* BUTTON */
.faq-btn {
  display: inline-block;
  background: #fbbf24;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.faq-btn:hover {
  transform: scale(1.05);
}

/* =========================
   RIGHT
========================= */
.faq-right {
  width: 65%;
}

/* =========================
   ITEM
========================= */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 0;
  transition: all 0.3s ease;
}

/* ACTIVE CARD LOOK */
.faq-item.active {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* =========================
   QUESTION
========================= */
.faq-q {
  font-size: 18px;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.faq-q:hover {
  color: #1f3b6d;
}

/* =========================
   ICON (CIRCLE)
========================= */
.faq-q span {
  width: 30px;
  height: 30px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  background: #fff;
}

/* ACTIVE ICON */
.faq-item.active .faq-q span {
  background: #1f3b6d;
  color: #fff;
  border-color: #1f3b6d;
  transform: rotate(45deg);
}

/* =========================
   ANSWER
========================= */
.faq-a {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);

  transition: all 0.4s ease;
}

/* ACTIVE ANSWER */
.faq-item.active .faq-a {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

/* =========================
   HOVER EFFECT
========================= */
.faq-item:hover {
  transform: translateX(5px);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .faq-wrap {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    width: 100%;
  }

  .faq-left h2 {
    font-size: 26px;
  }

  .faq-item.active {
    padding: 15px;
  }

}
/* =========================
   FOOTER
========================= */
.custom-footer {
  background: linear-gradient(135deg, #1f3b6d, #162a4d); /* theme color */
  color: #ffffff;
  padding: 50px 0 30px;
}

/* TOP */
.footer-top {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* COLUMN */
.footer-col {
  /* width: 50%; */
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.95;
}

/* DIVIDER */
.footer-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
}

/* =========================
   BOTTOM
========================= */
.footer-bottom {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

/* LINKS */
.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 500;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 13px;
  opacity: 0.8;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
  }

  .footer-col {
    width: 100%;
  }

  .footer-divider {
    display: none;
  }

}

/* POPUP BASE */
.ws-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
}

.ws-popup.active {
  display: block;
}

.ws-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

/* BOX */
.ws-box {
  position: relative;
  max-width: 385px;
  margin: 4% auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  animation: wsFade 0.4s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

@keyframes wsFade {
  from {transform: translateY(50px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}

/* HEADER (AMITY BLUE) */
.ws-header {
  background: linear-gradient(135deg, #0f2060, #1c2f8a);
  color: #fff;
  text-align: center;
  padding: 12px 15px;
      border-radius: 12px;
    margin-bottom: 16px;
}

.ws-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.ws-header p {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.9;
}

/* FORM */
.ws-card {
  padding: 22px;
}

/* LABEL */
.ws-form label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

/* INPUT */
.ws-form input,
.ws-form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.25s ease;
}

/* INPUT FOCUS */
.ws-form input:focus,
.ws-form select:focus {
  border-color: #0f2060;
  box-shadow: 0 0 0 2px rgba(15, 32, 96, 0.15);
  outline: none;
}

/* FIELD GAP */
.fg {
  margin-bottom: 14px;
}

/* PHONE */
.phone-wrap {
  display: flex;
}

.phone-prefix {
  background: #f3f3f3;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
}

.phone-prefix img {
  width: 18px;
  margin-right: 6px;
}

.phone-wrap input {
  border-radius: 0 8px 8px 0;
}

/* GRID */
.two-col {
  display: flex;
  gap: 12px;
}

.two-col .fg {
  flex: 1;
}

/* SELECT ARROW */
.sel-wrap select {
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20'><path d='M5 7l5 5 5-5z'/></svg>") no-repeat right 10px center;
  background-size: 16px;
}

/* CHECK */
.chk-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  margin: 10px 0;
}

.chk-row input {
  margin-top: 3px;
  accent-color: #0f2060;
}

/* BUTTON */
.ws-submit {
  width: 100%;
  background: linear-gradient(90deg, #0f2060, #1c2f8a);
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(15, 32, 96, 0.3);
}

/* BUTTON HOVER */
.ws-submit:hover {
  background: linear-gradient(90deg, #0a174a, #162a75);
  transform: translateY(-1px);
}

/* 🔥 CLOSE BUTTON (FIXED VISIBLE) */
.ws-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  background: #fff;
  color: #0f2060;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.ws-close:hover {
  background: #0f2060;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px){

  .ws-box {
    width: 93%;
    margin: 10% auto;
  }

 

  .ws-card {
    padding: 18px;
  }
}
.sticky-cta-pro{display: none;}

@media (max-width: 768px) {

  .sticky-cta-pro {
    position: fixed;
    bottom: 15px;
    left: 10px;
    right: 10px;
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    padding: 14px;
    border-radius: 50px;

    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;

    box-shadow: 0 15px 40px rgba(251,191,36,0.5);
    animation: pulseGlow 2s infinite;
  }

  .sticky-cta-pro .icon {
    font-size: 18px;
  }

}

/* GLOW ANIMATION */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(251,191,36,0.5); }
  50% { box-shadow: 0 0 25px rgba(251,191,36,0.9); }
  100% { box-shadow: 0 0 0 rgba(251,191,36,0.5); }
}
