/* About Page Specific Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.split-layout-hero {
  display: flex;
  padding: 2rem;
  margin-top: 5rem;
  width: fit-content;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}

.split-layout-hero p {
  width: 50%;
}

.sub-heading-about {
  color: var(--accent-gold);
}

.about-hero-btn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
}

.digital-design-stack {
  display: flex;
  line-height: 1.2;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.digital-design-stack p {
  font-size: 2rem;
  font-weight: 700;
}

.about-hero-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

.text-gold {
  color: var(--accent-gold);
}

/* Core Values Section */
.core-values-section {
  padding: 8rem 5%;
  background: #ffffff;
  text-align: center;
}

.core-values-header {
  margin-bottom: 4rem;
}

.core-values-header h2 {
  font-size: 3rem;
  color: var(--text-color);
  font-family: var(--font-heading);
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}



.core-value-card {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  padding: 3rem 2rem;
  background: #fafafa;
  border-radius: 12px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.core-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.core-value-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.sub-heading {
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: underline;
}

.core-value-icon i {
  background: rgba(0, 191, 175, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.core-value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-family: var(--font-heading);
}

.core-value-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

:root {
  --accent-color: #00bfaf;
  --text-color: black;
  --blueprint-line: rgba(72, 74, 74, 0.079);
}

/* Blueprint Background */
.blueprint-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--blueprint-line) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
}

/* Hero Section */


.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.content-engineering-hack {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(48, 47, 47);
}

.hero p {
  font-size: 2rem;
  font-weight: 800;
}

.main-title {
  font-size: clamp(2rem, 8vw, 5rem);
  text-align: center;
  letter-spacing: 5px;
}

.main-title span {
  color: var(--accent-color);
  display: block;
  text-shadow: 0 0 15px var(--accent-color);
}

/* Layout */
.stack-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 5%;
}

.stack-item {
  min-width: 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem;
  text-align: left;
  padding: 0.5rem;
  border-radius: 12px;
  background-color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.05);
  align-items: center;
  text-align: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.stack-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.stack-item .visual {
  width: 100px;
  height: 100px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
}

.stack-item .visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.content-engineering-hack {
  font-size: 1rem;
  color: var(--text-muted, #666);
  line-height: 1.6;
}

.content-engineering-hack h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--text-color, #222);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .stack-item {
    padding: 2rem 1.5rem;
  }

  #visionContainer,
  #missionContainer {
    font-size: 0.6rem;
    width: 80%;
    padding: 1rem;
  }

  #containerForVisionAndMission {
    flex-direction: column;
  }
}

#visionandmissionTitle {
  background-color: #00bfaf;
  padding: 15px;
  margin: 15px;
  color: white;
  border-radius: 25px;
}

#visionandmission {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  align-items: center;
  border-radius: 50px;
  position: relative;
}

#overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #02ffa716;
  z-index: 0;
}

#containerForVisionAndMission {
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

#visionContainer,
#missionContainer {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.2rem;
  align-items: center;
  padding: 40px;
  font-weight: 700;
  margin: 50px;
  justify-content: center;
  color: white;
  border-radius: 50px;
  background-color: #00bfaf;
}

.fontSizeBigForIcon {
  font-size: 3rem;
}