/* Animation definitions */
@keyframes two-columns-hero-section-up-down-animation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(238, 49, 36, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(238, 49, 36, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(238, 49, 36, 0);
  }
}

/* Main Section - Centered layout */
.two-columns-hero-section {
  position: relative;
  width: 100%;
  min-height: 860px;
  background: radial-gradient(circle at 50% 15%, rgba(238, 49, 36, 0.05) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at 50% 85%, rgba(23, 23, 23, 0.04) 0%, rgba(255, 255, 255, 0) 65%),
              #fafafa !important;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0 60px 0;
}

@media (max-width: 991px) {
  .two-columns-hero-section {
    min-height: auto;
    height: auto;
    padding: 60px 0 40px 0;
  }
}

/* Content Area - centered alignment */
.two-columns-hero-section__content {
  padding-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Premium Badge Pill */
.hero-badge-link {
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}
.hero-badge-link:hover {
  transform: translateY(-2px);
}
.hero-badge-container {
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.hero-badge-link:hover .hero-badge-container {
  border-color: rgba(238, 49, 36, 0.2);
  box-shadow: 0 6px 20px rgba(238, 49, 36, 0.05);
}
.hero-badge-pill {
  background-color: var(--primary) !important;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-glow 2s infinite ease-in-out;
}
.uppercase-tracking {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-main-text {
  font-size: 13px;
  font-weight: 500;
  color: #374151 !important;
}
.hero-badge-arrow {
  transition: transform 0.3s ease;
}
.hero-badge-link:hover .hero-badge-arrow {
  transform: translateX(3px);
}

/* Typography elements */
.hero-main-title {
  font-size: clamp(2.25rem, 5.5vw, 3.85rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
}
.hero-title-line-1 {
  color: #111827;
  display: block;
}
.js-two-columns-hero-highlight-words-card {
  position: relative;
  display: inline-block;
  padding-right: 4px;
  font-weight: 800;
}
.js-two-columns-hero-highlight-words-card::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 9px;
  background: rgba(238, 49, 36, 0.12);
  border-radius: 4px;
  z-index: -1;
}
.hero-title-line-2 {
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 500;
  color: #4b5563 !important;
  line-height: 1.35;
  max-width: 750px;
  display: block;
}
.hero-description {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #6b7280 !important;
  max-width: 700px;
  text-align: center;
}

/* Centered Button alignment */
.hero-btn-primary {
  box-shadow: 0 4px 14px rgba(238, 49, 36, 0.3) !important;
  transition: all 0.3s ease !important;
  min-width: 200px;
  justify-content: center;
}
.hero-btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(238, 49, 36, 0.45) !important;
}
.hero-btn-secondary {
  border: 1px solid rgba(23, 23, 23, 0.12) !important;
  background: #ffffff !important;
  transition: all 0.3s ease !important;
  min-width: 200px;
  justify-content: center;
}
.hero-btn-secondary:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(23, 23, 23, 0.25) !important;
  background: #fdfdfd !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04) !important;
}

/* Graduates Card Centering */
.hero-students-widget {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  text-decoration: none !important;
  margin-left: auto;
  margin-right: auto;
}
.hero-students-widget:hover {
  transform: translateY(-3px);
  border-color: rgba(238, 49, 36, 0.2);
  box-shadow: 0 12px 30px rgba(238, 49, 36, 0.08);
}
.hero-students-widget-text {
  text-align: left;
}

/* Centered Image Showcase styling */
.hero-image-side-container {
  z-index: 5;
  width: 100%;
}
.hero-img-decor-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  background: radial-gradient(circle, rgba(238, 49, 36, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 820px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
  border: 6px solid #ffffff;
  background-color: #ffffff;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
}
.hero-image-wrapper:hover {
  transform: translateY(-8px) scale(1.005);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.12);
}
.hero-main-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.mt-56 {
  margin-top: 56px;
}
