/* Custom resets and base styles outside of Tailwind */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #2C3E50;
  background-color: #F7FAFC;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #F7FAFC;
}

::-webkit-scrollbar-thumb {
  background: #1FA59A;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #178a80;
}

/* Global Variables */
:root {
  --primary: #1FA59A;
  --secondary: #2C3E50;
  --accent: #3BC6B9;
  --bgsoft: #F7FAFC;
  --text-gray-500: #6b7280;
  --text-gray-600: #4b5563;
  --text-gray-700: #374151;
  --box-shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #1FA59A, #2C3E50);
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.hover-card-up {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-card-up:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(44, 62, 80, 0.15);
}

.img-zoom-container {
  overflow: hidden;
}

.img-zoom-container img {
  transition: transform 0.6s ease;
  display: block;
}

.img-zoom-container:hover img {
  transform: scale(1.1);
}

@keyframes bounceSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: #178a80;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(31, 165, 154, 0.4);
}

/* --- HEADER --- */
.main-header {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: var(--box-shadow-soft);
  top: 0;
  left: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-menu {
    display: flex;
  }
}

.nav-link,
.nav-btn {
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-family: inherit;
}

.nav-link:hover,
.nav-btn:hover {
  color: var(--primary);
}

.nav-btn i {
  margin-left: 0.25rem;
  font-size: 0.75rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 12rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: var(--box-shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  transform: translateY(0.5rem);
  z-index: 50;
  padding: 0.5rem 0;
}

.nav-dropdown-menu.nav-menu-lg {
  min-width: 16rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-gray-700);
  transition: all 0.3s;
}

.dropdown-link:hover {
  background-color: var(--bgsoft);
  color: var(--primary);
}

.mobile-menu-trigger {
  display: flex;
  align-items: center;
  height: 100%;
}

@media (min-width: 768px) {
  .mobile-menu-trigger {
    display: none;
  }
}

.btn-icon {
  color: var(--secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}

.btn-icon i {
  font-size: 1.5rem;
}

.btn-icon:hover {
  color: var(--primary);
}

.mobile-dropdown {
  background: #fff;
  border-top: 1px solid #f3f4f6;
  box-shadow: var(--box-shadow-soft);
  position: absolute;
  width: 100%;
  top: 100%;
  max-height: 80vh;
  overflow-y: auto;
  left: 0;
}

.mobile-dropdown.hidden {
  display: none;
}

@media (min-width: 768px) {
  .mobile-dropdown {
    display: none !important;
  }
}

.mobile-content {
  padding: 0.5rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-link {
  display: block;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary);
  border-radius: 0.375rem;
}

.mobile-link:hover {
  color: var(--primary);
  background: var(--bgsoft);
}

.mobile-group {
  padding: 0.5rem 0.75rem;
}

.mobile-heading {
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary);
  pointer-events: none;
  margin-bottom: 0.5rem;
}

.mobile-subgroup {
  padding-left: 1rem;
  border-left: 2px solid var(--bgsoft);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-sublink {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-gray-600);
}

.mobile-sublink:hover {
  color: var(--primary);
}

.spacer-h20 {
  height: 5rem;
  width: 100%;
  background-color: white;
  position: relative;
  z-index: 40;
}

/* --- FOOTER --- */
.main-footer {
  background-color: #F0F7F9;
  color: var(--text-gray-700);
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: 5rem;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #f3f4f6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 3rem;
  }
}

.footer-col {
  grid-column: span 1 / span 1;
}

@media (min-width: 768px) {
  .footer-col {
    grid-column: span 4 / span 4;
  }

  .footer-col:nth-child(2) {
    justify-self: center;
  }

  .footer-col:nth-child(3) {
    justify-self: end;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 4rem;
  width: auto;
  mix-blend-mode: multiply;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-gray-600);
  margin-bottom: 2rem;
  line-height: 1.625;
  padding-right: 1rem;
}

.footer-title {
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.footer-links-grid {
  display: grid;
  /* grid-template-columns: repeat(1, minmax(0, 1fr)); */
  gap: 1rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: var(--text-gray-500);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-link i {
  font-size: 10px;
  color: var(--primary);
}

.footer-contact-info {
  color: var(--text-gray-500);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.625;
  margin: 0;
}

.footer-contact-info p {
  margin: 0;
}

.footer-contact-link {
  color: var(--text-gray-500);
  transition: color 0.3s;
  text-decoration: none;
}

.footer-contact-link:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: var(--text-gray-500);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .footer-social {
    margin-top: 0;
  }
}

.social-label {
  color: var(--text-gray-600);
  font-weight: 500;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  text-decoration: none;
  font-size: 1rem;
}

.social-icon:hover {
  transform: translateY(-4px);
}

.social-fb {
  color: #3b5998;
}

.social-ig {
  color: #f02626;
}

.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.float-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.float-btn-wa {
  background-color: #25D366;
  color: #fff;
}

.float-btn-wa i {
  font-size: 1.875rem;
}

.float-btn-call {
  background-color: var(--primary);
  color: #fff;
}

.float-btn-call i {
  font-size: 1.5rem;
}

.float-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 1rem;
  background: #fff;
  color: #1f2937;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateX(1rem);
  pointer-events: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --- SECTION & PAGES BASE --- */
.section-py {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-white {
  background-color: #fff;
}

.section-soft {
  background-color: var(--bgsoft);
}

.section-secondary {
  background-color: var(--secondary);
  color: #fff;
}

.section-relative {
  position: relative;
  overflow: hidden;
}

.section-content-z {
  position: relative;
  z-index: 10;
}

.page-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
  z-index: 0;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  /* mix-blend-mode: ; */
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3.75rem;
  }
}

.page-title span {
  color: var(--accent);
}

.page-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto;
}

.breadcrumbs {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.breadcrumbs a {
  color: inherit;
  transition: color 0.3s;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span.current {
  color: #fff;
}

.sec-tagline {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.sec-heading {
  font-size: 2.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  margin-top: 0;
}

@media(min-width: 768px) {
  .sec-heading {
    font-size: 3rem;
  }
}

.sec-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-gray-700);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.sec-desc {
  color: var(--text-gray-600);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  margin-top: 0;
}

.text-center {
  text-align: center;
}

/* Home/Index Overrides */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--secondary);
  height: 75vh;
}

.hero-img-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(44, 62, 80, 0.6) 0%, rgba(44, 62, 80, 0.4) 50%, rgba(44, 62, 80, 0.6) 100%);
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

.hero-slide .slide-bg {
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.hero-slide.active .slide-bg {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-max-w {
  max-width: 56rem;
  margin: 0 auto;
}

.hero-tagline {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-heading {
  font-size: 3rem;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  margin-top: 0;
}

@media(min-width: 768px) {
  .hero-heading {
    font-size: 4.5rem;
  }
}

@media(min-width: 1024px) {
  .hero-heading {
    font-size: 6rem;
  }
}

.hero-desc {
  font-size: 1.25rem;
  color: #f3f4f6;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.625;
  margin-top: 0;
}

@media(min-width: 768px) {
  .hero-desc {
    font-size: 1.5rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

@media(min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-btn-primary {
  background-color: var(--primary);
  color: #fff;
  border-radius: 9999px;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: transform 0.3s;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-primary:hover {
  transform: scale(1.05);
}

.hero-btn-secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 9999px;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-secondary:hover {
  background-color: #fff;
  color: var(--secondary);
}

.hero-dots-container {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hero-dot:hover {
  background-color: #fff;
}

.hero-dot.active {
  background-color: var(--primary);
  width: 2rem;
  border-radius: 1rem;
}

.blob-tr {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -5rem;
  margin-top: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background-color: rgba(31, 165, 154, 0.05);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.blob-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: -5rem;
  margin-bottom: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background-color: rgba(59, 198, 185, 0.1);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.check-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(31, 165, 154, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1rem;
}

.check-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.125rem;
  margin: 0 0 0.25rem 0;
}

.check-desc {
  color: var(--text-gray-500);
  font-size: 0.875rem;
  margin: 0;
}

.floating-card-container {
  position: relative;
  z-index: 10;
}

.floating-card-img {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.floating-card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.floating-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(44, 62, 80, 0.6) 0%, transparent 100%);
  z-index: 1;
}

.floating-card {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--box-shadow-soft);
  display: none;
  width: 16rem;
  z-index: 20;
}

@media (min-width: 768px) {
  .floating-card {
    display: block;
    animation: bounceSlow 3s infinite ease-in-out;
  }
}

.fc-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fc-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(59, 198, 185, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.fc-label {
  font-size: 0.875rem;
  color: var(--text-gray-500);
  font-weight: 500;
  margin: 0;
}

.fc-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--secondary);
  margin: 0;
}

.course-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f3f4f6;
  transition: transform 0.4s;
}

.course-img-wrap {
  height: 14rem;
  overflow: hidden;
  position: relative;
}

.course-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

.course-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  margin-top: 0;
}

.course-text {
  color: var(--text-gray-600);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0;
}

.course-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s;
  margin-top: auto;
  text-decoration: none;
}

.course-link:hover {
  color: var(--secondary);
}

.course-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.course-link:hover i {
  transform: translateX(4px);
}

.elements-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(31, 165, 154, 0.1);
  transform: skewX(-12deg);
  transform-origin: top right;
  z-index: 0;
}

.elements-heading {
  font-size: 2.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  margin-top: 0;
}

@media (min-width: 768px) {
  .elements-heading {
    font-size: 3rem;
  }
}

.elements-heading span {
  color: var(--accent);
  font-weight: 300;
}

.elements-text {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  margin-top: 0;
}

.elements-quote {
  color: #9ca3af;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  margin-top: 0;
}

.circle-presentation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.circle-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 2rem auto;
}

@media (min-width: 768px) {
  .circle-wrapper {
    width: 450px;
    height: 450px;
  }
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  padding: 1.5rem;
  background: #fff;
  border-radius: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  color: var(--primary);
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .center-logo {
    width: 280px;
    height: 280px;
    padding: 2.5rem;
  }
}

.circle-item-btn {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
}

.circle-active-ext,
.circle-item-btn:hover {
  background-color: var(--primary) !important;
  color: white !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  transform: translate(-50%, -50%) scale(1.1);
  z-index: 25 !important;
}

.circle-inactive-ext {
  background-color: white !important;
  color: var(--secondary) !important;
}

.circle-item-btn i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.feature-card {
  background: var(--bgsoft);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.feature-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--box-shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrap {
  background: var(--primary);
  color: #fff;
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.feature-text {
  color: var(--text-gray-600);
  margin: 0;
  line-height: 1.5;
  font-size: 1rem;
}

.feature-card-special {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.feature-special-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 165, 154, 0.1) 0%, transparent 100%);
  z-index: 0;
}

.feature-special-content {
  position: relative;
  z-index: 10;
}

.feature-icon-special {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(31, 165, 154, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* --- CUSTOM ANIMATIONS --- */
.animate-fade-up {
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* --- GALLERY --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.gallery-filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
  border: none;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid transparent;
  transform: translateY(-4px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-filter-btn:not(.active) {
  background-color: #fff;
  color: var(--secondary);
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.masonry-grid {
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 640px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .masonry-grid {
    column-count: 3;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--box-shadow-soft);
  transition: all 0.3s;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.7s;
}

.masonry-item:hover img {
  transform: scale(1.1);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(44, 62, 80, 0.8) 0%, rgba(44, 62, 80, 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-overlay span {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.contact-info-col {
  grid-column: span 1 / span 1;
}

@media (min-width: 1024px) {
  .contact-info-col {
    grid-column: span 4 / span 4;
  }
}

.contact-form-col {
  grid-column: span 1 / span 1;
}

@media (min-width: 1024px) {
  .contact-form-col {
    grid-column: span 8 / span 8;
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  transition: transform 0.3s;
}

.contact-item:hover .contact-icon-wrap {
  background-color: var(--primary);
  color: #fff;
}

.contact-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: var(--bgsoft);
  border: 1px solid #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  margin-top: 0;
}

.contact-text {
  color: var(--text-gray-600);
  line-height: 1.625;
  margin: 0;
}

.contact-link {
  color: var(--text-gray-600);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-top: 0.25rem;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-form-wrap {
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid #f3f4f6;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-form-wrap {
    padding: 3rem;
  }
}

.form-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: rgba(31, 165, 154, 0.05);
  border-bottom-left-radius: 9999px;
  margin-right: -2rem;
  margin-top: -2rem;
  z-index: 0;
}

.form-title {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.form-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .form-flex {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-group {
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  font-family: inherit;
  font-size: 1rem;
  color: var(--secondary);
  transition: all 0.3s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  background-color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(31, 165, 154, 0.2);
}

.form-textarea {
  resize: none;
}

.form-btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  margin-top: 1rem;
  box-shadow: 0 10px 15px -3px rgba(31, 165, 154, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-btn-submit i {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.form-btn-submit:hover i {
  transform: translateY(-4px) translateX(4px);
}

.map-container {
  width: 100%;
  height: 500px;
}

.map-iframe {
  border: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  transition: filter 0.7s;
}

.map-container:hover .map-iframe {
  filter: grayscale(0);
}

/* --- GENERIC INTERIOR PAGES --- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.content-card-box {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid #f3f4f6;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}

.content-card-box:hover {
  transform: translateY(-8px);
}

.content-icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  transition: all 0.3s;
}

.icon-primary {
  background-color: rgba(31, 165, 154, 0.1);
  color: var(--primary);
}

.content-card-box:hover .icon-primary {
  background-color: var(--primary);
  color: #fff;
}

.icon-accent {
  background-color: rgba(59, 198, 185, 0.2);
  color: var(--accent);
}

.content-card-box:hover .icon-accent {
  background-color: var(--accent);
  color: #fff;
}

.icon-secondary {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary);
}

.content-card-box:hover .icon-secondary {
  background-color: var(--secondary);
  color: #fff;
}

.quote-section {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.quote-text {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.625;
  font-style: italic;
  margin-bottom: 2rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .quote-text {
    font-size: 2.25rem;
  }
}

.quote-author {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(59, 198, 185, 0.5);
  margin-bottom: 1.5rem;
}

.quote-decor {
  position: absolute;
  width: 16rem;
  height: 16rem;
  background-color: #fff;
  opacity: 0.05;
  border-radius: 50%;
}

.quote-decor-1 {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.quote-decor-2 {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.profile-card {
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid #f3f4f6;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .profile-card {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.profile-img-col {
  height: 25rem;
  position: relative;
}

@media (min-width: 768px) {
  .profile-img-col {
    grid-column: span 5 / span 5;
    height: auto;
  }
}

.profile-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-content-col {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .profile-content-col {
    grid-column: span 7 / span 7;
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .profile-content-col {
    padding: 4rem;
  }
}

/* Stats Counter */
.stats-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.stats-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(white 2px, transparent 2px);
  background-size: 30px 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat-item {
  padding: 0 1rem;
  position: relative;
}

@media (min-width: 1024px) {
  .stat-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.stat-number-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07));
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .stat-number-wrap {
    font-size: 4.5rem;
  }
}

.stat-plus {
  color: var(--accent);
  font-size: 2.25rem;
  margin-left: 0.25rem;
}

@media (min-width: 1024px) {
  .stat-plus {
    font-size: 3.75rem;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Custom Content grids & special items */
.grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.steam-card {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
  border: 1px solid #f3f4f6;
  position: relative;
  overflow: hidden;
}

.steam-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-soft);
}

.steam-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  border-bottom-left-radius: 9999px;
  margin-right: -2rem;
  margin-top: -2rem;
  transition: transform 0.4s;
  z-index: 0;
}

.steam-card:hover .steam-card-bg {
  transform: scale(1.1);
}

.steam-letter {
  font-size: 3.75rem;
  font-weight: 900;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: #f3f4f6;
  z-index: 0;
  transition: color 0.4s;
  line-height: 1;
  margin: 0;
}

.steam-icon-box {
  position: relative;
  z-index: 10;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
}

.sc-title {
  position: relative;
  z-index: 10;
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.sc-text {
  position: relative;
  z-index: 10;
  color: var(--text-gray-600);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

/* Course Plans & Audience Cards */
.course-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.course-item {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .course-item {
    flex-direction: row;
  }
}

.course-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .course-content {
    width: 60%;
  }
}

.course-info-card {
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow-soft);
  padding: 2rem;
  border: 1px solid #f9fafb;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .course-info-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .course-info-card {
    width: 40%;
  }
}

.course-info-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.course-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.info-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 0.25rem 0;
}

.info-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  margin: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.audience-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 2.5rem;
  padding: 2rem;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(31, 165, 154, 0.1);
}

.audience-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.5s;
}

.audience-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
  margin-top: 0;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-gray-600);
}

.audience-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  margin-right: 0.75rem;
}

.audience-decor-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.375rem;
  transition: width 0.7s;
}

.audience-card:hover .audience-decor-bar {
  width: 100%;
}

.enroll-btn {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.enroll-btn:hover {
  background-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(31, 165, 154, 0.3);
}

/* specific colors for dynamic steam / audience cards */
.theme-primary .steam-card-bg {
  background-color: rgba(31, 165, 154, 0.05);
}

.theme-primary:hover .steam-letter {
  color: rgba(31, 165, 154, 0.3);
}

.theme-primary .steam-icon-box {
  background-color: rgba(31, 165, 154, 0.1);
  color: var(--primary);
}

.theme-primary:hover .steam-icon-box {
  background-color: var(--primary);
  color: #fff;
}

.theme-primary:hover .audience-title {
  color: var(--primary);
}

.theme-primary .audience-icon {
  background-color: rgba(31, 165, 154, 0.1);
  color: var(--primary);
}

.theme-primary:hover .audience-icon {
  background-color: var(--primary);
  color: #fff;
}

.theme-primary .audience-check {
  background-color: rgba(31, 165, 154, 0.1);
  color: var(--primary);
}

.theme-primary .audience-decor-bar {
  background-color: var(--primary);
}

.theme-accent .steam-card-bg {
  background-color: rgba(59, 198, 185, 0.05);
}

.theme-accent:hover .steam-letter {
  color: rgba(59, 198, 185, 0.3);
}

.theme-accent .steam-icon-box {
  background-color: rgba(59, 198, 185, 0.1);
  color: var(--accent);
}

.theme-accent:hover .steam-icon-box {
  background-color: var(--accent);
  color: #fff;
}

.theme-accent:hover .audience-title {
  color: var(--accent);
}

.theme-accent .audience-icon {
  background-color: rgba(59, 198, 185, 0.1);
  color: var(--accent);
}

.theme-accent:hover .audience-icon {
  background-color: var(--accent);
  color: #fff;
}

.theme-accent .audience-check {
  background-color: rgba(59, 198, 185, 0.1);
  color: var(--accent);
}

.theme-accent .audience-decor-bar {
  background-color: var(--accent);
}

.theme-secondary .steam-card-bg {
  background-color: rgba(44, 62, 80, 0.05);
}

.theme-secondary:hover .steam-letter {
  color: rgba(44, 62, 80, 0.3);
}

.theme-secondary .steam-icon-box {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary);
}

.theme-secondary:hover .steam-icon-box {
  background-color: var(--secondary);
  color: #fff;
}

.theme-secondary:hover .audience-title {
  color: var(--secondary);
}

.theme-secondary .audience-icon {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary);
}

.theme-secondary:hover .audience-icon {
  background-color: var(--secondary);
  color: #fff;
}

.theme-secondary .audience-check {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary);
}

.theme-secondary .audience-decor-bar {
  background-color: var(--secondary);
}

.theme-pink .steam-card-bg {
  background-color: rgba(236, 72, 153, 0.05);
}

.theme-pink:hover .steam-letter {
  color: rgba(236, 72, 153, 0.3);
}

.theme-pink .steam-icon-box {
  background-color: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.theme-pink:hover .steam-icon-box {
  background-color: #ec4899;
  color: #fff;
}

.theme-blue .steam-card-bg {
  background-color: rgba(59, 130, 246, 0.05);
}

.theme-blue:hover .steam-letter {
  color: rgba(59, 130, 246, 0.3);
}

.theme-blue .steam-icon-box {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.theme-blue:hover .steam-icon-box {
  background-color: #3b82f6;
  color: #fff;
}

.module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.module-item {
  background: var(--bgsoft);
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid #f3f4f6;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  cursor: pointer;
}

.module-item:hover {
  background: #fff;
  border-color: rgba(31, 165, 154, 0.2);
  box-shadow: 0 20px 25px -5px rgba(31, 165, 154, 0.05);
}

.module-num {
  color: rgba(31, 165, 154, 0.4);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  display: block;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.module-item:hover .module-num {
  color: var(--primary);
}

.module-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
  transition: color 0.3s;
  margin: 0;
}

.module-item:hover .module-title {
  color: var(--primary);
}

.module-bg {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 6rem;
  height: 6rem;
  background: rgba(31, 165, 154, 0.05);
  border-radius: 50%;
  transition: transform 0.7s;
  z-index: 0;
}

.module-item:hover .module-bg {
  transform: scale(1.5);
}/* --- NEW HERO SECTION --- */
.new-hero-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    background-color: #f8f9fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 5rem;
}

.new-hero-dots {
    position: absolute;
    top: 0;
    left: 20%;
    width: 400px;
    height: 200px;
    background-image: radial-gradient(#d1d5db 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 1;
}

.new-hero-image-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 2;
}

.new-hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.new-hero-shape-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    z-index: 3;
}

.new-hero-purple-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #5b2c6f;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding-left: 15%;
    z-index: 4;
}

.new-hero-yellow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 102%;
    height: 100%;
    background-color: #f1c40f;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    z-index: 3;
    transform: translateY(15px);
}

.new-hero-content-inner {
    width: 80%;
}

.new-hero-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight-yellow {
    color: #f1c40f;
}

.new-hero-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 2.5rem;
    max-width: 400px;
    line-height: 1.6;
}

.new-hero-subscribe-btn {
    display: inline-block;
    background-color: #f1c40f;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.new-hero-subscribe-btn:hover {
    transform: translateY(-3px);
}

.new-hero-website {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Bottom Bar */
.new-hero-bottom-bar {
    position: absolute;
    bottom: 20px;
    right: 5%;
    display: flex;
    align-items: stretch;
    z-index: 5;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.guarantee-box {
    background-color: #5b2c6f;
    color: #f1c40f;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    position: relative;
    z-index: 2;
}

.guarantee-percent {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.guarantee-text {
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.2;
}

.contact-box {
    background-color: #fff;
    padding: 1rem 2rem 1rem 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: -20px;
    z-index: 1;
    border-radius: 0 10px 10px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.contact-label {
    font-size: 0.75rem;
    color: #666;
}

.contact-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    font-family: 'Outfit', sans-serif;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #f1c40f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

/* Top Right Decor */
.decor-shapes {
    position: absolute;
    top: 30px;
    right: 5%;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.decor-yellow, .decor-purple {
    width: 20px;
    height: 50px;
    transform: skewX(-20deg);
}

.decor-yellow {
    background-color: #f1c40f;
}

.decor-purple {
    background-color: #5b2c6f;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .new-hero-purple-bg, .new-hero-yellow-bg {
        width: 70%;
        clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    }
    .new-hero-heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .new-hero-container {
        flex-direction: column;
        height: auto;
    }
    .new-hero-shape-wrapper {
        position: relative;
        width: 100%;
        height: 400px;
    }
    .new-hero-purple-bg, .new-hero-yellow-bg {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        padding-left: 5%;
    }
    .new-hero-image-box {
        position: relative;
        width: 100%;
        height: 300px;
    }
    .new-hero-bottom-bar {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -30px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .guarantee-box {
        clip-path: none;
        margin: 0;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .contact-box {
        margin: 0;
        border-radius: 10px;
    }
}
/* --- EXACT HERO BANNER --- */
.exact-hero-section {
    width: 100%;
    background-color: #f7fafc;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.exact-hero-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    margin: 0;
}

@media (max-width: 768px) {
    .exact-hero-container {
        aspect-ratio: auto;
        min-height: 800px;
        margin: 0;
    }
}

.exact-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.exact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.exact-hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #ffffff;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 2rem;
}

.exact-hero-container .contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.exact-hero-container .contact-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.exact-hero-container .c-label {
    font-size: 0.8rem;
    color: #000;
    font-weight: 600;
}

.exact-hero-container .c-phone {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
}

.exact-hero-container .c-icon {
    width: 40px;
    height: 40px;
    background-color: #f1c40f;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

.exact-hero-dots {
    position: absolute;
    top: 0;
    left: 20%;
    width: 50%;
    height: 250px;
    background-image: radial-gradient(#d1d5db 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 2;
}

.exact-hero-top-decor {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.exact-hero-container .decor-y, .exact-hero-container .decor-p {
    width: 25px;
    height: 60px;
    transform: skewX(-25deg);
    border-radius: 3px;
}

.exact-hero-container .decor-y { background-color: #f1c40f; }
.exact-hero-container .decor-p { background-color: #4f2683; }

.exact-hero-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.exact-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    padding: 2rem;
}

.exact-hero-container .logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exact-hero-container .logo-icon {
    position: relative;
    width: 30px;
    height: 30px;
}

.exact-hero-container .sq-yellow {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #f1c40f;
    border-radius: 3px;
}

.exact-hero-container .sq-purple {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: #4f2683;
    border-radius: 3px;
}

.exact-hero-container .logo-text {
    display: flex;
    flex-direction: column;
}

.exact-hero-container .l-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.exact-hero-container .l-sub {
    font-size: 0.6rem;
    color: #666;
    letter-spacing: 1px;
}

.exact-hero-container .main-text-area {
    margin-top: 8rem;
    margin-left: 2rem;
}

.exact-hero-container .main-title {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.exact-hero-container .text-yellow {
    color: #f1c40f;
}

.exact-hero-container .main-subtitle {
    color: #e0e0e0;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 350px;
}

.exact-hero-container .btn-subscribe {
    display: inline-block;
    background-color: #f1c40f;
    color: #000;
    font-weight: 800;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.exact-hero-container .btn-subscribe:hover {
    transform: translateY(-2px);
}

.exact-hero-container .website-url {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.exact-hero-container .guarantee-badge {
    position: absolute;
    bottom: 50px;
    right: 25%;
    background-color: #4f2683;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    transform: skewX(-20deg);
    z-index: 5;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.exact-hero-container .badge-inner {
    transform: skewX(20deg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.exact-hero-container .badge-percent {
    color: #f1c40f;
    font-size: 2rem;
    font-weight: 800;
}

.exact-hero-container .badge-text {
    color: #fff;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Make it responsive */
@media (max-width: 1024px) {
    .exact-hero-container .main-title { font-size: 3rem; }
    .exact-hero-container .guarantee-badge { right: 10%; bottom: 100px; }
}

@media (max-width: 768px) {
    .exact-hero-container {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .exact-hero-image {
        position: relative;
        width: 100%;
        height: 250px;
        order: 2;
    }
    .exact-hero-svg {
        display: none;
    }
    .exact-hero-content {
        position: relative;
        height: auto;
        background: #4f2683;
        order: 1;
        padding-bottom: 3rem;
    }
    .exact-hero-container .logo-area {
        background: #fff;
        margin: -2rem -2rem 2rem -2rem;
        padding: 1rem 2rem;
        border-radius: 0 0 30px 0;
        display: inline-flex;
    }
    .exact-hero-container .main-text-area {
        margin-top: 1rem;
    }
    .exact-hero-container .guarantee-badge {
        position: relative;
        right: auto;
        bottom: auto;
        transform: none;
        order: 3;
        margin: -30px 1rem 1rem;
        width: auto;
        justify-content: center;
    }
    .exact-hero-container .badge-inner {
        transform: none;
    }
    .exact-hero-bottom-bar {
        position: relative;
        order: 4;
        padding: 1rem;
        height: auto;
        justify-content: center;
    }
}
/* --- SPLIT CAROUSEL HERO --- */
body.home-page .main-header {
    background-color: transparent;
    box-shadow: none;
}
body.home-page .main-header.shadow-md {
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.split-hero-section {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: -5rem; /* Blend with navbar */
    background-color: var(--bgsoft);
}

.split-hero-left {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 5rem 5% 0 10%; /* Top padding to push below navbar */
    position: relative;
    z-index: 10;
}

.split-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.split-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.split-hero-desc {
    font-size: 1.125rem;
    color: var(--text-gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.split-hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-secondary-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.btn-secondary-outline:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(44, 62, 80, 0.2);
}

/* The right side container */
.split-hero-right {
    width: 50%;
    position: relative;
    height: 100vh;
}

.split-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); /* Angled left edge */
}

.split-carousel .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.split-carousel .hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.split-carousel .slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* We don't need a heavy overlay, maybe just a slight gradient */
.slide-overlay-shape {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, transparent 40%);
}

.split-hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.split-hero-dots .hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.split-hero-dots .hero-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

/* Decorative Shapes */
.split-hero-shape-top {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.split-hero-shape-bottom {
    position: absolute;
    bottom: -100px;
    right: 5%;
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

@media (max-width: 1024px) {
    .split-hero-title { font-size: 3rem; }
    .split-hero-left { padding: 5rem 5% 0 5%; }
}

@media (max-width: 768px) {
    .split-hero-section {
        flex-direction: column;
        margin-top: 0;
    }
    body.home-page .main-header {
        background-color: #fff; /* revert to solid on mobile */
    }
    .split-hero-left {
        width: 100%;
        min-height: 50vh;
        padding: 6rem 5% 2rem;
        text-align: center;
        justify-content: center;
    }
    .split-hero-actions {
        justify-content: center;
    }
    .split-hero-right {
        width: 100%;
        height: 50vh;
    }
    .split-carousel {
        clip-path: none;
    }
    .slide-overlay-shape {
        background: rgba(0,0,0,0.2);
    }
}
/* --- DESIGN 3 HERO & HEADER --- */
body.home-page .spacer-h20 {
    display: none;
}
body.home-page .main-header {
    background-color: transparent !important;
    box-shadow: none !important;
    padding-top: 1rem;
}
body.home-page .main-header.shadow-md {
    background-color: transparent !important;
}
body.home-page .main-header .header-inner {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
body.home-page .main-header.shadow-md .header-inner {
    padding: 0.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.nav-btn-enroll {
    background-color: #03a9f4; /* Blue */
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}
.nav-btn-enroll:hover {
    background-color: #0288d1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 169, 244, 0.4);
}

.design3-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
}

.d3-bg-dots {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(#b2ebf2 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.5;
    z-index: 0;
}

.d3-hero-container {
    display: flex;
    position: relative;
    z-index: 2;
    align-items: center;
    width: 100%;
}

.d3-hero-left {
    width: 50%;
    padding-right: 3rem;
}

.d3-welcome-badge {
    display: inline-flex;
    align-items: center;
    background-color: #e0f2f1;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.d3-badge-icon {
    background-color: #00897b;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-right: 0.8rem;
}
.d3-badge-text {
    color: #00695c;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.d3-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #1a237e; /* Dark Blue */
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.d3-text-green {
    color: #00bfa5; /* Teal/Green */
}

.d3-hero-desc {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.6;
}

.d3-hero-actions {
    display: flex;
    gap: 1rem;
}
.d3-btn-green {
    background-color: #00bfa5;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}
.d3-btn-green:hover {
    background-color: #00897b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 191, 165, 0.3);
    color: #fff;
}
.d3-btn-outline {
    background-color: #fff;
    color: #1a237e;
    border: 1px solid #cfd8dc;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}
.d3-btn-outline:hover {
    background-color: #f5f5f5;
    border-color: #1a237e;
    color: #1a237e;
}
.d3-btn-icon { margin-left: 0.5rem; }
.d3-btn-icon-left { margin-right: 0.5rem; }

/* Right Side Image */
.d3-hero-right {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.d3-image-frame {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 600px;
    background-color: #fff;
    border-radius: 40px 100px 40px 150px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
}

.d3-image-frame .hero-slide {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 30px 90px 30px 140px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}
.d3-image-frame .hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.d3-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Swoosh */
.d3-swoosh {
    position: absolute;
    bottom: -20px;
    left: -40px;
    width: 250px;
    height: 150px;
    background-color: #1a237e;
    border-radius: 0 100px 0 100px;
    z-index: -1;
    transform: rotate(-15deg);
}

/* Floating Badge inside image */
.d3-floating-badge {
    position: absolute;
    bottom: 80px;
    right: -20px;
    background-color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 10;
}
.d3-fbadge-icon {
    color: #00bfa5;
    font-size: 1.8rem;
    margin-right: 1rem;
}
.d3-fbadge-text {
    display: flex;
    flex-direction: column;
}
.d3-fbadge-title {
    font-weight: 800;
    color: #1a237e;
    font-size: 0.9rem;
}
.d3-fbadge-subtitle {
    font-size: 0.8rem;
    color: #00bfa5;
    font-weight: 600;
}

/* Carousel Controls */
.d3-carousel-controls {
    position: absolute;
    bottom: -25px;
    left: 20px;
    background-color: #1a237e;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.3);
    z-index: 10;
}
.d3-ctrl-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}
.d3-ctrl-btn:hover {
    background: rgba(255,255,255,0.3);
}
.d3-dots {
    display: flex;
    gap: 8px;
}
.d3-dots .hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.d3-dots .hero-dot.active {
    background-color: #fff;
    transform: scale(1.3);
}

/* Feature Cards Section */
.d3-features-section {
    position: relative;
    padding: 0 0 5rem 0;
    margin-top: -60px; /* Overlap hero slightly */
    z-index: 20;
}
.d3-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.d3-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.d3-feature-card:hover {
    transform: translateY(-5px);
}
.d3-fcard-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.d3-fcard-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.d3-fcard-desc {
    font-size: 0.9rem;
    color: #607d8b;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.d3-fcard-line {
    position: absolute;
    bottom: 20px;
    left: 1.5rem;
    width: 30px;
    height: 3px;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .d3-hero-title { font-size: 3.5rem; }
    .d3-image-frame { height: 500px; }
    .d3-features-grid { grid-template-columns: repeat(2, 1fr); }
    .d3-features-section { margin-top: 0; padding-top: 2rem; }
}
@media (max-width: 768px) {
    body.home-page .main-header .header-inner { border-radius: 0; padding: 1rem; }
    .nav-btn-enroll { display: none; }
    
    .d3-hero-container { flex-direction: column; text-align: center; }
    .d3-hero-left { width: 100%; padding-right: 0; margin-bottom: 3rem; display: flex; flex-direction: column; align-items: center; }
    .d3-hero-desc { text-align: center; }
    .d3-hero-right { width: 100%; justify-content: center; }
    .d3-image-frame { max-width: 100%; height: 400px; }
    .d3-floating-badge { right: 5%; bottom: 50px; }
    .d3-features-grid { grid-template-columns: 1fr; }
}
/* --- EXACT DESIGN 3 OVERRIDE --- */
.exact-d3-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 8rem; /* Increased to account for hidden spacer */
    padding-bottom: 5rem;
    overflow: hidden;
    background: radial-gradient(circle at top left, #d8f5f0 0%, #e6f6f9 20%, #f4f9fb 40%, #ffffff 60%);
    display: flex;
    align-items: center;
}

.exact-bg-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#ccc 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.4;
    z-index: 0;
}
.exact-bg-dots.top-left {
    top: 15%;
    left: 2%;
}
.exact-bg-dots.bottom-right {
    bottom: 5%;
    right: 5%;
}

.exact-bg-wave {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(230, 246, 249, 0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.exact-d3-hero-container {
    display: flex;
    position: relative;
    z-index: 2;
    align-items: center;
    width: 100%;
}

.exact-d3-left {
    width: 45%;
    padding-left: calc(max(1rem, (100vw - 80rem) / 2 + 1rem));
    padding-right: 2rem;
    position: relative;
    z-index: 5;
}

.exact-d3-badge {
    display: inline-flex;
    align-items: center;
    background-color: white;
    padding: 0.4rem 1.2rem 0.4rem 0.4rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.exact-badge-icon {
    background-color: #11a68d;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-right: 0.8rem;
}
.exact-badge-text {
    color: #11a68d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.exact-d3-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4.8rem;
    font-weight: 800;
    color: #112A46;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.exact-d3-text-grad {
    background: linear-gradient(90deg, #1a6dc0, #11a68d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exact-d3-desc {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.exact-d3-actions {
    display: flex;
    gap: 1rem;
}
.btn-exact-explore {
    background-color: #11a68d;
    color: white !important;
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(17, 166, 141, 0.3);
    transition: transform 0.3s;
}
.btn-exact-explore:hover {
    transform: translateY(-3px);
}
.btn-exact-explore .icon-circle {
    background-color: white;
    color: #11a68d;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-exact-contact {
    background-color: transparent;
    color: #112A46 !important;
    border: 2px solid #ccc;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    gap: 0.5rem;
    transition: all 0.3s;
}
.btn-exact-contact:hover {
    border-color: #112A46;
    background-color: #f8f9fa;
}

.exact-d3-right {
    width: 55%; /* Widened slightly */
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.exact-d3-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 700px;
    z-index: 2;
    margin-right: 0;
}

/* The magic swoosh gradient behind the image */
.exact-d3-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a6dc0 0%, #11a68d 100%);
    border-radius: 120px 20px 20px 300px;
    z-index: 1;
}

/* The image mask */
.exact-d3-image-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 120px 20px 20px 300px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    background: #fff;
}

.exact-d3-image-mask .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}
.exact-d3-image-mask .hero-slide.active {
    opacity: 1;
}
.exact-d3-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badge */
.exact-d3-floating-badge {
    position: absolute;
    bottom: 50px;
    right: -20px;
    background-color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 10;
}
.exact-d3-floating-badge .fbadge-icon {
    color: #11a68d;
    font-size: 1.8rem;
    margin-right: 1rem;
}
.exact-d3-floating-badge .fbadge-text {
    display: flex;
    flex-direction: column;
}
.exact-d3-floating-badge .fbadge-title {
    font-weight: 800;
    color: #112A46;
    font-size: 0.9rem;
}
.exact-d3-floating-badge .fbadge-subtitle {
    font-size: 0.8rem;
    color: #11a68d;
    font-weight: 600;
}

/* Carousel Controls */
.exact-d3-carousel-controls {
    position: absolute;
    bottom: 0px;
    left: -10px;
    background-color: #112A46;
    border-radius: 30px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(17, 42, 70, 0.3);
    z-index: 10;
}
.exact-ctrl-btn {
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.exact-d3-dots {
    display: flex;
    gap: 8px;
}
.exact-d3-dots .hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.exact-d3-dots .hero-dot.active {
    background-color: #12d8fa;
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .exact-d3-title { font-size: 3.5rem; }
    .exact-d3-image-wrapper { height: 500px; }
}
@media (max-width: 768px) {
    .exact-d3-hero-container { flex-direction: column; }
    .exact-d3-left { width: 100%; padding-left: 2rem; padding-right: 2rem; text-align: center; margin-bottom: 2rem; }
    .exact-d3-right { width: 100%; justify-content: center; }
    .exact-d3-image-wrapper { max-width: 100%; height: 400px; }
    .exact-d3-carousel-controls { left: 50%; transform: translateX(-50%); bottom: -20px; }
}

/* --- SWIPER TESTIMONIALS CAROUSEL --- */
.testimonials-swiper {
    width: 100%;
    padding-bottom: 3rem !important; /* Space for pagination */
    padding-top: 1rem;
}
.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.testimonial-text {
    padding: 2rem;
    position: relative;
    flex-grow: 1;
    order: 2;
}
.quote-icon {
    font-size: 2rem;
    color: #11a68d;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    left: 1rem;
}
.testimonial-text p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
}
.author-avatar {
    width: 45px;
    height: 45px;
    background-color: #11a68d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1rem;
}
.author-info h4 {
    font-weight: 700;
    color: #112A46;
    margin: 0;
    font-size: 1rem;
}
.author-info span {
    font-size: 0.8rem;
    color: #1fa2ff;
}
.testimonial-video {
    background: #f9fafb;
    padding: 1rem 1rem 0 1rem; /* Remove bottom padding */
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    order: 1;
    overflow: hidden;
}
/* Adjust Instagram embed to stretch nicely and hide likes/comments */
.testimonial-video iframe {
    border-radius: 8px !important;
    margin-bottom: -190px !important; /* Shrinks the container to hide the cropped space */
    clip-path: inset(0 0 190px 0); /* Visually crops the bottom 190px */
}
.swiper-pagination-bullet-active {
    background: #1fa2ff !important;
}
