body,
html {
  height: 100%;
  margin: 0;
  font: 400 15px/1.8 "Didact Gothic", sans-serif;
  color: #777;
  /* overflow-x: hidden; */
}

.mobile-only {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
}

h1 {
  font-size: 1.7rem;
}

header h2 {
  display: block;
  width: 100%;
  font-size: 1.7rem;
  color: #0099ff;
  margin: 10px 0 20px 0;
}

h4 {
  color: #0099ff;
}

a.link {
  color: #0099ff;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.strikethrough {
  text-decoration: line-through;
}

.primary-color {
  color: #0099ff;
}

.green-result {
  color: #009900;
  font-weight: bold;
  font-size: 1.4rem;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.indent-20 {
  margin-left: 20px;
}

/* Fixed Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  line-height: 24px;
}

.logo h1 {
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.logo span {
  color: #64b5f6;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 1px;
  display: block;
  margin-top: 0.2rem;
}

.primary-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.primary-navigation a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.primary-navigation a:hover {
  color: #64b5f6;
}

.primary-navigation a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #64b5f6;
  transition: width 0.3s ease;
}

.primary-navigation a:hover::after {
  width: 100%;
}

.primary-navigation a i.fas {
  color: #64b5f6;
}

.result-box {
  background-color: #ccffcc;
  border: 1px solid #99cc99;
  padding: 20px;
  border-radius: 5px;
}

/* Responsive Header */
@media (max-width: 920px) {
  .header-content {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .logo { 
    text-align: center;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .logo span {
    font-size: 0.8rem;
  }

  .primary-navigation ul {
    gap: 1rem;
  }

  .primary-navigation a {
    font-size: 0.9rem;
  }

  .case-container {
    margin-top: 8rem !important;
  }
}

@media (max-width: 520px) {
  .header {
    padding: 0.8rem 0;
  }

  .main-content {
    margin-top: 70px;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .logo span {
    font-size: 0.7rem;
  }

  .primary-navigation ul {
    gap: 0.8rem;
  }

  .primary-navigation a {
    font-size: 0.7rem;
  }

  .primary-navigation a i {
    display: none;
  }

  .case-container h2 {
    font-size: 1.3rem !important;
  }

  .gray-button-link {
    padding: 5px 12px !important;
    margin-right: 0 !important;
  }
}

.bgimg-1,
.bgimg-2,
.bgimg-3,
.bgimg-4,
.bgimg-5 {
  position: relative;
  opacity: 0.85;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center; /* Centers vertically */
  justify-content: center; /* Centers horizontally (optional) */
}

.bgimg-1 {
  background-image: url("images/backgrounds/brushed-background-01.jpg");
  min-height: 100%;
}

.bgimg-2 {
  background-image: url("images/backgrounds/brushed-background-02.jpg");
  min-height: 100%;
}

.bgimg-3 {
  background-image: url("images/backgrounds/brushed-background-03.jpg");
  min-height: 100%;
}

.bgimg-4 {
  background-image: url("images/backgrounds/brushed-background-04.jpg");
  min-height: 100%;
}

.bgimg-5 {
  background-image: url("images/backgrounds/brushed-background-05.jpg");
  min-height: 100%;
}

.content {
  width: 100%;
  text-align: center;
  color: #000;
  margin: 81px 0
}

.panel {
  display: inline-block;
  width: calc(100% - 10rem);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: url(#liquid-glass-filter) blur(5px) brightness(1.1);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.3);
  text-align: left;
  margin: 20px 0;
}

.panel h1 {
  margin: 0;
  font-weight: normal;
}

.panel .heading-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;  
}

/* Responsive Panel */
@media (max-width: 920px) {

  .content {
    margin: 0;
  }

  .panel {
    margin-top: 8.5rem;
    margin-bottom: 2rem;
    width: 90%;
  }
  
  .button-link {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 0 !important;
  }

}

/* Responsive Panel Heading Text */
@media (max-width: 870px) {
  .panel .heading-text {
    flex-direction: column;
  }
}


/* Two Column Layout for About Section */
.two-column-layout {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.text-column {
  flex: 2;
}

.image-column {
  flex: 1;
  text-align: center;
}

/* Slideshow Container */
.slideshow-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.profile-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.profile-image.active {
  opacity: 1;
}

.call-me-image {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

/* Testimonial Slideshow */
.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0;
  position: relative;
}

.testimonial-header h3 {
  text-align: center;
  margin: 0;
  flex: 1;
  font-size: 1.5rem;
  color: #333;
}

.testimonial-header .testimonial-nav {
  position: static;
  transform: none;
  margin: 0;
  z-index: 10;
}

.testimonial-slideshow {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}


.testimonial-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(0, 153, 255, 0.3);
  overflow: hidden;
}

.testimonial-progress-fill {
  height: 100%;
  background-color: rgba(0, 153, 255, 1);
  width: 0%;
  transition: width 0.1s linear;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
  /* padding: 0px 60px; */
}

.testimonial {
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0;
  min-height: 350px;
  width: calc(100% - 2rem);
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial .right-align {
  text-align: right;
  font-weight: bold;
  color: #64b5f6;
  font-style: italic;
  margin-top: 1rem;
}

/* Navigation Arrows */
.testimonial-nav {
  background-color: #0099ff;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}

.testimonial-nav:hover {
  background-color: #007acc;
  transform: scale(1.1);
}

/* Dots Indicator */
.testimonial-dots {
  text-align: center;
  margin-top: 2rem;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: rgba(0, 153, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  /* background-color: #0099ff; */
  background-color: rgba(0, 153, 255, 1);
}

.dot:hover {
  background-color: rgba(0, 153, 255, 1);
}

/* Skills Grid Layout */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

.skill-box {
  width: 300px;
  height: auto;
  background: rgba(255, 255, 255, 1);
  border-radius: 15px;
  display: flex;
  align-items: start;
  justify-content: start;
  font-size:1rem;
  font-weight: bold;
  color: #2c3e50;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.skill-content {
  width: 100%;
  margin: 0px 18px;
}

#skills h2 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  margin: 2px 0;
  color: #21248b;
}

#skills i.fa-circle {
  font-size: 0.7rem !important;
  margin: 0px 5px;
  color: #ff6600;
}

.skill-content p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Skills Grid */
@media (max-width: 1200px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .skill-box {
    width: 350px;
    height: 200px;
    font-size: 1rem;
  }
}

@media (max-width: 895px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .skill-box {
    width: 100%;
    height: auto;
    font-size: 1rem;
  }
}

/* Responsive Two Column Layout */
@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .text-column,
  .image-column {
    flex: none;
    width: 100%;
  }
  
  .slideshow-container {
    width: 250px;
    height: 250px;
  }
  
  /* Responsive Testimonial Navigation */
  .testimonial-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .testimonial-nav.prev {
    left: 5px;
  }
  
  .testimonial-nav.next {
    right: 5px;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 480px) {
  .slideshow-container {
    width: 200px;
    height: 200px;
  }
  
  
  .testimonial p {
    font-size: 1rem;
  }
  
  .testimonial-nav {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

svg {
  display: none; /* hide so that .content doesn't account for the svg height */
}

h3 {
  letter-spacing: 5px;
  text-transform: uppercase;
  font: 20px "Oswald", sans-serif;
  font-weight: normal;
  color: #111;
}

.button-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0099ff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #0099ff;
}

.button-link:hover {
  background-color: #ffffff;
  color: #0099ff;
  border: 2px solid #0099ff;
}

.gray-button-link {
  display: inline-block;
  padding: 10px 18px;
  background-color: #999999;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
  font-size: 0.8rem;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #999999;
  vertical-align: super;
  margin-right: 1rem;
}

.gray-button-link:hover {
  background-color: #ffffff;
  color: #999999;
  border: 2px solid #999999;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
  .bgimg-1,
  .bgimg-2,
  .bgimg-3,
  .bgimg-4,
  .bgimg-5 {
    background-attachment: scroll;
  }
}

.bold {
  font-weight: bold;
}

.text-link {
  color: #0099ff;
  text-decoration: none;
  transition: width 0.3s ease;
}

.text-link:hover {
  text-decoration: underline;
}

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

.justify {
  text-align: justify;
}


.quote-section {
  position: relative;
  background-color:#282E34;
  text-align:center;
  padding:50px 80px;

}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  color:#ddd;
  text-align:center;
}

.footer-section {
  color: #777;
  position: relative;
  background-color:#282E34;
  text-align:left;
  padding:20px 20px;
}

.portfolio-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem 0;
}

@media (max-width: 1312px) {
  .portfolio-grid {
    justify-content: center;
    gap: 1rem 1rem;
  }
}






.portfolio-item {
  display: flex;
  align-items: end;
  width: 350px;
  height: 350px;
  font-size:1rem;
  font-weight: bold;
  color: #2c3e50;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  text-decoration: none !important;
  cursor: pointer;
  background-size: cover; /* Or other desired background properties */
  filter: grayscale(50%); /* Desaturates the background image completely */
}

.portfolio-item:hover {
  transform: scale(1.1); /* Zooms the image to 110% of its original size */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  filter: grayscale(0%); /* Desaturates the background image completely */
  z-index: 100;
}

.portfolio-item:active {
  transform: translateY(0);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-text {
  height: 75px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: -1px -9px 9px -1px rgba(0,0,0,0.31);
  -webkit-box-shadow: -1px -9px 9px -1px rgba(0,0,0,0.31);
  -moz-box-shadow: -1px -9px 9px -1px rgba(0,0,0,0.31);
}

.portfolio-item h3 {
  margin: 2px 8px;
  color: #0099ff;
  font-size: 1rem;
  text-align: left;
  letter-spacing: 2px;
}

.portfolio-item p {
  margin: 2px 8px;
  font-size: 0.9rem;
  text-align: left;
}

.portfolio-item-01 {
  background-image: url('images/portfolio/01-design-system-thumb.jpg');
}

.portfolio-item-02 {
  background-image: url('images/portfolio/02-directory-thumb.jpg');
}

.portfolio-item-03 {
  background-image: url('images/portfolio/03-payer-enrollment-thumb.jpg');
}

.portfolio-item-04 {
  background-image: url('images/portfolio/04-brand-refresh-thumb.jpg');
}

.portfolio-item-05 {
  background-image: url('images/portfolio/05-dashboards-thumb.jpg');
}

.portfolio-item-06 {
  background-image: url('images/portfolio/06-pdm-thumb.jpg');
}

/* Logo Ticker */

.logo-ticker {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  margin: 20px 0;
}

.logo-ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-ticker-track {
  display: flex;
  align-items: center;
  animation: scroll-left 60s linear infinite;
  width: max-content;
}

.logo-ticker-track img {
  display: inline-block;
  max-width:130px;
  max-height:50px;
  width: auto;
  height: auto;
  margin: 0px 25px;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.logo-ticker-track img:hover {
  opacity: 1;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments for logo ticker */
@media (max-width: 768px) {
  .logo-ticker-track img {
    height: 50px;
    margin: 0 20px;
  }
  
  .logo-ticker-track {
    animation-duration: 45s;
  }
}

@media (max-width: 480px) {
  .logo-ticker-track img {
    height: 40px;
    margin: 0 15px;
  }
  
  .logo-ticker-track {
    animation-duration: 35s;
  }
}

/* Responsive adjustments for testimonial header */
@media (max-width: 768px) {
  .testimonial-header {
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .testimonial-header h3 {
    order: 1;
    font-size: 1.3rem;
  }

  .testimonial-header .testimonial-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .testimonial-header .testimonial-nav.prev {
    order: 2;
  }

  .testimonial-header .testimonial-nav.next {
    order: 3;
  }
}

@media (max-width: 480px) {
  .testimonial-header h3 {
    font-size: 1.1rem;
  }
  
  .testimonial-header .testimonial-nav {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

.two-column-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
}

.project-row .project-label {
  display: inline-block;
  width: 70px;
  font-weight: normal;
  font-size: 0.9rem;
  vertical-align: top;
}

.project-row .project-value {
  display: inline-block;
  color: #0099ff;
  width: calc(100% - 100px);
  font-size: 0.9rem;
  vertical-align: top;
}

.column-container {
  display: flex; /* Enables flexbox for the container */
  flex-wrap: wrap; /* Allows columns to wrap to the next line on smaller screens */
  align-items: flex-start;
}

.column {
  flex: 1; /* Allows columns to take up equal available space */
  padding: 1rem; /* Add some padding for visual separation */
  /* Other styling like background-color, border, etc. */
}

.column p {
  margin: 0;
}

.column img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

.column img {
  transition: transform 0.5s ease-in-out;
  border: 1px solid #ddd;
}

.column img:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transform: scale(1.3);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 100;
}

.column-left img:hover {
  transform-origin: left;
}

.column-middle img:hover {
  transform-origin: center;
}

.column-right img:hover {
  transform-origin: right;
}

.column-bottom-left img:hover {
    transform-origin: bottom left;
}

.column-bottom-right img:hover {
    transform-origin: bottom right;
}


.project-details {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
}

.project-label {
  font-weight: bold;
  margin-right: 10px;
}

.project-value {
  font-weight: normal;
  margin-right: 10px;
}

.gallery {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin: 0 auto;
}

.gallery img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}

.case-container {
  margin-top: 7rem;
  padding: 0 2rem;
  overflow-x: hidden;
}

.case-container h2 {
  display: inline-block;
  margin-right: 1rem;
}

.case-marquee {
  display: block;
  min-height: 300px;
  height: auto;
  background-size: cover;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.case-marquee-01 {
  background: url('images/portfolio/case01-marquee.jpg') no-repeat top left;
}

.case-marquee-02 {
  background: url('images/portfolio/case02-marquee.jpg') no-repeat top center;
  background-size: auto 100%;
  background-position: center center;
}

.live-link {
  font-size: 1.1rem;
  text-align: left;
  font-weight: bold;
  margin-top: 1rem;
}

/* Column Media query for smaller screens */
@media (max-width: 768px) {
  .column-container {
    flex-direction: column; /* Stacks columns vertically on smaller screens */
  }
  .column {
    width: 100%; /* Ensures columns take full width when stacked */
  }

  .column img:hover {
    transform: scale(1);
    box-shadow: none;
  }

  .case-marquee-02 {
    background-size: 100% auto;
  }
}