/*
 Updated: 6 Mar 26

 Theme Name:   Park WP Child
 Theme URI:    http://demo.cocobasic.com/park-wp
 Description:  Park WP Child Theme
 Author:       CocoBasic
 Author URI:   http://cocobasic.com/
 Tags: grid-layout, four-columns, custom-colors, featured-images, threaded-comments, translation-ready, theme-options
 Template:     park-wp
 Text Domain:  park-wp-child
*/

/** Reset and Base Styles ================================================== */

:root {
  --font-body: 'Mulish', sans-serif;
  --font-heading: 'Literata', serif; 
  --font-mono: 'IBM Plex Mono', monospace;
  --font-stats: 'Inter', sans-serif;
  
  --color-text: #333333;
  --color-heading: #111111;
  --color-background-code: #f4f5f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  color: hsl(250, 55%, 12%);
  font-family: "Mulish", Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

/*
body {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}
*/

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 8rem;
  position: relative;
  z-index: 10;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(130deg, #60a5fa, #a78bfa, #6366f1);
  z-index: 1000;
  transition: width 0.1s ease;
}

/** Typography
==================================================
  Based on Minor Third scale with 2 bases
  2.4em | 2.074em | 2em | 1.728em | 1.667em | 1.44em | 1.389em | 1.157em | 1em | 0.965em | 0.833em
*/

/** Typography
==================================================
  Based on Minor Third scale with 2 bases
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading); /* Points to Literata */
  padding: 0;
  margin: 0.25em 0 0.833em;
  width: 100%;
  line-height: 1.4;
}

h1 strong {
  font-weight: 600; /* Utilizing the heaviest requested weight */
}

/* Using the new 300 weight for a refined, large title */
h1 {
  font-size: 2.4em;
  font-weight: 400; 
}

/* Using the new 400 weight for secondary titles */
h2 {
  font-size: 2.074em;
  font-weight: 400;
}

h3 {
  font-size: 1.728em;
  font-weight: 500; /* Using the new 500 weight for structural clarity */
  line-height: 1.5;
}

h4 {
  font-size: 1.44em;
  font-weight: 500;
  line-height: 1.5;
}

h5 {
  font-size: 1.157em;
  font-weight: 500; /* Heaviest weight for the smallest heading */
  line-height: 1.5;
}

h6 {
  font-size: 1em;
  font-weight: 600;
}

ul {
  list-style-type: none;
}

.case ul li:before {
  content: "👉 ";
}

p,
li {
  font-size: 1.157em;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.6em;
}

#content p {
  margin-bottom: 1.6em;
}

body a,
h1 a {
  text-decoration: none;
  transition: all 0.25s ease-out;
  color: inherit;
}

.container a,
.case .columns a {
  transition: all 0.25s ease-out;
  text-decoration: underline;
  text-decoration-color: #998fa0 ;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

a.ext-link[href^="http"]::after,
a.ext-link[href^="https://"]::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='grey' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

a:hover,
a:focus {
  text-decoration: none;
  opacity: .6;
}

strong {
  font-weight: 600;
}
em {
  font-style: italic;
}

p.small,
small {
  font-size: 0.85em !important;
  line-height: 1.3;
}

.small-txt {
  display: block;
  font-size: 0.833em;
  font-weight: 400;
  margin-top: 12px;
}

.small-icon {
  position: relative;
  top: 6px; left: 0;
  opacity: .7;
}

p.intro,
body:not(.portfolio-template-default) .page-content p:first-of-type,
body:not(.portfolio-template-default) .entry-content p:first-of-type {
  margin: 1.6em 0 1.6em !important;
  font-size: 1.389em;
  display: block;
}

ul {
  margin: 0 0 1.6em;
}

.nowrap {
  white-space: nowrap;
}

.nomarg {
  margin:0 !important;
}


/** Header ================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 1rem 0;
  transition: all 0.5s ease;
  color: white;
}



.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header.header-compact {
  padding: 0.75rem 0;
  backdrop-filter: blur(8px);
  background: white;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.header.header-compact .header-container {
    padding: 0em 2rem;
}

.logo {
  position: relative;
  width: 82px;
  height: 82px;
  padding: 0;
  margin: 0;
}

.logo a {
  opacity: 1;
}

.logo img {
  position: absolute;
  top: 0;
  left: 0;
  width:82px;
  height: 82px;
  transition: all 0.35s ease-out;
}

.logo img.initials-bg {
  opacity: 1;
  z-index: 1;
}

.logo img.avatar {
  z-index: 2;
  animation: 4s ease 0s normal forwards 1 fadein;
}

@keyframes fadein{
  0% { opacity:0; }
  66% { opacity:0; }
  100% { opacity:1; }
}

.logo img.initials {
  opacity: 0;
  z-index: 3;
}

.logo img.initials:hover {
  opacity: 1 !important;
}

.header-compact {

  .logo { 
    width: 40px;
    height: 40px;
  } 
  .logo img {
    width: 40px;
    height: 40px;
  }
}


.nav {
  display: flex;
  gap: 3rem;
}

.nav-link {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  opacity: 1;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: white;
  transform: translateY(-2px);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: hsl(287, 100%, 55%);
;
}

.header.header-compact .nav-link {
  color: rgba(0,0,0, 0.8);
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: white;
  transform: translateY(-2px);
}

.mobile-nav .nav-link {


}
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 50;
}

.header.header-compact .mobile-menu-btn {
  color: hsl(250, 55%, 12%);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgb(252,252,252);
  z-index: 30;
  padding-top: 8rem;
  flex-direction: column;
  align-items: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-nav-link:hover {
  color: #fff;
  transform: translateX(10px);
}

/* Force light navigation text on Case Study pages before scrolling */
body.case .header:not(.header-compact) .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

body.case .header:not(.header-compact) .nav-link:hover,
body.case .header:not(.header-compact) .nav-link.active {
    color: #ffffff;
}

body.case .header:not(.header-compact) .mobile-menu-btn {
    color: #ffffff;
}

/** Hero Section ================================================== */
.section-hero {
  /*min-height: 150vh;*/
  padding-top: 220px;
  /*display: flex;*/
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  background: rgb(253,254,254);
  /*background-image: url(/images/hero-bg.jpg); */
  background-size: cover;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.hero-background-base {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-background-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(130deg, hsla(220, 89%, 18%, 0.62), hsla(262, 64%, 20%, 0.61), hsl(288, 20%, 30%, 61%));*/
  z-index: 2;
}

.hero-category {
      font-family: "Mulish", Arial, Helvetica, sans-serif;
  display: inline-block;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  opacity: 0;
  animation: fadeIn 1.5s 0.2s forwards;
}

.hero-category-text {
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  color: rgba(0, 0, 0);
  animation: fadeInUp 1s 0.5s forwards;
  /*text-shadow: 1px 1px 4px hsl(236, 100%, 9%,.8);*/
}

.hero-title span {
  font-size: clamp(1.5rem, 5vw, 2.45rem);
  font-style: oblique;
}

.hero-title-gradient {
   /*background: linear-gradient(130deg, #ffffff, hsl(0, 0%, 100%));*/
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 3rem;
  max-width: 58rem;
  margin: auto;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s 0.7s forwards;
}

.button-group {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 1rem;

  margin-bottom: 7rem;
  opacity: 0;
  animation: fadeIn 0.8s 0.3s forwards;
}
.button-group .button-primary,
.button-group .button-secondary {
  max-width: 300px;
}

.button-primary,
a.button-primary {
  width: 100%;
  background: linear-gradient(130deg, hsl(254, 85%, 51%), hsl(287, 94%, 45%));
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.button-primary:hover {
  background: linear-gradient(130deg, #1d4ed8, #6d28d9);
  transform: translateY(-2px);
  color: white;
}

.button-secondary {
  width: 100%;
  background: rgba(1, 0, 69, 0.05);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.button-secondary:hover {
  background: rgba(1, 0, 69, 0.2);
  transform: translateY(-2px);
}

.scroll-indicator {
  display: none;
  position: absolute;
  bottom: 10px;
  z-index: 1111;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards, bounceY 2s ease-in-out infinite;
}

/* Add CSS for spinner animation */


@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#submitButton {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#submitButton svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/** Scroll To Top  */
#button {
  display: inline-block;
  background-color: #200739;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/** Sections General Styles ================================================== */
.section {
  padding: 10rem 0;
}

.section-heading {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 7rem;
}

.section-heading h2 {
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0;
}

/** About Section ================================================== */
.section-about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8.5rem;
  align-items: flex-start;
}

.about-image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-image {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
}

.about-text p:first-child {
  font-size: 1.38rem;
}

/** Services Section ================================================== */
.section-services {
  background: #eef2f5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.service-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  color: #1a053c;
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-item:hover .service-title {
  color: #1b073f;
}

.service-description {
  font-size: 1rem;
  line-height: 1.7;
}

.service-icon svg {
      fill:hsl(252, 50%, 12%, .8);
}

/** Quotes ================================================== */

.quote-container {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.quote-text {
  
  font-size: 1.5rem;
  font-weight: 200;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-author {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
}


.quote_mark {
  display: inline-block;
  transform-origin: center;
  animation: refined-pulse 2s ease-in-out 2 forwards;
  animation-delay: 0.5s;
}

@keyframes refined-pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
    filter: brightness(1);
  }

  100% {
    transform: scale(1.05);
    opacity: 1;
    filter: brightness(1);
  }
}



/** Portfolio Section ================================================== */
.section-work {
  background: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}

/** Articles Section ================================================== */
.section-articles {
  background: #eef2f5;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/** Cards ================================================== */
.card {
  position: relative;
  display: inline-block;
  background: white;
  border-radius: 4px;
  border: 0 !important;
  box-shadow: 0 0 0 1px hsl(216, 26%, 89%);
  transition: 0.25s;
}

.card:hover{
  box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.06),
    0 2px 24px 2px rgba(0, 0, 0, 0.06);
  filter: grayscale(80%);
  background: white;
}

.card:focus,
.card:active {
  box-shadow: 0 0 0 1px hsl(216, 26%, 86%);
  filter: none;
}

.card__text,
.card__wrap__title {
  display: inline-block;
  width: auto;
  padding: 32px;
  border-top: 1px solid hsl(216, 26%, 92%);
  width: 100%;
}

.case .dark .card_wrap .card_text h4,
.case .dark .card_wrap .card_text  p  {
  color: black !important;
}

.case .card_text h4 {
  margin-top: 0 !important;
}

.card__image {
  display: block;
  width: 100%;
  min-height: 260px;
  border-radius: 4px 4px 0 0;
  line-height: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transition: background-image 0.2s ease-in-out;
}

.card p {
  font-size: .96rem;
  margin-bottom: 0;
}

.card p.subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.writing-section .card__image {
  display: none;
}

.case .card__wrap {
  display: block;
  max-width: 600px;
  margin: 120px auto 120px;
}

.writing-section .card__text {
  border:0;
}


.case .card__wrap__title {
  display: inline-block;
  width: auto;
  padding: 42px;
  margin-bottom: 72px !important;
  font-weight: 600 !important;
  font-size: 2.4em !important;
  border: 0;
}

@media screen and (max-width: 1280px) {
  .card {
    margin-bottom: 2.5em;
  }

  .card__text,
  .card__wrap__title {
    padding: 24px;
  }
}

@media screen and (max-width: 780px) {
  .card {
    margin: 0 0 2em;
    
  }
  .card__image {
      min-height: 320px;
  }
  
}

/** Columns ================================================== */
@media screen and (max-width: 630px) {
  .content-570 {
    max-width: 85%;
  }
}

/** Posts ================================================== */
.single-post .entry-content {
  color: inherit;
}
.single h1.entry-title,
.blog-item-holder h2.entry-title,
.page h1.entry-title,
.blog h1.entry-title,
.taxonomy-title h1,
.search .search-title h1,
.archive-title h1 {
  line-height: 1.2;
  font-weight: 500;
}

.single-post-featured-image {
  margin-bottom: 64px;
}
.single .entry-info div:after,
.underline:after {
  display: none !important;
}

.wp-block-image figcaption {
  color: #0f0524;
  font-size: 1em;
  font-style: italic;
  text-align: center;
}
blockquote.wp-block-quote {
  font-style: normal;
  border-left: 8px solid #f1f1f1;
  padding-left: 32px;
  margin-top: 74px;
  margin-bottom: 74px;
  font-size: 14px !important;
  line-height: 35px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
blockquote.wp-block-quote em {
  font-size: 70%;
  font-style: normal;
}
.blog-item-holder .entry-info .cat-links a:after {
  bottom: -2px;
}
.cat-links a,
blockquote.wp-block-quote p {
  font-family: "IBM Plex Mono", monospace;
}
.entry-info {
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 22px;
  text-transform: uppercase;
  margin: 40px 0 24px;
}

/** Images ================================================== */
.aligncenter,
div.aligncenter {
  text-align: center;
}

figure a {
  border: 0 !important;
}

.wp-block-image {
  margin: 2.4em 0 3.4em;
}
figure {
  border-radius: 4px;
}
figure img,
.border {
  border: 1px solid rgb(0, 0, 0, 0.25) !important;
  border-radius: 4px;
}

@media screen and (min-width: 1400px) {
  .wp-block-image {
    margin: 3.2em -20% 3.2em -20%;
    width: 140%;
  }
}


/** Tags ================================================== */
.tags-holder a {
  font-family: "IBM Plex Mono", monospace;
}

/** Reading Time Plugin ================================================== */
.reading-time {
  position: relative;
  display: inline-block;
  margin-left: 16px;
  text-indent: 19px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.post-item .reading-time {
  margin-right: 0;
}
.reading-time:before {
  position: absolute;
  content: " ";
  margin-left: -24px;
  top: 3px;
  background-image: url(/images/icons/icon-time.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
.heading .reading-time:before {
  top: 3px;
}
.heading p {
  font-size: 1.389em;
}

/** Comment Count ================================================== */
.comments-list-holder .comment {
  margin: 30px 0;
  padding: 32px 24px 32px 24px;
  background: white;
  border-radius: 4px;
}

.children .comment {
  border: 0;
  padding: 40px 0 0;
  margin: 0;
}

.comment-text,
.comment-date {
  margin-left: 68px;
}
.comment-text p {
  font-size: 14px;
}
.comment-date {
  font-weight: 600;
  opacity: 0.8;
  letter-spacing: 2px;
}

.comments-list-holder ul.comment-author-date-replay-holder li.comment-author {
  margin-left: 26px;
}
.comment-count {
  position: relative;
  display: inline-block;
  margin-left: 15px;
  text-indent: 19px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.comment-count:before {
  position: absolute;
  content: " ";
  margin-left: -24px;
  top: 5px;
  background-image: url(/images/icons/icon-chat.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
.heading .comment-count:before {
  top: 5px;
}

.comment ul.comment-author-date-replay-holder {
  margin-bottom: 0;
}
.comment .vcard img {
  width: 40px;
  height: 40px;
}

.comments-holder .comment-author-date-replay-holder {
  margin-left: 0;
}

@media screen and (max-width: 780px) {
  .comments-holder .comment-author-date-replay-holder {
      margin-bottom: 40px !important;
  }
}

/** Callout ================================================== */
.callout {
  display: inline-block;
  width: 100%;
  padding: 72px;
  border-radius: 4px;
  margin: 6.667em auto 3.667em;
  text-align: center;
  background: #f7f8fb;
  border-radius: 4px;
  border: 1px solid #e5e7fc;
}
@media screen and (max-width: 780px) {
  .callout {
    padding: 32px;
  }
}
.callout h3 a {
  font-weight: 500;
  text-decoration: none;
  border: 0;
  color: #050516;
}

.callout h4 {
  font-size: 1.267em;
  color: #050516;
}
.callout-small {
  padding: 16px;
  margin-top: 62px !important;
}

/** Social ================================================== */
.social {
  margin: 40px 0 0 0;
  width: 75%;
  text-align: right;
  color: hsl(216, 18%, 90%);
}

.social__item {
  display: inline;
}

.social a {
  font-size: 0.965em;
  color: #617785;
  margin: 0 1%;
}

.social a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 780px) {
  .social {
    width: 100%;
    margin-top: 12px;
    text-align: center;
  }
}

/** Comments General Styles ================================================== */
.replay-at-author:after {
  display: none;
}

ul.comment-author-date-replay-holder li.comment-author {
  margin-left: 40px;
}
@media screen and (max-width: 780px) {
  ul.comment-author-date-replay-holder li.comment-author {
    margin: 0px !important;
  }
}

@media screen and (max-width: 780px) {
  ul.comment-author-date-replay-holder li.comment-author {
    margin-left: 0;
  }
}

/** Case Study ================================================== */
.case h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400; /* Applying the lightest Literata weight for massive titles */
  width: 100%;
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.case h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400; /* Slightly heavier but still elegant */
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.case h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}

.case h3 a {
  text-decoration: none;
  border: 0 !important;
}

/* Large data figures using Inter Light (300) */
.figures h3 {
  text-align: center;
  font-size: 5.5rem; 
  font-family: var(--font-stats); 
  font-weight: 300;
  display: block;
  margin: 0;
  line-height: 1;
}

.case h4 {
  font-family: var(--font-heading);
  font-size: 1.667rem;
  font-weight: 500; /* Adding structural weight as size decreases */
  margin-top: 3.2rem;
  line-height: 1.5;
}

.case .column h4:first-child {
  margin-top: 1rem;
}

.case .columns h4.first-child {
  margin-top: 0;
}

.case h4 a {
  border: none !important;
}

/* Small structural headings using Mulish */
.case h5 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3.375rem;
  display: inline-block;
  text-transform: uppercase;
  width: auto;
  letter-spacing: 0.05em;
}

.case .dark h5 {
  color: white;
}

.case .columns .subtitle {
  margin-top: 1.5625rem;
  margin-bottom: 4rem;
}

/* Standardizing body copy for high legibility */
.case p,
.case li {
  font-family: var(--font-body);
  font-size: 1.257rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0.5rem 0 0;
}

.case .dark p,
.case .dark li {
  font-weight: 300;
}

.case .start-sec {
  margin-top: 6.5rem;
}

.case .caption {
  margin: -0.625rem 0 0; /* Converted -10px to rem */
  font-size: 1rem !important;
  text-align: center;
  display: inline-block;
  width: 100%;
    margin-top: -10px;
}

.case p + p {
  margin-top: 1.666rem;
}

.case p + ul,
.case p + ol,
.case ul,
.case ol {
  margin: 1.66rem 0 2.1rem 0;
}

.case ul li {
  margin-bottom: 1.6rem;
  margin-left: 35px;
}

.case ul li:before {
  content: "👉";
  margin-left: -34px;
  padding-right: 12px;
 }
 .case ul.kpi {
  margin-top: 12px;
 }
 .case ul.kpi li {
  font-size: 1.6em;
 }
 .case ul.kpi li:before {
  content: "✅";
  margin-left: -34px !important;
  padding-right: 9px !important;
 }

.case .wrap {
  max-width: 1200px;
  display: flex;
  flex-flow: row wrap;
  margin: auto;
  padding: 0 64px;
}

.case .wrap + .wrap {
  padding-top: 40px;
}

.case .wrap.wide {
  max-width: 1600px;
  width: auto;
}

.case .wrap.med {
  max-width: 1400px;
}

.case .columns {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0;
 background: linear-gradient(130deg, hsl(219, 61%, 10%, 100%), hsl(263, 20%, 10%, 100%), hsl(298, 10%, 12%, 100%));
}
.case .columns .column {
  flex: 1;
    position: relative;
  margin: 0;
  padding: 32px 0;
}
.case .columns .column:first-child {
  padding-right: 5%;
  max-width: 420px;
}
.case .columns .column:last-child {
  margin: 0;
}

.case .columns .col-full {
  max-width: 100% !important;
}

.case .columns .wrap.wide img {
  max-width: 1600px;
}

.case .cover {
  border-radius: 4px;
}
.case .columns img.cover  {
  position: relative;
  width: 96%;
  max-width: 1400px;
  margin: 184px auto 12px;
}

.case .intro,
.case .default,
.case .shade,
.case .dark,
.case .green {
  width: 100%;
  display: inline-block;
  padding: 120px 0;
}
.case .intro {
  z-index: 0;
  margin-top: -280px;
  padding-top: 280px;
  background: linear-gradient(130deg, #EFF3F5 0%, #EFF3F5 45%, #E3E9ED 100%);
}
.case .intro p:first-child {
  font-size: 1.2rem;
  font-weight: 500;
}
.case .intro .wrap:first-child {
  margin-top: 90px;
}

.case .default {
  background: white;
  border-bottom: 1px solid rgba(0,0,0,.035);
}
.case .shade {
  background: linear-gradient(130deg, #EFF3F5 0%, #f0f3f4 45%, #e8ecef 100%);
}
.dark {
      background: linear-gradient(130deg, hsl(219, 61%, 10%, 100%), hsl(263, 20%, 10%, 100%), hsl(298, 10%, 12%, 100%));
}
.case .dark p,
.case .dark h2,
.case .dark h3,
.case .dark h4,
.case .dark li,
.case .dark p a,
.case .dark a {
  color: white !important;
}
.case .dark .callout {
  background: none;
}

.case .columns img {
  position: relative;
  display: inherit;
  max-width: 100%;
  width: 100%;
  margin: 64px auto;
  z-index: 2;
  border-radius: 8px;
}
.case .columns img.img-compact {
  width: 100%;
  margin: 16px auto;
}
.case .image-band {
  position: absolute;
  margin-top: -600px;
  z-index: 1;
  width: 100%;
  height: 1100px;
  opacity: 0.2;
  background: rgba(0, 0, 0, 0.8);
}

.case img.image-small {
  max-width: 800px !important;
}
.case img.image-xsmall {
  max-width: 600px !important;
}
.case * .no-marg {
  margin: 0 auto !important;
}

.case * .no-marg-t {
  margin-top: 0 !important;
}

.case * .no-marg-b {
  margin-bottom: 0 !important;
}
.case * .no-pad {
  padding: 0 !important;
}
.case * .no-pad-t {
  padding-top: 0 !important;
}

.case *.no-pad-b {
  padding-bottom: 0 !important;
}

.case .quote {
  font-family: "Literata", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: oblique;
  max-width: 1200px;
  padding: 80px 120px 120px;
  margin: -16% auto 0;
  border-radius: 8px;
  line-height: 1.4;
  font-size: 2.8rem;
  text-align: center;
  background: #f6f8f9;
  border: 1px solid #d9cddf;
}
.case .quote .attrib {
    font-family: "Mulish", Helvetica, Arial, sans-serif;
  margin-top: 32px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-style: normal;
  font-size: 20px;
}

.case .quote .sub-atrrib {
  font-size: 1rem;
  color: white;
  font-style: italic;
  font-weight: 400;
}
.case .quote .quote_mark {
  display: block;
  text-align: center;
  line-height: 1;
  width: 96px;
  font-size: 220px;
  margin: 0px auto -50px;
  font-family: "Literata", serif;
  color:  hsl(287, 90%, 45%);
}

.case .quote .quote_mark::after {
  content: '“'
}

.case .quote-sm {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}
.case .quote-sm:before {
  content: '\201C';
  position: absolute;
  margin-left: -.4em;
}

.case .quote-sm small {
  font-size: 12px;
}

.case .quote-sm:after {
  content: '\201D';
}


.case .quote-img-container {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}

.case .quote-img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  margin:0 !important
}

.case svg {
  position: relative;
  top: 3px;
  margin-right: 8px;
}

.case svg.icon {
  margin-top: 40px;
  top:0;
  display: inline-block;
  position: absolute;
  width: 38px;
  height: 38px;
}

.case svg.icon + h3 {
  position: relative;
  margin-left: 56px;
}
@media screen and (max-width: 780px) {
  .case h1 {
    font-size: 2rem;
  }
  .case h2 {
    font-size: 1.66rem;
  }
  .case h3 {
    font-size: 1.4rem;
  }
  .figures h3 {
    font-size: 60px;
    width: 100%;
  }
  .case h4 {
    font-size: 1.2rem;

  }
  .case h5  {
    font-size: 1.2rem;
  }

  .case ol li {
    margin-left: 25px;
  }
  .case .columns .subtitle {
      margin-bottom: 48px;
  }

  .case .intro p:first-child {
    margin-top: 0 !important;
  }
  .case p.start-sec {
    margin: 0;
  }
  .case .wrap {
    padding: 0 24px;
  }
  .case .columns .column,
  .case .columns .column:nth-last-child(2) {
    flex-basis: 100%;
    padding: 0;
  }
  .case .columns .column:nth-last-child(2) {
    margin-right: 0;
    margin-left: 0;
  }
  .case .intro,
  .case .default,
  .case .shade,
  .case .dark,
  .case .green {
    padding: 90px 0;
  }
  .case .intro {
      margin-top: 0;
  }
  .case .intro .wrap:first-child {
    margin-top: 0px;
  }
  .case .columns img  {
      margin: 24px auto;
  }
  .case .quote {
    padding: 24px;
    font-size: 1.6rem;
  }
.case .quote .attrib {
  font-size: 16px;
}

.case .quote .quote_mark {
  font-size: 120px;
}
  .case svg.icon + h3 {
    margin-left:0;
  }
  .case svg.icon {
    display: none;
  }
  video {
    margin:0;
  }
}

/** Stats ================================================== */


.achievement-container {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: left;
  margin-bottom: 30px;
  width: 100%;
}

.achievement-container .achievement-card {
  background: white;
  border: 1px solid rgb(0,0,0,.1);
  border-radius: 8px;
  padding: 32px 32px 32px 40px;
  text-align: left;
  min-width: 280px;
  flex: 1;
}

.achievement-container .tag {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #374151;
}

.achievement-container .tag-blue {
  background-color:hsl(194, 97%, 90%);
}

.achievement-container .tag-pink {
  background-color:hsl(314, 89%, 90%);
}

.achievement-container .tag-green {
  background-color: hsl(141, 79%, 90%);
}

.achievement-container .tag-orange {
  background-color:hsl(51, 72%, 90%);
}

.achievement-container .main-stat {
  font-family: "Inter", monospace;
  font-size: 6rem;
  font-weight: 300;
  color: #0f2444;
  margin-bottom: 12px;
  line-height: 1.1;
}

.achievement-container .main-stat.small {
  font-size: 4rem;
}

.achievement-container .description {
  font-size: 18px;
  color:rgb(52, 59, 68);
  font-weight: 600;
  line-height: 1.4;
}

.achievement-container .main-stat small {
    font-size: 50% !important;
}

.achievement-container .text {
    font-size: 14px;
    margin-top: 12px;

}

.achievement-container .description small {
    font-size: 80%;
}

/* Dark Theme Overrides */

.achievement-container.dark-theme .achievement-card {
  background: hsl(256, 50%, 12%);
}

.achievement-container.dark-theme .tag {
  color: hsl(250, 75%, 2%);
}


.achievement-container.dark-theme .main-stat {
  font-size: 2.5rem;
  color: hsl(0, 0%, 95%);
}


.achievement-container.dark-theme .description {
  color: hsl(0, 0%, 70%);
}

.achievement-container.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0 120px;
    width: 100%;
    }

/* Animate stats */
.animate-number, .animate-symbol {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
}

.animate-number.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-symbol.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Subtle glow effect */
.animate-number.glow {
} 

/* Responsive Design */
@media (max-width: 768px) {
  .achievement-container {
    grid-template-columns: repeat(1, 1fr) !important;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .achievement-container .achievement-card {
    min-width: 100%;
    max-width: 400px;
  }
  
  .achievement-container .main-stat {
    font-size: 4.3rem;
  }
  
  .achievement-container.dark-theme .main-stat {
    font-size: 2rem;
  }
  .achievement-container .stats-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 16px;
  }
}

/** Video ================================================== */
video {
  position: relative;
  display: inline-block;
  z-index: 100;
  margin-top: 160px;
  border-radius: 4px;
  border: 1px solid #a0c0d4;
  max-width: 100%;
}
@media screen and (max-width: 780px) {

 video {
    margin:0;
  }
}
/** Problem statement callout ================================================== */


.problem-statement-box {

  background: rgba(255,255,255,.08);
  border: 1px solid #dabff6; 
  border-radius: 16px; 
  padding: 52px; 
  margin-top: 48px; 
  position: relative; 
}

.problem-statement-box .box-label {
      font-family: "Literata", serif;
font-style: italic;
  position: absolute;
  top: -20px; 
  left: 32px;
  background-color:   hsl(287, 90%, 45%);

  padding: 8px 24px; 
  border-radius: 9999px; 
  font-size: 16px;
  font-weight: 500;
  color: rgb(255, 255, 255); 
}

.problem-statement-box p {
  font-size: 1.75rem; 
  line-height: 1.5; 
  font-weight: 400;
  color: #374151; 
  margin: 0;
}

/** Contact Section ================================================== */
.section-contact {
  padding: 10rem 0;
  color: white;
  position: relative;
}

.contact-background-base {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-background-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.contact-heading h2 {
  color: white;
  background: transparent;
}

.contact-heading::before {
  background: linear-gradient(130deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 10;
}

.contact-info h3,
.contact-form-container h3 {
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-content {
  flex: 1;
}

.contact-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: white;
  transition: color 0.3s ease;
  text-decoration: none;
}

.contact-value:hover {
  color: #adaab3;
}

.contact-status {
  padding-top: 2rem;
}

.contact-status-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-status-indicator {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.contact-status-indicator  p {
  font-size: 1rem;
}

.status-dot {
  width: 16px;
  height: 16px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-status-indicator p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-form-container {
  position: relative;
  z-index: 10;
}

.contact-grid h2,
.contact-grid h3,
.contact-grid h4 {
  color: white
}

.contact-form-title {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 1rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}
.form-field textarea {
  min-height: 220px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

.form-status {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: none;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
  display: block;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  display: block;
}

/** Footer ================================================== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);  
  background: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #183767;
    text-align: center;
    color: #050516;
}

.footer-link {
  font-size: 1rem;
    color: #050516;
    margin-bottom: 16px;
}

.footer-link a {
  font-size: 1rem;
    color:#183767;
    font-weight: 600;
}

.footer-copyright {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
      color: #050516;
}

/** Image Card Class ================================================== */
.image-card {
  border-radius: 4px !important;
  overflow: hidden;
}

/** Animations ================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/** Responsive Design ================================================== */
@media (max-width: 1024px) {
  .services-grid,
  .portfolio-grid,
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
  }

  .header-container {
    padding: 0 2rem;
  }

  .single .nav-link {
    color: hsla(216, 52%, 25%, 0.8) !important;
  }

  .container,
  .hero-container {
    padding: 2rem 1rem 4rem;
  }

  .section {
    padding: 6rem 0;
  }

  .section-heading {
    margin-bottom: 4rem;
  }

  .section-heading h2 {
    font-size: 1.25rem;
    padding: 0 1rem;
  }
  .section-hero { 
    padding-top: 90px;
  }
  .hero-description {
    font-size: 1.125rem;
  }

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

  .about-image {
    width: 50%;
  }

  .services-grid,
  .portfolio-grid,
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .quote-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-category {
    padding: 0.5rem 1rem;
  }

  .hero-category-text {
    font-size: 0.75rem;
  }

 
  .hero-description {
    font-size: 1rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .service-title,
  .portfolio-title,
  .article-title {
    font-size: 1.125rem;
  }
}

/** Hero visual ================================================== */
        .screen-container {
            max-width: 1200px;
            width: 90%;
            margin-top: 70px;
            z-index: 11;
        }

        /* Screen Content */
        .screen-content {
            background-color: hsl(229, 84%, 5%, 70%);
            border-radius: 0.5rem;
            height: 600px;
            padding: 2.5rem;
            overflow: hidden;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            animation: screenFadeIn 0.8s ease-out;
        }

        @keyframes screenFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Top Bar */
        .top-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 10;
            animation: slideDown 0.6s ease-out 0.2s both;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .window-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .control {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            animation: controlPulse 3s ease-in-out infinite;
        }

        .control.red { 
            background-color: #ef4444;
            animation-delay: 0s;
        }
        .control.yellow { 
            background-color: #f59e0b;
            animation-delay: 0.5s;
        }
        .control.green { 
            background-color: #10b981;
            animation-delay: 1s;
        }

        @keyframes controlPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(0.95); }
        }

        .window-title {
            color: #9ca3af;
            font-size: 0.875rem;
        }

        /* Dashboard Grid */
        .dashboard-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            height: calc(100% - 4rem);
            position: relative;
            z-index: 10;
        }

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

        /* Dashboard Panel */
        .dashboard-panel {
            display: flex;
            flex-direction: column;
            height: 100%;
            animation: slideUp 0.8s ease-out both;
        }

        .dashboard-panel:nth-child(1) { animation-delay: 0.3s; }
        .dashboard-panel:nth-child(2) { animation-delay: 0.5s; }
        .dashboard-panel:nth-child(3) { animation-delay: 0.7s; }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .panel-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .panel-title {
            color: white;
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* Panel Items Container */
        .panel-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex: 1;
        }

        /* Strategic Initiatives Panel */
        .strategy-item {
            background-color: #1e293b;
            border-radius: 0.5rem;
            padding: 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
            transform: translateX(-20px);
            opacity: 0;
            animation: slideInLeft 0.6s ease-out both;
        }

        .strategy-item:nth-child(1) { animation-delay: 0.8s; }
        .strategy-item:nth-child(2) { animation-delay: 1.0s; }
        .strategy-item:nth-child(3) { animation-delay: 1.2s; }

        @keyframes slideInLeft {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .strategy-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }

        .strategy-name {
            color: #d1d5db;
            font-size: 0.875rem;
            font-weight: 500;
            flex: 1;
        }

        .strategy-score {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            margin-left: 0.5rem;
        }

        .star {
            width: 0.75rem;
            height: 0.75rem;
            background-color: #374151;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            animation: starFill 0.3s ease-out both;
        }

        .star.filled {
            background-color: #f59e0b;
            animation: starTwinkle 4s ease-in-out infinite;
        }

        .star:nth-child(1) { animation-delay: 1.2s; }
        .star:nth-child(2) { animation-delay: 1.3s; }
        .star:nth-child(3) { animation-delay: 1.4s; }
        .star:nth-child(4) { animation-delay: 1.5s; }
        .star:nth-child(5) { animation-delay: 1.6s; }

        @keyframes starFill {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes starTwinkle {
            0%, 100% { opacity: 1; transform: scale(1); }
            25% { opacity: 0.8; transform: scale(0.95); }
            50% { opacity: 1; transform: scale(1); }
            75% { opacity: 0.9; transform: scale(0.98); }
        }

        .strategy-metrics {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .strategy-value {
            font-size: 1.75rem;
            font-weight: bold;
            color: white;
            animation: numberPop 0.6s ease-out both;
        }

        .strategy-value:nth-of-type(1) { animation-delay: 1.8s; }
        .strategy-value:nth-of-type(2) { animation-delay: 2.0s; }
        .strategy-value:nth-of-type(3) { animation-delay: 2.2s; }

        @keyframes numberPop {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .strategy-label {
            color: #9ca3af;
            font-size: 0.75rem;
        }

        .strategy-status {
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            animation: statusFade 0.5s ease-out both;
        }

        .strategy-status.success {
            background-color: rgba(16, 185, 129, 0.2);
            color: #10b981;
            animation: statusPulse 3s ease-in-out infinite;
        }

        .strategy-status.warning {
            background-color: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
            animation: statusBlink 2s ease-in-out infinite;
        }

        .strategy-status.info {
            background-color: rgba(99, 102, 241, 0.2);
            color: #6366f1;
            animation: statusGlow 4s ease-in-out infinite;
        }

        @keyframes statusFade {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes statusPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(0.98); }
        }

        @keyframes statusBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        @keyframes statusGlow {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 rgba(99, 102, 241, 0); }
            50% { opacity: 0.9; box-shadow: 0 0 8px rgba(99, 102, 241, 0.3); }
        }

        /* Business Impact Panel */
        .chart-container {
            background-color: #1e293b;
            border-radius: 0.5rem;
            padding: 1rem;
            flex: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            animation: slideInRight 0.8s ease-out 1.2s both;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(30px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .chart {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            height: 8rem;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .chart-bar {
            border-radius: 0.25rem 0.25rem 0 0;
            width: 2rem;
            height: 0;
            animation: chartBarGrow 1.5s ease-out both;
            position: relative;
            overflow: hidden;
        }

        /* Chart bar colors representing business outcomes */
        .chart-bar:nth-child(1) { background-color: #6366f1; }
        .chart-bar:nth-child(2) { background-color: #8b5cf6; }
        .chart-bar:nth-child(3) { background-color: #ec4899; }
        .chart-bar:nth-child(4) { background-color: #f59e0b; }
        .chart-bar:nth-child(5) { background-color: #10b981; }
        .chart-bar:nth-child(6) { background-color: #06b6d4; }
        .chart-bar:nth-child(7) { background-color: #6366f1; }

        .chart-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
            animation: barShine 4s ease-in-out infinite;
        }

        .chart-bar:nth-child(1) { animation-delay: 1.4s; }
        .chart-bar:nth-child(2) { animation-delay: 1.5s; }
        .chart-bar:nth-child(3) { animation-delay: 1.6s; }
        .chart-bar:nth-child(4) { animation-delay: 1.7s; }
        .chart-bar:nth-child(5) { animation-delay: 1.8s; }
        .chart-bar:nth-child(6) { animation-delay: 1.9s; }
        .chart-bar:nth-child(7) { animation-delay: 2.0s; }

        /* Specific height animations */
        .chart-bar[style*="60%"] { animation-name: chartBarGrow60; }
        .chart-bar[style*="85%"] { animation-name: chartBarGrow85; }
        .chart-bar[style*="70%"] { animation-name: chartBarGrow70; }
        .chart-bar[style*="95%"] { animation-name: chartBarGrow95; }
        .chart-bar[style*="100%"] { animation-name: chartBarGrow100; }
        .chart-bar[style*="80%"] { animation-name: chartBarGrow80; }
        .chart-bar[style*="75%"] { animation-name: chartBarGrow75; }

        @keyframes chartBarGrow60 { to { height: 60%; } }
        @keyframes chartBarGrow85 { to { height: 85%; } }
        @keyframes chartBarGrow70 { to { height: 70%; } }
        @keyframes chartBarGrow95 { to { height: 95%; } }
        @keyframes chartBarGrow100 { to { height: 100%; } }
        @keyframes chartBarGrow80 { to { height: 80%; } }
        @keyframes chartBarGrow75 { to { height: 75%; } }

        @keyframes barShine {
            0% { transform: translateX(-100%); opacity: 0; }
            25% { opacity: 1; }
            75% { opacity: 1; }
            100% { transform: translateX(100%); opacity: 0; }
        }

        .chart-label {
            color: #9ca3af;
            font-size: 0.75rem;
            text-align: center;
        }

        .metrics-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            flex: 1;
        }

        .metric-card {
            background-color: #1e293b;
            border-radius: 0.5rem;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            animation: scaleIn 0.6s ease-out both;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .metric-card:nth-child(1) { 
            animation-delay: 2.2s;
        }
        .metric-card:nth-child(2) { 
            animation-delay: 2.4s;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .metric-value {
            font-size: 2.25rem;
            font-weight: bold;
            color: white;
            animation: numberCount 2s ease-out both;
        }

        .metric-value:nth-of-type(1) { animation-delay: 2.5s; }
        .metric-value:nth-of-type(2) { animation-delay: 2.7s; }

        @keyframes numberCount {
            from {
                transform: scale(1.2);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .metric-label {
            color: #9ca3af;
            font-size: 0.75rem;
            text-align: center;
        }

        /* Strategic Outcomes Panel */
        .insight-item {
            background-color: #1e293b;
            border-radius: 0.5rem;
            padding: 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            animation: slideInRight 0.6s ease-out both;
        }

        .insight-item:nth-child(1) { animation-delay: 1.4s; }
        .insight-item:nth-child(2) { animation-delay: 1.6s; }
        .insight-item:nth-child(3) { animation-delay: 1.8s; }

        .insight-label {
            color: #d1d5db;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .insight-progress {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .progress-bar {
            width: 100%;
            height: 0.5rem;
            background-color: #374151;
            border-radius: 9999px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            border-radius: 9999px;
            width: 0;
            animation: progressFill 2s ease-out both;
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: progressShine 3s ease-in-out infinite;
        }

        .progress-fill.success { 
            background-color: #10b981;
            animation-name: progressFill95;
            animation-delay: 2.0s;
        }

         .progress-fill.orange { 
            background-color: #f59e0b;
            animation-name: progressFill92;
            animation-delay: 2.4s;
        }

        .progress-fill.primary { 
            background-color: #6366f1;
            animation-name: progressFill88;
            animation-delay: 2.2s;
        }
       
        @keyframes progressFill95 {
            to { width: 95%; }
        }

        @keyframes progressFill92 {
            to { width: 92%; }
        }

        @keyframes progressFill88 {
            to { width: 88%; }
        }
       

        @keyframes progressShine {
            0% { transform: translateX(-100%); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateX(100%); opacity: 0; }
        }

        .insight-value {
            font-size: 1rem;
            min-width: 3rem;
            text-align: right;
            animation: fadeIn 0.5s ease-out both;
            font-weight: 600;
        }

        .insight-value:nth-of-type(1) { animation-delay: 2.6s; }
        .insight-value:nth-of-type(2) { animation-delay: 2.8s; }
        .insight-value:nth-of-type(3) { animation-delay: 3.0s; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(10px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .insight-value.success { color: #10b981; }
        .insight-value.primary { color: #6366f1; }
        .insight-value.orange { color: #f59e0b; }

        /* Responsive Design */
        @media (max-width: 768px) {
            .screen-content {
                height: 500px;
                padding: 1rem;
            }

            .dashboard-grid {
                gap: 1rem;
            }

            .chart {
                height: 6rem;
            }
          .screen-container {
            margin-top: 20px;
          }

          .dashboard-initiatives {
            display: none;
          }
        }

        /* Hover Effects */
        .strategy-item:hover,
        .metric-card:hover,
        .insight-item:hover,
        .chart-container:hover {
            background-color: #334155;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
            transition: all 0.3s ease;
        }

        .chart-bar:hover {
            opacity: 0.8;
            transform: scale(1.05);
            transition: all 0.2s ease;
        }