/* SECTION BASE - ROUNDED OVERLAY EFFECT*/
.section-introduction {
  background: var(--color-bg-dark);
  position: relative;
  z-index: 10;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
/* Top border highlight */
.section-introduction::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.3) 20%,
    rgba(212, 175, 55, 0.5) 50%,
    rgba(212, 175, 55, 0.3) 80%,
    transparent 100%
  );
  border-radius: 40px 40px 0 0;
  z-index: 1;
}

/* Subtle gradient background + IMAGE (REPLACE your ::after block) */
.section-introduction::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* top/bottom cinematic darkening */
    radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 217, 255, 0.02) 0%, transparent 50%),
    url("../../assets/background/P.webp");
  background-size:
    cover,
    auto,
    auto,
    cover;
  background-position:
    center,
    20% 80%,
    80% 20%,
    center;
  background-repeat: no-repeat;
  /* optional: make image calmer + readable */
  filter: brightness(0.45) saturate(0.9);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit; /* important for rounded corners */
}

/*CONTENT CONTAINER*/
.section-introduction .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-3xl) 10%;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ABOUT CONTAINER - FLEX LAYOUT */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  max-width: 1400px;
}

/*  LEFT SIDE - TEXT cONTENT*/
.about-text {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

/* Subtitle */
.about-subtitle {
  font-size: 1.1rem;
  letter-spacing: 8px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}

/* Main Title */
.about-title {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--color-text-primary);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
  letter-spacing: -1px;
}

.about-title span {
  color: var(--color-gold);
  text-shadow: 0 0 40px var(--glow-gold);
}

/* Description */
.about-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.6s;
}

/* Highlight Text */
.about-highlight {
  font-size: 1rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.8s;
}

/* Animated Line */
.about-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal));
  margin: 30px 0;
  border-radius: var(--radius-full);
  transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 1s;
}

/* STATS SECTION */
.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 20px;
}

.stat-item {
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item:nth-child(1) { transition-delay: 1.2s; }
.stat-item:nth-child(2) { transition-delay: 1.4s; }
.stat-item:nth-child(3) { transition-delay: 1.6s; }

.stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--color-gold);
  display: inline;
  text-shadow: 0 0 30px var(--glow-gold);
  line-height: 1;
}

.stat-suffix {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-gold);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  font-weight: 500;
}

/* RIGHT SIDE - ICON BOXES */
.about-icons {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 480px;
}

/* Icon Box Card */
.icon-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  position: relative;
  overflow: hidden;
}

/* Staggered delays */
.icon-box:nth-child(1) { transition-delay: 0.3s; }
.icon-box:nth-child(2) { transition-delay: 0.5s; }
.icon-box:nth-child(3) { transition-delay: 0.7s; }
.icon-box:nth-child(4) { transition-delay: 0.9s; }

/* Hover state */
.icon-box:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Shine effect on hover */
.icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.icon-box:hover::before {
  left: 100%;
}

/* Icon Wrapper */
.icon-wrapper i {
  font-size: 2.8rem;
  color: var(--color-gold);
  filter: drop-shadow(0 0 8px var(--glow-gold));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-box:hover .icon-wrapper i {
  transform: scale(1.2) rotate(8deg);
  filter: drop-shadow(0 0 15px var(--glow-gold));
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-wrapper svg {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 10px var(--glow-gold));
}

/* Only show first SVG, hide others */
.icon-wrapper svg:not(:first-child) {
  display: none;
}

.icon-box:hover .icon-wrapper {
  transform: scale(1.2) rotate(8deg);
}

/* Icon Box Title */
.icon-box h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--color-text-primary);
  transition: color 0.3s ease;
}

.icon-box:hover h4 {
  color: var(--color-gold);
}

/* Icon Box Description */
.icon-box p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}

/* VISIBLE STATE ANIMATIONS */
.section-introduction.is-visible .about-subtitle,
.section-introduction.is-visible .about-title,
.section-introduction.is-visible .about-description,
.section-introduction.is-visible .about-highlight,
.section-introduction.is-visible .stat-item,
.section-introduction.is-visible .icon-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-introduction.is-visible .about-line {
  width: 100px;
}

/*FLOAT ANIMATION FOR ICON BOXES*/
@keyframes iconFloat {
  0%, 100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(-12px); 
  }
}

.section-introduction.is-visible .icon-box:nth-child(1) { 
  animation: iconFloat 4s ease-in-out infinite; 
  animation-delay: 0s; 
}
.section-introduction.is-visible .icon-box:nth-child(2) { 
  animation: iconFloat 4s ease-in-out infinite; 
  animation-delay: 0.5s; 
}
.section-introduction.is-visible .icon-box:nth-child(3) { 
  animation: iconFloat 4s ease-in-out infinite; 
  animation-delay: 1s; 
}
.section-introduction.is-visible .icon-box:nth-child(4) { 
  animation: iconFloat 4s ease-in-out infinite; 
  animation-delay: 1.5s; 
}

/* GLOW ANIMATION ON HOVER */
@keyframes iconGlow {
  0%, 100% { 
    box-shadow: 
      0 0 20px rgba(212, 175, 55, 0.15),
      0 20px 40px rgba(0, 0, 0, 0.2);
  }
  50% { 
    box-shadow: 
      0 0 40px rgba(212, 175, 55, 0.3),
      0 25px 50px rgba(0, 0, 0, 0.3);
  }
}

.icon-box:hover {
  animation: iconGlow 2s ease-in-out infinite;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
  .about-container {
    flex-direction: column;
    gap: 60px;
  }
  .about-text {
    text-align: center;
    max-width: 100%;
  }
  .about-line {
    margin-left: auto;
    margin-right: auto;
  }
  .about-stats {
    justify-content: center;
  }
  .about-icons {
    max-width: 100%;
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 1024px) {
  .section-introduction {
    border-radius: 35px 35px 0 0;
  }
  .about-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .about-stats {
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .section-introduction {
    border-radius: 30px 30px 0 0;
  }
  .section-introduction .content {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }
  .about-subtitle {
    letter-spacing: 5px;
    font-size: 0.8rem;
  }
  .about-description {
    font-size: 1rem;
  }
  .about-highlight {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .about-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .icon-box {
    padding: 25px 18px;
    border-radius: 16px;
  }
  .icon-wrapper svg {
    width: 35px;
    height: 35px;
  }
  .icon-box h4 {
    font-size: 0.9rem;
  }
  .icon-box p {
    font-size: 0.75rem;
  }
  .about-stats {
    flex-wrap: wrap;
    gap: 25px;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .stat-suffix {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-introduction {
    border-radius: 25px 25px 0 0;
  }
  .section-introduction .content {
    padding: var(--spacing-xl) var(--spacing-md);
  }
  .about-container {
    gap: 40px;
  }
  .about-subtitle {
    letter-spacing: 4px;
    font-size: 0.75rem;
  }
  .about-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 20px;
  }
  .about-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .about-icons {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  .icon-box {
    padding: 30px 20px;
  }
  .about-stats {
    gap: 20px;
  }
  .stat-item {
    min-width: 80px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
}

/* PERFORMANCE: REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .about-subtitle,
  .about-title,
  .about-description,
  .about-highlight,
  .stat-item,
  .icon-box {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .about-line {
    width: 100px;
    transition: none;
  }
  .section-introduction.is-visible .icon-box {
    animation: none;
  }
  .icon-box:hover {
    animation: none;
  }
}

.section-introduction .about-subtitle{
  font-size: 12px;
  letter-spacing: 0.35em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--color-gold);
}

/* BIG stacked headline */
.section-introduction .about-title{
  margin: 0 0 22px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;                 /* tight like image */
  letter-spacing: -0.03em;
  color: #fff;
  font-size: clamp(44px, 5.6vw, 78px);
}

/* each line stacked */
.section-introduction .about-title .t-line{
  display: block;
}

/* FUTURE highlighted */
.section-introduction .about-title .t-accent{
  color: var(--color-gold);
}

/* paragraph like image */
.section-introduction .about-description{
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
}

/* bottom highlight like image */
.section-introduction .about-highlight{
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-gold);
}

/* small yellow line */
.section-introduction .about-line{
  width: 90px;
  height: 3px;
  background: var(--color-gold);
  margin-top: 18px;
}

/* SECTION 2 ORGANIZED LAYOUT */
.section-introduction .content{
  padding: clamp(56px, 7vw, 96px) 8% !important;
}

/* Two-column layout */
.section-introduction .about-container{
  display: grid !important;
  grid-template-columns: minmax(520px, 1.2fr) minmax(420px, 1fr) !important;
  align-items: center !important;
  gap: clamp(48px, 6vw, 90px) !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

/* LEFT: text block rhythm */
.section-introduction .about-text{
  max-width: 640px !important;
}

/* Subtitle */
.section-introduction .about-subtitle{
  font-size: 12px !important;
  letter-spacing: 0.35em !important;
  font-weight: 700 !important;
  margin: 0 0 18px 0 !important;
}

/* Title */
.section-introduction .about-title{
  font-size: clamp(44px, 5.6vw, 84px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 20px 0 !important;
}

/* Paragraph */
.section-introduction .about-description{
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
  max-width: 560px !important;
  margin: 0 0 18px 0 !important;
}

/* Highlight line */
.section-introduction .about-highlight{
  margin: 0 0 16px 0 !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
}

/* Underline */
.section-introduction .about-line{
  margin: 0 !important;
  width: 92px !important;
}

/* RIGHT: icon cards as clean 2x2 grid */
.section-introduction .about-icons{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(200px, 1fr)) !important;
  gap: 24px !important;
  max-width: 520px !important;
  justify-self: end;
}

/* Card sizing consistency */
.section-introduction .icon-box{
  min-height: 170px;
  padding: 26px 22px !important;
  border-radius: 18px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Icon size like screenshot */
.section-introduction .icon-wrapper i{
  font-size: 2.4rem !important;
}

/* Title inside card */
.section-introduction .icon-box h4{
  margin: 0 !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.08em !important;
}

/* Small text */
.section-introduction .icon-box p{
  max-width: 240px;
  margin: 0 !important;
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
  opacity: 0.65;
  text-align: center;
}

/* Make sure animations don't break layout (still animate but organized) */
.section-introduction .about-subtitle,
.section-introduction .about-title,
.section-introduction .about-description,
.section-introduction .about-highlight,
.section-introduction .stat-item,
.section-introduction .icon-box{
  will-change: transform, opacity;
}

/* Responsive: stack on smaller screens */
@media (max-width: 1100px){
  .section-introduction .about-container{
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }
  .section-introduction .about-icons{
    justify-self: start;
    max-width: 620px !important;
  }
}

@media (max-width: 640px){
  .section-introduction .about-title{
    font-size: clamp(34px, 9vw, 56px) !important;
  }
  .section-introduction .about-icons{
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
  }
}

/*  FIX "WHO WE ARE" (match screenshot exactly) */
#section-introduction .about-subtitle{
  /* exact look */
  font-size: 12px !important;
  letter-spacing: 0.42em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;

  /* color + alignment */
  color: #d4af37 !important;
  text-align: left !important;

  /* spacing like image */
  margin: 0 0 18px 0 !important;

  /* remove your animation hiding it */
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (max-width: 1200px){
  #section-introduction .about-subtitle{
    text-align: center !important;
  }
}

#section-introduction .about-subtitle{
  opacity: 1 !important;
  transition: none !important;
}

@keyframes sectionPop {
  0%   { transform: translateY(20px) scale(0.98); opacity: 0.6; }
  60%  { transform: translateY(-4px) scale(1.01); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.section-introduction.is-visible {
  animation: sectionPop 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}



