/* =====================================================
   FIN STUDIO INDIA – FINAL GLOBAL ANIMATED CSS
   (Animations on ALL pages)
===================================================== */

/* ================= ROOT ================= */
:root {
  --brand-blue: #4949E9;
  --soft-blue: #ABC3FF;
  --neon-yellow: #F7E964;
  --white: #ffffff;
  --black: #000000;
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--brand-blue);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  animation: pageFade 0.6s ease forwards;
}

/* ================= GLOBAL ================= */
.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

section {
  animation: fadeUp 0.7s ease forwards;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ================= TYPOGRAPHY ================= */
h1, h2, h3 {
  font-weight: 700;
}

.hero-title {
  font-size: 2.6rem;
  color: var(--neon-yellow);
  text-align: center;
  line-height: 1.2;
}

.hero-subtitle {
  margin-top: 16px;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.95;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 36px;
  text-align: center;
  color: var(--neon-yellow);
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.primary-btn {
  background: var(--neon-yellow);
  color: var(--black);
}

.secondary-btn {
  border: 2px solid var(--neon-yellow);
  color: var(--neon-yellow);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  background: var(--brand-blue);
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 18px;
}

.logo img {
  height: 46px;
}

/* ================= NAV ================= */
.nav ul {
  display: flex;
  gap: 28px;
}

.nav a {
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.8;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  padding: 90px 0 80px;
}

.hero-clean-card {
  position: relative;
  background:
    linear-gradient(
      rgba(73, 73, 233, 0.88),
      rgba(73, 73, 233, 0.88)
    ),
    url("https://images.pexels.com/photos/3182765/pexels-photo-3182765.jpeg");
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 64px 36px;
  text-align: center;
  max-width: 920px;
  margin: auto;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.8s ease forwards;
}


/* ================= HERO ACTIONS ================= */
.hero-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* ================= SECTIONS ================= */
.about,
.what-we-do,
.courses-preview,
.final-cta {
  padding: 90px 0;
}

/* ================= INFO CARDS ================= */
.info-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.info-card {
  background: var(--soft-blue);
  color: var(--black);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 320px;
  animation: fadeUp 0.8s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

/* ================= COURSES ================= */
.courses-grid {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.course-card {
  background: var(--soft-blue);
  color: var(--black);
  padding: 32px;
  border-radius: 20px;
  max-width: 380px;
  text-align: center;
  animation: fadeUp 0.9s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

.course-thumb {
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}

.course-fee {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 8px 0;
}

/* ================= TEAM ================= */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.team-card {
  background: var(--soft-blue);
  color: var(--black);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 300px;
  animation: fadeUp 0.9s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

/* ================= CTA ================= */
.final-cta {
  text-align: center;
}

/* ================= FOOTER ================= */
.footer {
  padding-top: 70px;
}

.footer-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-bottom {
  margin-top: 44px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .nav ul {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--brand-blue);
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 26px 0;
    display: none;
  }

  .nav.active ul {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 65px 0;
  }

  .hero-clean-card {
    padding: 44px 22px;
    border-radius: 22px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .btn {
    width: 100%;
  }
}





/* =====================================================
   FINAL POLISH – ELEVATION + MOBILE HEADER + COURSES
===================================================== */

/* ================= ELEVATION SYSTEM ================= */

/* Level 1 – Default Cards */
.info-card,
.course-card,
.team-card {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Level 2 – Hover */
.info-card:hover,
.course-card:hover,
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

/* Level 3 – Hero Card */
.hero-clean-card {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}


/* ================= MOBILE HEADER POLISH ================= */

/* Sticky header separation */
.header {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Improve menu tap area */
.menu-toggle {
  padding: 8px 12px;
  border-radius: 6px;
}

/* Mobile nav background depth */
@media (max-width: 768px) {
  .nav ul {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }
}


/* ================= COURSE PAGE TEXT HIGHLIGHT ================= */

/* Highlight Monthly Installment & One-time Payment lines */
.course-card small {
  display: block;
  margin-top: 6px;
  font-weight: 700;              /* BOLD */
  color: var(--black);
}

/* Slight emphasis for payment lines */
.course-card small:nth-of-type(1),
.course-card small:nth-of-type(2) {
  font-size: 0.95rem;
}

/* Price stays strongest */
.course-fee {
  font-size: 1.35rem;
  font-weight: 800;
}
