/* 
   Tunes Time - Design System Config
   Root variables based on Figma design tokens.
*/

@import url("https://use.typekit.net/ucp2dpp.css");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Lexend:wght@300;400;500;600;700&display=swap");

:root {
  /* --- Core Palette (9 Key Colors) --- */
  --clr-navy-primary: #1c3f95;
  --clr-red-accent: #e63946;
  --clr-gold-highlight: #ffd700;
  --clr-text-main: #102b4e;
  --clr-text-slate: #4a5565;
  --clr-bg-soft-blue: #e3eef9;
  --clr-bg-neutral: #f9fafb;
  --clr-bg-white: #ffffff;
  --clr-medium-blue: #5c77b5;
  --clr-header-link: #504d43;
  --clr-grey: #6c85bd;

  /* --- Typography Families --- */
  --ff-heading: "peachy-keen-jf", sans-serif;
  --ff-body: "Open Sans", sans-serif;

  /* --- Font Sizes (Tokens) --- */
  --fs-display: 78px;
  --fs-h1: 48px;
  --fs-h2: 32px;
  --fs-h3: 20px;
  --fs-h4: 18px;
  --fs-body: 17px;
  --fs-base: 16px;
  --fs-sm: 14px;

  /* --- Spacing & Layout --- */
  --container: 1220px;
  --radius-full: 50px;
  --radius-lg: 16px;
  --radius-md: 8px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 
   --- GLOBAL RESETS & BASE STYLES --- 
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Scroll offset for fixed header on anchor navigation */
section[id] {
  scroll-margin-top: 20px;
}

body {
  width: 100%;
  background-color: var(--clr-bg-white);
  color: var(--clr-text-slate);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

p,
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:focus-visible {
  outline: none !important;
}

/* 
   --- LAYOUT UTILITIES --- 
*/
.tt-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.row > * {
  padding-left: 0;
  padding-right: 0;
}

.post,
.page {
  margin: 0;
}
/* 
   --- TYPOGRAPHY --- 
*/
h1,
h2,
h3,
h4 {
  font-family: var(--ff-heading);
  color: var(--clr-text-main);
  font-weight: 400;
  margin: 0;
}
a.button-primary {
  background-color: var(--clr-navy-primary);
  color: var(--clr-bg-white);
  font-family: var(--ff-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  padding: 13px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: none;
  position: relative;
  overflow: hidden;
}

a.button-primary::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--clr-bg-white);
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.3s ease;
}

a.button-primary:hover {
  background-color: var(--clr-red-accent);
  color: var(--clr-bg-white);
  box-shadow: 0 15px 35px rgba(230, 57, 70, 0.3);
}

a.button-primary:hover::after {
  transform: translateX(5px);
}
a.button-secondary {
  background-color: var(--clr-bg-white);
  color: var(--clr-navy-primary);
  font-family: var(--ff-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  padding: 13px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: none;
  position: relative;
  overflow: hidden;
}

a.button-secondary::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--clr-navy-primary);
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.3s ease;
}

a.button-secondary:hover {
  background-color: var(--clr-bg-white);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
  color: var(--clr-navy-primary);
}

a.button-secondary:hover::after {
  transform: translateX(5px);
}
/* 
   --- HEADER STYLES --- 
*/
.main-header {
  background-color: var(--clr-bg-white);
  padding: 29px 0;
  transition: all 0.4s ease;
  z-index: 1050;
  border-bottom: 2px solid var(--clr-bg-soft-blue);
}

.header-logo {
  width: auto;
  transition: var(--transition);
}

.navbar-nav li {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--clr-header-link);
  position: relative;
  transition: var(--transition);
  padding: 0;
}

/* --- PLAYFUL MOBILE MENU --- */

.tt-toggler-icon {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.tt-toggler-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--clr-navy-primary);
  border-radius: 10px;
  transition: var(--transition);
}

/* Toggler animation on open */
.navbar-toggler[aria-expanded="true"] .tt-toggler-icon span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .tt-toggler-icon span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .tt-toggler-icon span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}
/* Hero Section */
.hero-main {
  position: relative;
  z-index: 2;
}
main {
  padding-top: 146px;
}
.hero-main::before {
  content: "";
  height: 960px;
  width: 100%;
  position: absolute;
  background: url(../images/hero-bg.svg) no-repeat center center;
  border-radius: 50% 50% 0 0;
  top: -146px;
}
.hero-section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 64px;
  gap: 10px;
}
.hero-content h1 {
  font-size: var(--fs-display);
  color: var(--clr-bg-white);
  padding: 16px 60px;
  background-color: var(--clr-red-accent);
  border-radius: 70px;
  width: fit-content;
  transform: rotate(2.187deg);
}
.hero-sub-content {
  display: flex;
  gap: 10px;
}
.hero-sub-content h2 {
  font-size: var(--fs-display);
}
.hero-sub-content h2:nth-child(1),
.hero-sub-content h2:nth-child(2) {
  padding: 16px 60px;
  border-radius: 70px;
  background-color: var(--clr-gold-highlight);
  color: var(--clr-red-accent);
  transform: rotate(-3.933deg);
  display: flex;
  align-items: center;
}
.hero-sub-content h2:nth-child(2) {
  transform: rotate(0deg);
}
.hero-sub-content h2:nth-child(3) {
  margin-top: 10px;
  background-color: var(--clr-navy-primary);
  padding: 16px 60px;
  color: var(--clr-bg-white);
  border-radius: 70px;
}
.hero-svg,
.hero-content h1,
.hero-sub-content h2:nth-child(1),
.hero-sub-content h2:nth-child(3) {
  position: relative;
}

/* Floating Animation */
@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Common Pseudo-element Styles */
.hero-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.hero-svg::before,
.hero-svg::after,
.hero-content h1::before,
.hero-content h1::after,
.tagline::before,
.tagline::after,
.hero-sub-content h2:nth-child(1)::after,
.hero-sub-content h2:nth-child(1)::before,
.hero-sub-content h2:nth-child(3)::after,
.problem-box-yellow::after,
.problem-box-blue::after,
.musicsound::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  animation: floating 3s ease-in-out infinite;
}

.hero-svg::before {
  background-image: url(../images/hero-animated-svg-8.svg);
  bottom: -10px;
  left: -60px;
  width: 34px;
  height: 40px;
  animation-duration: 3.5s;
}

.hero-svg::after {
  background-image: url(../images/hero-animated-svg-9.svg);
  bottom: 10px;
  left: -80px;
  width: 24px;
  height: 43px;
  animation-duration: 4s;
  animation-delay: 0.5s;
}

.hero-content h1::before {
  background-image: url(../images/hero-animated-svg-11.svg);
  top: -10px;
  right: -10px;
  width: 15px;
  height: 37px;
  animation-duration: 3s;
  animation-delay: 1s;
}

.hero-content h1::after {
  background-image: url(../images/hero-animated-svg-10.svg);
  top: 10px;
  right: -30px;
  width: 25px;
  height: 37px;
  animation-duration: 4.5s;
  animation-delay: 0.2s;
}

.hero-sub-content h2:nth-child(1)::after {
  background-image: url(../images/hero-animated-svg-5.svg);
  top: -32%;
  left: 16%;
  width: 92px;
  height: 42px;
  animation-duration: 5s;
}

.hero-sub-content h2:nth-child(1)::before {
  background-image: url(../images/hero-animated-svg-6.svg);
  bottom: -12%;
  right: 24%;
  width: 50px;
  height: 50px;
  animation-duration: 3.8s;
  animation-delay: 0.6s;
}

.hero-sub-content h2:nth-child(3)::after {
  background-image: url(../images/hero-animated-svg-7.svg);
  bottom: -10%;
  left: -10%;
  width: 33px;
  height: 40px;
  animation-duration: 4.2s;
  animation-delay: 1.2s;
}
.hero-detail p {
  color: var(--clr-navy-primary);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 160%;
  max-width: 860px;
  margin: 60px auto 0;
}
.hero-buttons {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
.watch-video {
  display: flex;
  align-items: center;
  gap: 10px;
}
.watch-video a {
  color: var(--clr-navy-primary);
  font-family: var(--ff-body);
  font-size: var(--fs-h4);
  font-weight: 700;
  text-decoration-line: underline;
}
.watch-video span::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--clr-bg-white);
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  margin-left: 4px;
}

.watch-video:hover span {
  background-color: var(--clr-red-accent);
  transform: scale(1.1);
}

.watch-video:hover span::before {
  transform: scale(1.1);
}

.watch-video span {
  width: 50px;
  height: 50px;
  background-color: var(--clr-red-accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
/* Specialized Service Sections */
.specialized-section {
  padding: 100px 0;
  color: var(--clr-bg-white);
  background-color: var(--clr-bg-soft-blue);
  border-radius: 0 0 60px 60px;
}
.special-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.special-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.special-grid .special-row:first-of-type {
  background-color: var(--clr-navy-primary);
}
.special-grid .special-row:last-of-type {
  background-color: var(--clr-red-accent);
}
.special-row {
  padding: 40px;
}
.special-title h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  color: var(--clr-bg-white);
  margin: 0;
}
.special-title h3 {
  color: var(--clr-bg-white);
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.352px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.feature-list li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
  font-family: var(--ff-body);
  font-size: 20px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

.feature-list li strong {
  color: var(--clr-bg-white);
  font-weight: 700;
}
/* Yellow Check Icon Optimization */
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-color: var(--clr-gold-highlight);
  color: var(--clr-red-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}
.special-grid .special-row:first-of-type .feature-list li::before {
  color: var(--clr-navy-primary);
}
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.cta-wrap span {
  min-width: 56px;
  min-height: 56px;
  background-color: var(--clr-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.special-grid .special-row:last-of-type a.button-secondary {
  color: var(--clr-red-accent);
  border: 1px solid var(--clr-bg-white);
}
.special-grid .special-row:last-of-type a.button-secondary:hover {
  color: var(--clr-bg-white);
  background: transparent;
}
.special-grid .special-row:last-of-type a.button-secondary::after {
  background-color: var(--clr-red-accent);
}
.special-grid .special-row:last-of-type a.button-secondary:hover::after {
  background-color: var(--clr-bg-white);
}
.special-grid .special-row:first-of-type a.button-secondary {
  color: var(--clr-navy-primary);
  border: 1px solid var(--clr-bg-white);
}
.special-grid .special-row:first-of-type a.button-secondary:hover {
  color: var(--clr-bg-white);
  background: transparent;
}
.special-grid .special-row:first-of-type a.button-secondary::after {
  background-color: var(--clr-navy-primary);
}
.special-grid .special-row:first-of-type a.button-secondary:hover::after {
  background-color: var(--clr-bg-white);
}
/* Trusted Implant */
.trusted-impact {
  padding: 120px 0;
}
.trusted-impact-header,
.school-result-header,
.meet-the-creator-header {
  text-align: center;
}
.trusted-impact-header span,
.school-result-header span,
.meet-the-creator-header span {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  background-color: #e639461a;
  color: var(--clr-red-accent);
  border: 1px solid #e639464d;
  padding: 9px 17px;
  border-radius: 50px;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.trusted-impact-header h2,
.school-result-header h2,
.meet-the-creator-header h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  color: var(--clr-red-accent);
  margin-top: 10px;
}
.trusted-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background-color: var(--clr-navy-primary);
  border-radius: 10px;
  padding: 40px 20px;
  margin-top: 60px;
}
.trusted-impact-grid .trusted-impact-card {
  text-align: center;
}
.trusted-impact-grid .trusted-impact-card h3 {
  color: var(--clr-gold-highlight);
  text-align: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
}
.trusted-impact-grid .trusted-impact-card p {
  color: var(--clr-bg-white);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-top: 10px;
}
.featured-on {
  width: fit-content;
  background-color: var(--clr-bg-neutral);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  margin: 60px auto 120px;
}
.feature-imgs img {
  max-width: 200px;
}
.featured-on h4 {
  color: var(--clr-navy-primary);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-h4);
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 20px;
}
.feature-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
/* School Results Section */
.school-result-main {
  background-color: var(--clr-bg-soft-blue);
  padding: 105px 0;
  margin-top: 90px;
}
.school-result-header p {
  color: var(--clr-text-slate);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin: 30px 0 40px;
}
.school-result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.school-result-card {
  height: 310px;
  width: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background-color: var(--clr-red-accent);
  border-radius: 50%;
  position: relative;
}
.school-result-card h3 {
  color: #ffd700;
  text-align: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0.352px;
}
.school-result-card p {
  color: var(--clr-bg-white);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  margin-top: 10px;
}
.school-result-card p span {
  color: var(--clr-gold-highlight);
}
.school-result-footer p {
  color: var(--clr-text-slate);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 160%;
  max-width: 640px;
  margin: 40px auto 0;
}
.school-result-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/result-1.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 60px;
  width: 60px;
}
.school-result-card:nth-child(2)::after {
  background: var(--clr-navy-primary);
  border-radius: 50%;
}
.school-result-card:nth-child(3)::after {
  background: var(--clr-red-accent);
}
.school-result-card:nth-child(4)::after {
  background: url(../images/result-2.svg);
}
.school-result-card:nth-child(2) {
  background-color: var(--clr-gold-highlight);
}
.school-result-card:nth-child(2) h3 {
  color: var(--clr-red-accent);
}
.school-result-card:nth-child(2) p {
  color: var(--clr-navy-primary);
}
.school-result-card:nth-child(2) p span {
  color: var(--clr-red-accent);
}
.school-result-card:nth-child(3) {
  background-color: var(--clr-navy-primary);
}
.school-result-card:nth-child(3) h3 {
  color: var(--clr-bg-white);
}
.school-result-card:nth-child(3) p {
  color: var(--clr-bg-white);
}
.school-result-card:nth-child(3) p span {
  color: var(--clr-bg-white);
}
/* Simple & Effective Section */
.simple-effective-main {
  padding: 90px 0 90px 0;
  background-color: var(--clr-bg-white);
}
.simple-effective-header,
.inclusive-learning-header {
  text-align: center;
  margin-bottom: 60px;
}
.simple-effective-header span,
.inclusive-learning-header span {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  background-color: #1c3f951a;
  color: var(--clr-navy-primary);
  border: 1px solid #1c3f954d;
  padding: 9px 17px;
  border-radius: 50px;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.simple-effective-header h2,
.inclusive-learning-header h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  color: var(--clr-navy-primary);
  margin-top: 10px;
}
.simple-effective-content {
  position: relative;
}
.simple-effective-card {
  max-width: 882px;
  background-color: var(--clr-bg-soft-blue);
  border-radius: 30px;
  margin: 0 auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.simple-effective-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--clr-red-accent);
}
.simple-effective-card-header h3 {
  color: var(--clr-bg-white);
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.352px;
}
.simple-effective-command-content {
  background-color: var(--clr-bg-white);
  padding: 20px;
  border-radius: 10px;
}
.simple-effective-command-content > div {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.simple-effective-command-content > div p {
  color: var(--clr-navy-primary);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 17px; /* 100% */
}
.simple-effective-command-content h3 {
  color: var(--clr-navy-primary);
  text-align: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.352px;
}
.simple-effective-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.simple-effective-footer {
  background-color: var(--clr-navy-primary);
  padding: 20px;
  border-radius: 10px;
}
.simple-effective-footer p {
  color: #fff;
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 160%; /* 32px */
}
/* .simple-effective-card::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 50%;
  background: url(../images/simple-effective-footer.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 640px;
  height: 128px;
  transform: translate(-50%, 50%);
} */
.simple-effective-bottom-images img:first-child {
  position: absolute;
  bottom: 0px;
  left: -20px;
  width: 170px;
  height: 220px;
}
.simple-effective-bottom-images img:last-child {
  position: absolute;
  bottom: 0px;
  right: -20px;
  width: 170px;
  height: 220px;
}
.inclusive-learning-main {
  padding: 90px 0 350px 0;
  position: relative;
}
/* Inclusive Learning */
.inclusive-learning-content {
  position: relative;
}
.inclusive-learning-content p {
  color: var(--clr-text-slate);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  max-width: 800px;
  margin: 0 auto 30px;
}
.inclusive-learning-content p:nth-child(1) {
  color: var(--clr-text-slate);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

.inclusive-learning-main-card {
  background-color: var(--clr-navy-primary);
  max-width: 882px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 30px;
  text-align: center;
}
.inclusive-learning-main-card h2 {
  color: var(--clr-gold-highlight);
  text-align: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 150% */
  letter-spacing: 0.352px;
}

.inclusive-learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}
.inclusive-cards {
  padding: 20px;
  background-color: var(--clr-bg-white);
  border-radius: 10px;
}
.inclusive-cards span {
  min-width: 64px;
  min-height: 64px;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: #ffd70020;
}
.inclusive-cards:nth-child(2) span {
  background-color: #1c3f9520;
}
.inclusive-cards:nth-child(3) span {
  background-color: #e6394620;
}
.inclusive-cards p {
  color: var(--clr-navy-primary);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 160%;
  margin-top: 20px;
  margin-bottom: 0;
}
.inclusive-learning-footer {
  margin-top: 20px;
  background-color: var(--clr-red-accent);
  padding: 20px;
  border-radius: 10px;
}
.inclusive-learning-footer p {
  color: var(--clr-bg-white) !important;
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 0;
}
.inclusive-footer-content img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 20%);
  max-width: 100%;
}
.inclusive-learning-main-card-footer h3 {
  color: var(--clr-gold-highlight);
  text-align: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 150% */
  letter-spacing: 0.352px;
  margin: 20px 0 0;
}
.meet-the-creator-main {
  padding: 300px 0 90px;
  background-color: var(--clr-bg-neutral);
}
.meet-the-creator-content h3 {
  color: var(--clr-text-slate);
  text-align: center;
  font-family: var(--ff-h3);
  font-size: var(--fs-h3);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 30px;
}
.meet-the-creator-content p {
  color: var(--clr-text-slate);
  text-align: center;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 30px;
}
.meet-the-creator-header {
  margin-bottom: 60px;
}
.tagline {
  padding: 30px;
  border-radius: 30px;
  background: var(--clr-gold-highlight);
  position: relative;
}
.tagline h3 {
  background-color: var(--clr-red-accent);
  padding: 30px;
  border-radius: 10px;
  color: var(--clr-bg-white);
  text-align: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.352px;
}
.meet-the-creator-main-content {
  max-width: 880px;
  margin: 0 auto;
}
.tagline::before {
  top: 50%;
  left: -92px;
  background: url(../images/tagline-animation-2.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 50px;
  height: 68px;
  transform: translate(50%, -50%);
  animation-duration: 2.5s;
}
.tagline::after {
  top: 50%;
  right: -90px;
  background: url(../images/tagline-animation.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 50px;
  height: 68px;
  transform: translate(50%, -50%);
  animation-duration: 3.5s;
}

/* --- FOOTER STYLES --- */
.main-footer {
  background-color: var(--clr-navy-primary);
  padding: 80px 0 60px;
  color: var(--clr-bg-white);
  font-family: var(--ff-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.footer-grid h2 {
  color: var(--clr-gold-highlight);
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  margin-bottom: 20px;
}

.footer-grid h3 {
  color: var(--clr-gold-highlight);
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  margin-bottom: 25px;
}

.footer-grid p {
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 530px;
  opacity: 0.8;
  color: #ffffffcc;
}

.footer-grid ul {
  list-style: disc;
  padding-left: 0;
  margin-left: 20px;
}

.footer-grid li {
  margin-bottom: 6px;
  font-size: var(--fs-body);
  opacity: 0.9;
}

.footer-grid li a {
  color: #ffffffcc;
  transition: color 0.3s ease;
}

.footer-grid li a:hover {
  color: var(--clr-gold-highlight);
}

/* Yellow dot markers for ul li as requested */
.footer-grid li::marker {
  color: var(--clr-red-accent);
  font-size: 1.2em;
}

.main-footer hr {
  border: 0;
  background-color: var(--clr-gold-highlight);
  margin: 40px 0;
  opacity: 1;
  height: 1px;
}

.footer-bottom p {
  font-size: var(--fs-sm);
  opacity: 0.6;
}
/* Problem */
.problem-main {
  padding-top: 120px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 70px;
}
.problem-card-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.problem-img {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
.problem-box-blue,
.problem-box-yellow {
  position: relative;
  width: fit-content;
}
.problem-box-blue::after {
  content: "";
  position: absolute;
  bottom: -62px;
  left: 32%;
  transform: translate(-50%, 50%);
  background: url(../images/problem-svg-6.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 32px;
  height: 44px;
}
.problem-box-yellow::after {
  content: "";
  position: absolute;
  bottom: 30px;
  right: -50px;
  transform: translate(-50%, 50%);
  background: url(../images/problem-svg-5.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 32px;
  height: 44px;
}

.problem-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.problem-card-header span {
  background-color: #1c3f951a;
  border: 1px solid #1c3f954d;
  color: var(--clr-navy-primary);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  display: inline-block;
  white-space: nowrap;
}
.problem-card-header::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background-color: var(--clr-navy-primary);
  opacity: 0.2;
}

.problem-card h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  color: var(--clr-navy-primary);
  margin-bottom: 40px;
}

.problem-card p {
  color: var(--clr-text-slate);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: normal;
  margin-bottom: 30px;
}
.problem-card h6 {
  color: var(--clr-text-slate);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 160%;
}
.main-problem-section {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.main-problem-section .problem-grid:last-child .problem-box-yellow {
  margin-bottom: 128px;
}
.solution-right-grid {
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: end;
}
.main-problem-section .problem-grid:last-child .problem-box-yellow::after {
  content: "";
  bottom: -100px;
  right: 0px;
  background: url(../images/solution-animated.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 180px;
  height: 80px;
  position: absolute;
}
.music-card {
  background-color: var(--clr-gold-highlight);
  width: fit-content;
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}
.video-main {
  position: relative;
  padding: 120px 0 240px;
}
.video-content {
  height: 484px;
  max-width: 861px;
  background-color: var(--clr-navy-primary);
  margin: 0 auto;
  position: relative;
  z-index: 5;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(28, 63, 149, 0.3);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.video-play-btn-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(28, 63, 149, 0.2) 0%,
    transparent 100%
  );
  z-index: 1;
}

.video-play-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.video-play-btn {
  width: 100px;
  height: 100px;
  background-color: var(--clr-gold-highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--clr-red-accent);
  box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  animation: pulse-button 2s infinite;
}

.video-play-btn svg {
  width: 40px;
  height: 40px;
  margin-left: 0px;
}

.video-play-btn-wrap:hover .video-thumb {
  transform: scale(1.05);
}

.video-play-btn-wrap:hover .video-play-btn {
  background-color: var(--clr-red-accent);
  color: var(--clr-bg-white);
  transform: translate(-50%, -50%) scale(1.1);
  animation: none;
}

.video-play-btn-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
  z-index: 2;
}

.video-play-btn-wrap:hover::after {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes pulse-button {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.video-main::before {
  content: "";
  height: 554px;
  width: 100%;
  background-color: var(--clr-bg-soft-blue);
  position: absolute;
  top: 0;
  left: 0;
}
.video-main::after {
  content: "";
  height: 242px;
  width: 100%;
  background: url(../images/video-bg.svg);
  position: absolute;
  bottom: 52px;
  background-repeat: no-repeat;
  left: 0;
}
.mobileshape {
  display: none;
}
/* Form Section Styles */
.form-main {
  padding: 120px 0;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.form-header span {
  background-color: #1c3f951a;
  border: 1px solid #1c3f954d;
  color: var(--clr-navy-primary);
  padding: 8px 24px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  white-space: nowrap;
}

.form-header::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background-color: var(--clr-navy-primary);
  opacity: 0.2;
}

.form-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-content h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  color: var(--clr-navy-primary);
  margin-bottom: 40px;
  line-height: 1;
  letter-spacing: -1px;
}

.form-content p {
  font-family: var(--ff-body);
  font-size: var(--ff-body);
  color: var(--clr-text-slate);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.85;
}

.form-content h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  color: var(--clr-red-accent);
  margin-bottom: 10px;
  line-height: 1.2;
}

.form-content ol {
  list-style: none;
  counter-reset: item;
  padding: 0;
}

.form-content ol li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: #364153;
  font-weight: 500;
}

.form-content ol li::before {
  content: counter(item);
  counter-increment: item;
  background-color: var(--clr-red-accent);
  color: white;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-main {
  background: url(../images/testimonial-slider.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Watermark background text */
.testimonials-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-heading);
  font-size: 190px;
  color: var(--clr-grey);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Decorative elements matching image */
.testimonial-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.circle-1 {
  width: 260px;
  height: 260px;
  border: 30px solid var(--clr-grey);
  top: 10%;
  right: -8%;
}

.circle-2 {
  width: 150px;
  height: 150px;
  border: 18px solid var(--clr-grey);
  bottom: 20px;
  left: -80px;
}

.dot-left {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  top: 55%;
  left: 15%;
}

.testimonial-arrow {
  position: absolute;
  right: 28%;
  top: 58%;
  width: 0;
  height: 0;
  border-left: 12px solid var(--clr-gold-highlight);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  z-index: 2;
  transform: rotate(-20deg);
}

/* Slider wrapper */
.testimonials-slider-wrap {
  position: relative;
  z-index: 1;
  max-width: 560px;
  height: min(70vh, 620px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-swiper {
  overflow: visible;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
}

.testupjoin {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Override default Swiper cards styling for proper stack */
.testimonials-swiper .swiper-slide {
  border-radius: 0;
  background-color: #e4e8ef;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform-origin: center bottom;
}

.testimonials-swiper .swiper-slide-active {
  background-color: var(--clr-bg-white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* Remove Swiper's default dark shadow overlay on stacked cards */
.testimonials-swiper .swiper-slide-shadow {
  display: none !important;
}

.testimonial-card {
  background-color: var(--clr-bg-white);
  padding: 35px 30px 30px;
  position: relative;
  border: 1px solid var(--clr-navy-primary);
  max-width: 420px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  justify-content: center;
  position: relative;
  align-items: center;
}
.testimonial-stars::before {
  content: "";
  height: 2px;
  width: 80px;
  background-color: var(--clr-gold-highlight);
  margin-right: 20px;
}
.testimonial-stars::after {
  margin-left: 20px;
  content: "";
  height: 2px;
  width: 80px;
  background-color: var(--clr-gold-highlight);
}
.testimonial-stars {
  color: var(--clr-gold-highlight);
}
.unfilled {
  color: var(--clr-bg-soft-blue);
}
.testimonial-card p {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text-slate);
  line-height: 160%;
  margin-bottom: 30px;
  text-align: center;
}

.testimonial-card h4 {
  color: var(--clr-red-accent);
  text-align: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 150% */
  letter-spacing: 0.352px;
}
/* Timeline Credibility */
.timeline-main {
  background-color: var(--clr-navy-primary);
  padding: 90px 0;
  overflow-x: hidden;
}
.timeline-header {
  text-align: center;
}
.timeline-header span {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-bg-white);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.15px;
  padding: 8px 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.timeline-header h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  color: var(--clr-gold-highlight);
  margin-bottom: 40px;
  line-height: 1;
  letter-spacing: -1px;
}

.timeline-images ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  position: relative;
}

/* Background line connecting all icons horizontally */
.timeline-images ul::before {
  content: "";
  position: absolute;
  top: 15px; /* Exactly vertical center of the 30px SVGs */
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: var(--clr-grey);
  z-index: 1; /* Drop it behind the LIs */
}

.timeline-images ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--clr-grey);
  position: relative;
  z-index: 2; /* Keep SVGs and text on top */
  gap: 15px; /* Space between icon and year text */
}

/* The wrapper creates the gap in the line visually */
.timeline-images ul li .icon-wrap {
  background: var(--clr-navy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.timeline-images ul li .icon-wrap svg {
  display: block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.timeline-images ul li .year {
  font-family: var(--ff-heading);
  font-size: var(--fs-h5);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Custom active colors per year - Pattern: Red, Yellow, White */

/* Red years: 2005, 2010 (1st), 2013 (2nd), 2025 */
.timeline-images ul li:nth-child(1) .icon-wrap .active,
.timeline-images ul li:nth-child(1) .year.active-text,
.timeline-images ul li:nth-child(4) .icon-wrap .active,
.timeline-images ul li:nth-child(4) .year.active-text,
.timeline-images ul li:nth-child(7) .icon-wrap .active,
.timeline-images ul li:nth-child(7) .year.active-text,
.timeline-images ul li:nth-child(10) .icon-wrap .active,
.timeline-images ul li:nth-child(10) .year.active-text {
  color: var(--clr-red-accent) !important;
}

/* Yellow years: 2006, 2010 (2nd), 2023 */
.timeline-images ul li:nth-child(2) .icon-wrap .active,
.timeline-images ul li:nth-child(2) .year.active-text,
.timeline-images ul li:nth-child(5) .icon-wrap .active,
.timeline-images ul li:nth-child(5) .year.active-text,
.timeline-images ul li:nth-child(8) .icon-wrap .active,
.timeline-images ul li:nth-child(8) .year.active-text {
  color: var(--clr-gold-highlight) !important;
}

/* White years: 2009, 2013 (1st), 2024 */
.timeline-images ul li:nth-child(3) .icon-wrap .active,
.timeline-images ul li:nth-child(3) .year.active-text,
.timeline-images ul li:nth-child(6) .icon-wrap .active,
.timeline-images ul li:nth-child(6) .year.active-text,
.timeline-images ul li:nth-child(9) .icon-wrap .active,
.timeline-images ul li:nth-child(9) .year.active-text {
  color: var(--clr-bg-white) !important;
}

.timeline-images ul li svg {
  /* transition: color 0.3s ease; */
  flex-shrink: 0;
}
.time-line-cards {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.time-line-cards.active h2 {
  color: var(--clr-grey);
  text-align: center;
  font-family: var(--ff-heading);
  font-size: 300px;
  font-style: normal;
  font-weight: 400;
  line-height: 300px; /* 100% */
  will-change: font-size;
  transition: font-size 0s ease;
}
.time-line-detail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.time-line-detail img {
  margin-bottom: 10px;
}
.time-line-detail h3 {
  color: var(--clr-bg-white);
  text-align: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.352px;
  max-width: 420px;
  margin: 0 auto;
}
.time-line-detail {
  display: none;
}
.time-line-cards.active .time-line-detail {
  display: block;
}
.time-line-cards h2 {
  color: var(--clr-grey);
  text-align: center;
  font-family: var(--ff-heading);
  font-size: 200px;
  font-style: normal;
  font-weight: 400;
  line-height: 200px; /* 100% */
  will-change: font-size;
  transition: none;
}
.timeline-years {
  position: relative;
  padding: 50px 0;
  min-height: 450px;
  overflow: hidden;
}
.timeline-years .swiper-wrapper {
  align-items: center;
}
.timeline-next {
  cursor: pointer;
  content: "";
  position: absolute;
  background: url(../images/next.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 166px;
  height: 60px;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  z-index: 10;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.timeline-prev {
  cursor: pointer;
  content: "";
  position: absolute;
  background: url(../images/prev.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 166px;
  height: 60px;
  top: 50%;
  z-index: 10;
  left: 20%;
  transform: translateY(-50%);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.timeline-prev:focus-visible,
.timeline-next:focus-visible {
  outline: none;
}

/* Hide navigation buttons at beginning and end */
.timeline-next.swiper-button-disabled,
.timeline-prev.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
/* Custome Form */
.main-form {
  background-color: var(--clr-bg-neutral);
  padding: 30px;
}
.main-form p {
  color: #6a7282;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 114%; /* 114.286% */
  margin-top: 30px;
}
.main-form .gform_validation_errors,
.main-form .gform_heading {
  display: none !important;
}
.main-form .gform_wrapper {
  margin: 0 !important;
  max-width: 100% !important;
}
/* Field Spacing */
.main-form .gfield {
  margin-bottom: 20px !important;
}
/* Label Styling */
.main-form .gfield_label {
  font-family: var(--ff-body) !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: var(--clr-text-slate) !important;
  margin-bottom: 2px !important;
}

/* Required Star */
.main-form .gfield_required {
  color: #f56565 !important;
  margin-left: 4px;
}
/* Input & Textarea Styling */
.main-form input[type="text"],
.main-form input[type="email"],
.main-form input[type="tel"],
.main-form textarea {
  width: 100% !important;
  background-color: var(--clr-bg-white) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 22px 20px !important;
  font-family: var(--ff-body);
  font-size: 16px !important;
  color: var(--clr-text-main) !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
}
/* Focus States */
.main-form input:focus,
.main-form textarea:focus {
  border-color: #ffd700 !important;
  background-color: #ffffff !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15) !important;
}
/* Textarea specific */
.main-form textarea {
  min-height: 120px !important;
}
/* Checkboxes & Radios (if needed) */
.main-form .gfield_checkbox li,
.main-form .gfield_radio li {
  margin-bottom: 8px !important;
}
/* --- Submit Button (Yellow Branding) --- */
.main-form .gform_footer {
  padding: 0 !important;
  margin: 0 !important;
}
.main-form input[type="submit"].gform_button {
  background: var(--clr-gold-highlight) !important; /* Yellow Brand Color */
  color: #000000 !important;
  font-family: var(--ff-body);
  font-weight: 400 !important;
  font-size: 18px !important;
  padding: 16px !important;
  border-radius: 50px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center;
  margin-top: 10px;
}
.main-form input[type="submit"].gform_button:hover {
  transform: translateY(-3px) !important;
  background: #ffcc00 !important;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5) !important;
}
/* Validation & Error States */
.main-form .gfield_error input,
.main-form .gfield_error textarea {
  border-color: #feb2b2 !important;
  background-color: #fff5f5 !important;
}
.main-form .validation_message {
  color: #e53e3e !important;
  font-size: 14px !important;
  margin-top: 6px !important;
}
.gform-theme--foundation .gform_fields {
  gap: 0 !important;
}
.main-form label.gfield_label.gform-field-label {
  gap: 0 !important;
}
.main-form input::placeholder,
.main-form textarea::placeholder {
  color: #24405166 !important;
  opacity: 1; /* Firefox fix */
}
.main-form select {
  width: 100% !important;
  background-color: var(--clr-bg-white) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 4px 20px !important;
  font-family: var(--ff-body);
  font-size: 16px !important;
  color: var(--clr-text-main) !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
  min-height: 44px !important;
}
.main-form select:focus {
  outline: none;
}
.main-form textarea {
  padding: 10px !important;
}
.hero-sub-content h2:nth-child(2) {
  padding: 14px 58px;
  border: 3px solid var(--clr-navy-primary);
}
div#gform_confirmation_message_1 {
  background-color: #1c3f951a;
  border: 1px solid #1c3f954d;
  color: var(--clr-navy-primary);
  padding: 8px 24px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-align: center;
}

.testupjoincard {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 520px);
  transform-origin: center center;
}

.musicsound::before {
    content: "";
    position: absolute;
    top: -60px;
    right: 110px;
    background: url(../images/problem-svg-4.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 34px;
    height: 40px;
}
.musicsound {
    position: relative;
}
.flexrow {
    display: flex;
    grid-gap: 10px;
    margin-left: 30px;
}
.iconlink a {
    border-radius: 30px;
    background: var(--clr-bg-soft-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
a.button-shop {
    background-color: var(--clr-red-accent);
 
  color: var(--clr-bg-white);
  font-family: var(--ff-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  padding: 6px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: none;
  position: relative;
  overflow: hidden;
}

a.button-shop::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--clr-bg-white);
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.3s ease;
}

a.button-shop:hover {
 background-color: var(--clr-navy-primary);
  color: var(--clr-bg-white);
}

a.button-shop:hover::after {
  transform: translateX(5px);
}
.musicsound img{
  width: 100%;
}