/* Base setup */
body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background-color: #081630;
  color: #fff;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}
/* Mobile Sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0f1e3a;
  color: #d5e6e3;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 9999;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mobile-cta:hover {
  background-color: #1a3b6e;
}
/**ANIMATIONS ANIMATIONS ANIMATIONS ANIMATIONS ANIMATIONS ANIMATIONS ANIMATIONS ANIMATIONS*/

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-5deg);
  }
  30% {
    transform: rotate(5deg);
  }
  45% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-3deg);
  }
  90% {
    transform: rotate(3deg);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}
/* Animation */
@keyframes slideIn {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes scrollRow {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.0);
  }
  50% {
    box-shadow: 0 0 16px 6px rgba(213, 230, 227, 0.2); /* brighter pulse using your border color */
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* NAVIGATION  NAVIGATION NAVIGATION NAVIGATION NAVIGATION NAVIGATION NAVIGATION NAVIGATION NAVIGATION */
.navbar {
  margin: 30px auto auto; /* Top, Right, Bottom, Left */
  border-radius: 15px;
  top: 30px;
  width: 97%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
}
#vxd-navbar {
  position: fixed;
  top: 0;
  left: 20px;

}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 120px; /* space between links and button */
  }
/* Logo */
.logo a{
    display: flex;
    width: 50px;
    height: 50px;
    
}

.logo:hover {
    transform: scale(1.3); /* Scale up on hover */
    transition: transform 0.3s ease;
    
}

/* Nav links */
.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #d5e6e3;
  font-size: 18px;
  transition: color 0.2s ease;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 70px;
  }
.nav-links a:hover {
  color: #081630;
}
.nav-links #work-link {
  color: #081630;
}
.nav-links #work-link:hover {
  color: #d5e6e3;
}
.nav-links #about-link {
  color: #081630;
}
.nav-links #about-link:hover {
  color: #d5e6e3;
}
.nav-links #contact-link {
  color: #081630;
}
.nav-links #contact-link:hover {
  color: #d5e6e3;
}
/* CTA button */
.cta-button {
  padding: 8px 20px;
  width: 120px;
  display: flex;
  justify-content: center;
  background-color: #d5e6e3;
  color: #081630;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 400;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.cta-button:hover {
  background-color: #378379;
  color: #d5e6e3;
}
.cta-arrow img {
  width: 24px;
  height: 24px;
  padding: 5px;
  border: 1px solid #d5e6e3;
  border-radius: 50%;
}
.cta-arrow img:hover {
  transform: scale(1.1);
  animation: shake 0.5s ease-in-out;
}

.nav-links .cta-button {
  color: #081630;
 
}
.nav-links .cta-button:hover {
  background-color: #378379;
  color: #d5e6e3;
}


/* Scroll progress bar styles */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background: linear-gradient(90deg, #ccd0cf, #378379);
  z-index: 999999;
  transition: width 0.25s ease-out;
}
.mockup-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 40px;
}

.mockup-nav a {
  text-decoration: none;
  color: #d5e6e3;
  

}
.mockup-link{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f1e3a;
  border: d5e6e3 1px solid;
  max-width: 150px;
  max-height: 150px;
  

}
.mockup-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  border: #d5e6e3 1px solid;
}

.mockup-link img:hover {
  transform: scale(1.1);
  animation: shake 0.5s ease-in-out;
}
.back-to-top{
  position: fixed;
  bottom: 20px;
  right: 20px;
  margin: 0 auto;
  text-decoration: none;
  z-index: 9999;
}
/* HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME*/
#home-nav-links a:hover{
  color: #378379;

}
#mobile-home-login{
  display: none; /* Hide on desktop */
}
.home-navbar {
  margin: 30px auto auto; /* Top, Right, Bottom, Left */
  border-radius: 15px;
  top: 0px;
  width: 97%;
  z-index: 1000;
}

.home-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("Assets/VXD-comp-png.png");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}
.hero-section {
  border-radius: 30px;
  position: relative;
  margin: auto;
  height: 85vh;
  width: 1200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 10px;
  text-align: center;
  flex-wrap: wrap;
}

.hero-section .hero-img{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto; /* Let image keep its aspect ratio */
  transform: translateX(-300px);
  z-index: 1;
  pointer-events: none;
  animation: slideIn 1s ease-out forwards;
}
.hero-content { 
  position: relative; 
  z-index: 2; 
  max-width: 800px; 
  height: 250px; 
  padding: 20px 60px; 
  border-radius: 30px; 
  background: transparent; 
  overflow: hidden; 
  
  --border-angle: 0turn; /* initial angle for gradient rotation */ 
  --main-bg: conic-gradient( 
    from var(--border-angle), 
    transparent,
    #081630 5%,
    #081630 60%,
    #081630 95%
    /*#213, 
    #112 5%, 
    #112 60%, 
    #213 95%*/
     ); 
     
     border: solid 3px transparent; 
     --gradient-border: conic-gradient(
      from var(--border-angle),transparent, #f6f1ea, #378379, #9ed8ff 99%, transparent); 
      background: /* padding-box clip this background in to the overall element except the border.*/ 
      var(--main-bg) padding-box, /* border-box extends this background to the border space*/ 
      var(--gradient-border) border-box, 
      /* Duplicate main background to fill in behind the gradient border. You can remove this if you want the border to extend "outside" the box background.*/ 
      var(--main-bg) border-box; 
      
      background-position: center center; 
      animation: bg-spin 8s linear infinite; 
  } 
      
      @keyframes bg-spin { 
        to { --border-angle: 1turn; } 
  } &:hover { 
    animation-play-state: paused; 
  } 
  
  @property --border-angle { 
    syntax: "<angle>"; 
    inherits: true; 
    initial-value: 0turn; 
  }
/* ---- What We Do - Reusable styles ---- */
.what-we-do {
  position: relative; /* makes ::before position itself inside THIS section */
  width: 100%;
  padding: 48px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* optional but nice — prevents background overflow */
}

.wwd-inner {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* image left, text right */
  gap: 120px;
  align-items: center;
  align-content: center;
}
.wwd-image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.wwd-image img {
  border-radius: 20px;
  width: 600px;
  height: 600px;
}
/*
.wwd-rg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("Assets/wwd-rg-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
}
.wwd-vim::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('Assets/wwd-vim-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
}
.wwd-vxd::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('Assets/wwd-vxd-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
}*/

#wwd-vim-text .wwd-list{
  color: #f6f1ea;
}
#wwd-vim-text .wwd-title{
  color: #f6f1ea;
}
#wwd-vim-p{
  color: #f6f1ea;
}
#wwd-vxd-text .wwd-list{
  color: #e0edf6;
}
#wwd-vxd-text .wwd-title{
  color: #e0edf6;
}
#wwd-vxd-p{
  color: #e0edf6;
}
.wwd-text {
  color: #d5e6e3;
}
.wwd-title {
  font-size: 32px;
}
.wwd-text p {
  color: #d5e6e3;
  font-size: 24px;
  line-height: 1.6;

}
.wwd-list{
  padding-left: 20px;
  text-align: left;
  color: #d5e6e3;
  font-size: 24px;
  line-height: 1.6;
}
.wwd-list a {
  color: #d5e6e3;
  text-decoration: none;
}
/* 👇 Initial hidden states */
.wwd-image img {
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.wwd-text {
  opacity: 0;
  transform: translateX(200px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out 0.3s; /* delay after image */
}

.wwd-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}

/* 👇 In-view animation states */
.in-view .wwd-image img {
  opacity: 1;
  transform: translateX(0);
}

.in-view .wwd-text {
  opacity: 1;
  transform: translateX(0);
}

/* 👇 Stagger the list items AFTER text appears */
.in-view .wwd-list li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.in-view .wwd-list li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.in-view .wwd-list li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.85s;
}
.in-view .wwd-list li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

/* Optional: CTA fade slightly after list */
.wwd-text .cta-button {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition-delay: 1s;
}

.in-view .wwd-text .cta-button {
  opacity: 1;
  transform: translateY(0);
}

.subheading {
  font-size: 24px;
  color: #d5e6e3;
  margin-bottom: 10px;
}
.hero-heading {
  font-size: 32px;
  color: #d5e6e3;
  margin-bottom: 20px;
}


.welcome-text {
 font-size: 24px;
  font-weight: 400;
  color: #d5e6e3;
  margin-bottom: 25px;
}
.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.section-2{
  background-color: #0f1e3a;
  border-radius: 30px;
}
.testimonial-card {
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  margin: 2rem auto;
  max-width: 960px;
  transition: transform 0.3s ease;
}

.glass-section {
  flex: 1 1 400px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #d5e6e3;
  min-height: 300px;
}

.quote {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.name {
  font-weight: bold;
  font-size: 1.1rem;
}

.role {
  font-size: 0.9rem;
  opacity: 0.7;
}

.image-section {
  position: relative;
  flex: 1 1 400px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  min-height: 300px;
}

.testimonial-card:hover .image-section {
  transform: scale(1.1);
}

.testimonial-card:hover .glass-section {
  transform: translateX(-20px);
}
.image-section .cta-arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;

}

  .box .process-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .box:hover .process-answer {
    opacity: 1;
    max-height: fit-content;
    transition: all 0.5s ease;
  }
.partners {
  color: #d5e6e3;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  max-width: 900px;
  height: 200px;
  border-radius: 30px;
  margin: 20px auto;
}
.partners p{
  font-size: 24px;
  font-weight: 500;
}
.partners img {
  width: 400px;
  height: auto;
  margin: 10px;
}
.partners img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}
.section-overlay {
  position: relative;
  flex-wrap: wrap;
  height: 120vh;
  margin: 0 auto;
  z-index: 1;
  padding: 20px 20px;
  gap: 20px;
  color: #d5e6e3;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent dark overlay */
}

.section-overlay::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.25;
  background-size: cover;
  background-position: center;
  animation: bgFade 48s infinite;
  border-radius: 10px;
}

/* 🎞️ Fade through 3 background images */
@keyframes bgFade {
  0%   { background-image: url('Assets/coding.png'); }
  15%  { background-image: url('Assets/hamilton wallpaper.jpg'); }
  30%  { background-image: url('Assets/Image 1 BW (4to5).png'); }
  45%  { background-image: url('Assets/work/uiux/doctor\ mockup\ 1.png'); }
  60%  { background-image: url('Assets/work/uiux/realtor\ mockup\ 1.png'); }
  75%  { background-image: url('Assets/work/photography/MD\ \(7\).png'); }
  90%  { background-image: url('Assets/work/photography/TW\ \(2\).png'); }
  100% { background-image: url('Assets/coding.png'); }
}
.corner-cta {
  position: absolute;
  width: fit-content;
  height: auto;
  display: flex;
  gap: 20px;
  bottom: 20px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 20px;
  color: #d5e6e3;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
}

.corner-cta:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.case-study-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("Assets/wwd-vxd-bg.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  opacity: 0.5;
  z-index: -1;
}
.case-study-cta {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  color: #d5e6e3;
  padding: 40px 20px;
  /*background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);*/
  border: #d5e6e3 1px solid;
  gap: 50px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1100px;
}
.cs-left{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cs-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cs-left .cs-cta-content, .cs-right .cs-cta-content{
  display: flex;
  flex-direction: column;

}
.case-study-cta .cta-button{
  width: 150px;
}
.cs-cta-content{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cs-cta-content p {
  font-size: 18px;
  color: #d5e6e3;
  margin: 0;
}
.cs-cta-content h4 {
  font-size: 24px;
  color: #d5e6e3;
}
/* Basic styling */
.case-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.case-content {
  background: #081630;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 500px;
}

.pillars {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  
}
.pillar img {
  width: 150px;
  height: 150px;
  border: #3b4a5d 1px solid;
  border-radius: 15px;
}
.pillar {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.pillar:hover {
  transform: scale(1.05);
}

    .who-we-serve {
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    justify-content: center;
    gap: 45px;
    padding: 0 20px;
    flex-wrap: wrap;
  }
    .card1-icon {
    width: 60px;
    height: 60px;
    margin-left: 1rem;
  }
  .card1 {
    background-color: #0f1e3a;
    color: #d5e6e3;
    padding: 2rem;
    border: #d5e6e3 1px solid;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    flex: 1 1 45%;
    max-width: 200px;
    min-height: 200px;
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  
  .card1:hover {
    transform: translateY(-10px);
    transform: scale(1.05);
  }
.FAQS {
    max-width: 1200px;
    color: #d5e6e3;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
  }
.box div {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.box img {
  width: 32px;
  height: 32px;
  color: #d5e6e3;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  max-width: 1200px;
  gap: 1rem;
  margin: 4rem 7rem;
  justify-content: center;
  align-items: center;
}

.box {
  padding: 2rem;
  background-color: #0f1e3a;
  color: #d5e6e3;
  border: #d5e6e3 1px solid;
  border-radius: 1rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Different box spans for visual dynamism */
.box1 {
  grid-column: span 2;
  grid-row: span 1;
}
.box2 {
  grid-column: span 1;
  grid-row: span 1;
}
.box3 {
  grid-column: span 3;
  grid-row: span 1;
}
.box4 {
  grid-column: span 3;
}
.box5 {
  grid-column: span 2;
}
.box6 {
  grid-column: span 2;
}
.box {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.box.show {
  opacity: 1;
  transform: translateY(0);
}
.box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Calendar Section */
.container::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("Assets/calendar\ img.png");
      background-size: cover;
      background-position: center;
      border-radius: 30px;
      opacity: 0.1;
      z-index: -1;
    }
 .container {
      text-align: center;
      display: flex;
      flex-direction: column;
      color: #d5e6e3;
      backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.1);
      padding: 20px;
      border-radius: 30px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      max-width: 500px;
      height: 250px;
      margin: 200px auto;
    }
    .container .calendar-cta{
      display: flex;
      justify-content: center;
      margin: 0 auto;
      gap: 20px;
    }

/* HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME HOME Responsive Design */
@media (max-width: 768px) {

  #desktop-home-login {
    display: none; /* Hide on mobile */
  }
  #mobile-home-login{
    display: block; /* Show on mobile */
    text-align: center;
  }
#mobile-home-login:hover {
  background-color: #378379;
  color: #d5e6e3;

}
  .hero-section {
    border: #3b4a5d 1px solid;
  flex-direction: column;
  height: auto; /* Instead of 100vh on mobile */
  width: 350px; /* Adjust width for mobile */
  padding: 20px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

  .hero-content {
    max-width: 300px;
    height: auto;
    padding: 20px 15px;
    border: none;
    align-items: center;
    border: #3b4a5d 1px solid;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
  }

  .hero-heading {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .subheading {
    font-size: 1rem;
  }

  .welcome-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .cta-hero {
    flex-direction: row;
    gap: 10px;
    margin: 15px auto;
    width: 220px;
  }

.hero-section .hero-img {
  position: relative;
  transform: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  z-index: 5;
  margin-top: -70px; /* <-- Adjust this to tighten the gap */
  margin-bottom: 120px;
}
.what-we-do{
  padding: 20px 10px;
  max-width: 350px;
  margin: 0 auto
  }

  .wwd-inner {
    grid-template-columns: 1fr; /* stack image and text */
    gap: 20px;
    max-width: 350px;
    margin: 0 auto;
  }
  
.wwd-title {
  font-size: 24px;
}
.wwd-text p {
  color: #d5e6e3;
  font-size: 18px;
  line-height: 1.6;

}
.wwd-list{
font-size: 18px;

}
  .wwd-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin: 0 auto;
  }
  .home-navbar {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 15px;
  }

  .home-nav-container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }


  .section-overlay {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 350px;
    height: 1270px;
    
    border-radius: 20px;
  }
  .testimonial-card {
    flex-direction: column;
  }
  .glass-section, .image-section {
    flex: 1 1 100%;
  }
  .testimonial-card:hover .glass-section {
    transform: none;
  }
  .partners {
    flex-direction: column;
    align-items: center;
    width: 300px;
    height: auto;
    justify-content: center;

  }
  .partners p {
    text-align: center;
    margin-bottom: 20px;
  }
  .partners img {
    max-width: 250px;
    display: block;
  }
  .container {
    max-width: 350px;
    height: auto;
    align-items: center;
  }
  .case-study-cta{
    width: 350px;
    display: flex;
    flex-direction: column;
  }
  .cs-cta-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .work-item .cta-arrow{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;

}
}
/*
.cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #0b1424;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #f0f0f0;
}*/
/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
  }

  .welcome-text {
    font-size: 1.2rem;
  }

}
.row-2 {
  animation: scrollRight 40s linear infinite;
}
.row-3 {
  animation: scrollLeft 50s linear infinite;
}
    .row-1 {
      top: 15%;
      animation-duration: 40s;
    }

    .row-2 {
      top: 45%;
      animation-duration: 60s;
    }

    .row-3 {
      top: 75%;
      animation-duration: 50s;
    }

    

.hero-image img {
  width: 100%;
  max-width: 800px; /* increase this for bigger logo */
  height: auto;
  object-fit: contain;
}
.hero{
    max-width: 1200px;
    height: 380px;
    margin: 0 auto;
    margin-bottom: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row; /* ← default but just in case */
    padding: 60px 20px; /* optional spacing */
    /*gap: 50px;*/
  }

  .hero-text {
    flex: 1;
    color: #d5e6e3;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 30px;
    align-items: flex-start;
  }
  .hero-text h1 {
    font-size: 3.2rem;
    margin: 0;
    font-weight: 700;
    color: #d5e6e3;
  }
  .hero-text p {
    font-size: 1.5rem;
    margin: 0;
    color: #d5e6e3;
  }

  .hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

/* WORK WORK WORK WORK WORK WORK WORK WORL WORK WORK WORK WORK WORK WORK WORK WORK WORK WORK WORK */
.filter-coming-soon {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  border-radius: 12px;
  margin: 30px auto 20px;
  max-width: 600px;
  color: #ccc;
  font-style: italic;
  font-size: 0.95rem;
}
.masonry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  transition: all 0.5s ease;
  justify-content: center;
}

.work-item {
  transition: all 0.7s ease-in;
}


.masonry-grid-wrapper {
  position: relative;
  z-index: 1;
  padding: 20px;
  overflow: hidden;
}

.masonry-grid-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.2;
  z-index: -1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: 10px;
  gap: 20px;
  padding: 20px;
}

.work-item {
  border: #3b4a5d 1px solid;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.work-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.work-item .cta-arrow{
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;

}

.work-item:hover {
  transform: scale(1.02);
}

.overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #d5e6e3;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
}

/* Size Control */
.xs { grid-row-end: span 7; }
.short { grid-row-end: span 11; }
.med { grid-row-end: span 14; }
.tall { grid-row-end: span 20; }
.xl { grid-row-end: span 26; }

/* Filters */
.filter-controls {
  text-align: center;
  padding: 20px;
}

.filter-btn {
  margin: 5px;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #d5e6e3;
  background: rgba(255, 255, 255, 0.05);
   border: #3b4a5d 1px solid;
}

.filter-btn.active {
  background: #d5e6e3;
  color: #081630;
}
.filler {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.05);
  border: #3b4a5d 1px solid;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filler-blur-box {
  padding: 20px;
  max-width: 300px;
}

.filler-line {
  font-size: 1rem;
  color: #d5e6e3;
  font-weight: 600;
  margin-bottom: 8px;
}

.filler-sub {
  font-size: 0.85rem;
  color: #d5e6e3;
  font-style: italic;
}
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}
.image-modal img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2100;
}

  
#work-hero, #vimhero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  #work-hero::before, #vimhero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 80%;
    background-image: url("Assets/vim_comp.png"); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 150px;
    margin-top: 10px;
    opacity: 0.15;
    z-index: 0;
  }
  
  .work-hero-text, .vim-hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #d5e6e3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-50px);
  }
#vimhero .cta-button, #work-hero .cta-button {
    margin-top: 20px;
  }
  #work-hero .cta-button:hover {
    background-color: #378379;
    color: #d5e6e3;
  }

  .work-hero-text h1 {
    font-size: 3.2rem;
    margin-top: 20px;
    font-weight: 700;
    color: #d5e6e3;
  }
  .work-hero-text P, .vim-hero-text p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #d5e6e3;
  }
   .vim-hero-text h2 {
    font-size: 3.2rem;
    margin-top: 20px;
    font-weight: 700;
    color: #d5e6e3;
  }
  
  .work-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    margin: 0 auto;
  }

  .work-card {
    background-color: #0f1e3a;
    padding: 1.5rem;
    border-radius: 10px;
    border: #d5e6e3 1px solid;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #d5e6e3;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    
  }

  .work-preview {
    max-height: 0;
    overflow-y: auto;
    transition: max-height 0.4s ease;
  }

  .work-card:hover .work-preview {
    max-height: 300px; /* adjust as needed */
  }
  .work-preview::-webkit-scrollbar {
    width: 6px;
  }
  
  .work-preview::-webkit-scrollbar-thumb {
    background-color: #378379;
    border-radius: 3px;
  }
  .work-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
  }

  .work-card li {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }

  .work-card a {
    color: #93e8d2;
    text-decoration: none;
  }

  .work-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .project-thumb img{
    width: 60%;
    height: 60%;
    /*object-fit: cover;margin: auto;*/
    margin-bottom: 0.5rem;
    border-radius: 6px;
    border: #d5e6e3 1px solid;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
  }

/*ABOUT ABOUT ABOUT ABOUT ABOUT ABOUT ABOUT ABOUT ABOUT ABOUT ABOUT ABOUT ABOUT ABOUT ABOUT*/

 .about-section {
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 150px;
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .about-card {
    background-color: #0f1e3a;
    color: #d5e6e3;
    padding: 2rem;
    border: #d5e6e3 1px solid;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    flex: 1 1 45%;
    max-width: 800px;
    min-height: 400px;
    transition: transform 0.3s ease;
  }
  .about-card:hover {
    transform: translateY(-10px);
    transform: scale(1.05);
  }
  .about-card img {
    width: 350px;
    height: 350px;
    border: #d5e6e3 1px solid;
    border-radius: 10px;
    margin-left: 1rem;
  }
  .about-image-dev img {
    width: 350px;
    height: 400px;
    border: #d5e6e3 1px solid;
    border-radius: 10px;
    margin-left: 1rem;
  }
  .about-card .about-text {
    color: #d5e6e3;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
  }
  .about-text p {
    font-size: 18px;
    margin-bottom: 10px;
  }



.milestone-scroll {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  border-radius: 30px;
  margin-bottom: 50px;
}

.milestone-slide {
  scroll-snap-align: start;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #d5e6e3;
}
.milestone-title{
  color: #d5e6e3;
  text-align: center;
}
.milestone-title p{
  font-size: 24px;
}
.milestone-scroll {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.milestone-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.milestone-slide:nth-child(1)::before {
   content: "";
  position: absolute;
  inset: 0;
  background: url('Assets/2020\ logo.png') center/contain no-repeat,
              linear-gradient(135deg, #081630 0%, #1e1e2f 40%, #ccd0cf 100%);
  background-size: contain, 200% 200%;
  animation: gradientShift 6s ease infinite;
  opacity: 0.5;
  z-index: 0;
}

.milestone-slide:nth-child(2)::before {
   content: "";
  position: absolute;
  inset: 0;
  background: url('Assets/20224-logo.png') center/contain no-repeat,
              linear-gradient(135deg, #1b1b2e 0%, #293241 40%, #90a4ae 100%);
  background-size: contain, 200% 200%;
  animation: gradientShift 6s ease infinite;
  opacity: 0.5;
  z-index: 0;
}

.milestone-slide:nth-child(3)::before {
   content: "";
  position: absolute;
  inset: 0;
  background: url('Assets/2024-logo.png') center/contain no-repeat,
              linear-gradient(135deg, #102027 0%, #1e293b 40%, #d1d5db 100%);
  background-size:contain, 200% 200%;
  animation: gradientShift 6s ease infinite;
  opacity: 0.5;
  z-index: 0;
}

.milestone-slide:nth-child(4)::before {
   content: "";
  position: absolute;
  inset: 0;
  background: url('Assets/JA\ OYB\ PNG.png') center/contain no-repeat,
              linear-gradient(135deg, #0d1b2a 0%, #1b263b 40%, #f0f4f8 100%);
  background-size:contain, 200% 200%;
  animation: gradientShift 6s ease infinite;
  opacity: 0.5;
  z-index: 0;
}

.milestone-slide h2,
.milestone-slide p {
  position: relative;
  z-index: 1;
}

.milestone-slide h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.milestone-slide p {
  max-width: 600px;
  font-size: 1.1rem;
}



  /* CONTACT CONTACT CONTACT CONTACT CONTACT CONTACT CONTACT CONTACT CONTACT CONTACT */
  .contact-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-bottom: 150px;
  padding: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  background: #0f1e3a;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid #d5e6e3;
}

.contact-box form {
  flex: 1;
  max-width: 500px;
  color: #d5e6e3;
}

.contact-box form label{
  font-weight: bold;
  color: #d5e6e3;
  font-size: 0.95rem;
}

.contact-box form input,
.contact-box form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  margin-bottom: 20px;
  background: #0f1e3a;
  border: 1px solid #d5e6e3;
  border-radius: 10px;
  color: #d5e6e3;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-box form input:focus,
.contact-box form textarea:focus{
  outline: none;
  border-color: #d5e6e3;
  box-shadow: 0 0 10px rgba(213, 230, 227, 0.8);
}

#contact-submit {
  width: 50%;
  padding: 12px;
  background: #d5e6e3;
  color: #081630;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact-submit:hover {
  background: #378379;
  color: #d5e6e3;
}

.contact-logo img {
  width: 550px;
  height: 550px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.contact-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(213, 230, 227, 0.8);
}

  .review{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px; /* optional spacing */
  }
  .review img {
    min-width: 380px;
    max-width: 1000px;
    height: auto;
    border : #d5e6e3 1px solid;
    border-radius: 40px;
    transition: transform 0.3s ease;
  }
  .review img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  .review h2 {
    color: #d5e6e3;
    margin-bottom: 20px;
  }

  /*CORE CORE CORE CORE CORE CORE CORE CORE CORE CORE CORE CORE CORE CORE CORE CORE CORE CORE*/
  .core{
      background: linear-gradient(135deg, #081630 0%, #1e1e2f 40%, #ccd0cf 100%);
      background-size: 200% 200%;
      animation: gradientShift 6s ease infinite;
  }
  .core-hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  color: #d5e6e3;
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.core-hero-text {
  max-width: 800px;
  margin-bottom: 40px;
}

.core-hero-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.core-hero-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.95;
}

.pc {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.progress-container1 {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  height: 14px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.progress-line {
  height: 100%;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  text-align: right;
  padding-right: 8px;
  font-size: 0.8rem;
  line-height: 14px;
  color: #fff;
  font-weight: bold;
}

.progress-container {
  display: flex;
  justify-content: space-between;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 80px;
  max-width: 120px;
  padding: 10px;
}

.progress-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease;
}

.progress-step:hover .progress-icon {
  transform: scale(1.15);
}

.progress-step span {
  font-size: 0.9rem;
  color: #d5e6e3;
  opacity: 0.9;
}


.thankyou {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
    }
    .thankyou h1 {
      font-size: 2.5rem;
    }
    .thankyou .cta-button {
      margin-top: 50px;
    }
/* CASE STUDY CASE STUDY CASE STUDY CASE STUDY CASE STUDY CASE STUDY CASE STUDY CASE STUDY */
 .case-study {
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
  }
  .case-study-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: -40px;
   
  }
  .case-study-images img {
    max-width: 800px;
     border-radius: 10px;
    border: #d5e6e3 1px solid;
    height: auto;
    transition: transform 0.3s ease;
  }
  .case-study-images img:hover {
    transform: scale(1.009);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  .csnav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    gap: 500px;
    max-width: 800px;
    margin-bottom: 100px;
  }

  /* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

.lightbox .close { top: 20px; right: 30px; }
.lightbox .prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 30px; top: 50%; transform: translateY(-50%); }

  #service-title {
    color: #d5e6e3;
    font-size: 32px;
    text-align: center;
    margin-top: 50px;
  }
  /* VXD VXD VXD  VXD VXD VXD VXD VXD VXD VXD VXD VXD VXD VXD VXD VXD VXD VXD VXD */
 .vxd-hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a, #1e293b, #2d3e50);
  background-size: 300% 300%;
  animation: bgMove 14s ease infinite;
  color: #e0edf6;
  text-align: center;
  overflow: hidden;
}
.vxd-hero-overlay{
    z-index: 2;
  padding: 40px;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: #e0edf6 1px solid;
}

.vxd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Assets/vxdlogof-png.png") center/800px no-repeat;
  z-index: 0;
   animation: logoPulse 10s ease-in-out infinite;
}

.vxd-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Assets/wwd-vxd-bg.jpg") repeat,
              linear-gradient(135deg, #0f172a, #1e293b, #2d3e50);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
#dynamic-tag2 {
  color: #5fb3e6;
  transition: opacity 0.2s ease-in-out;
}

.vxd-hero-subtext, .vxd-hero-title {
color: #e0edf6;
}
.vxd-hero-subtext {
  font-size: 24px;
}
.vxd-cta-button{
  padding: 8px 20px;
  width: 120px;
  display: flex;
  justify-content: center;
  background-color: #e0edf6;
  color: #081630;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 400;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.vxd-cta-button:hover {
  background-color: #5fb3e6;
  color: #e0edf6;
}

/*
.who-we-serve {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.who-we-serve.show{
  opacity: 1;
  transform: translateY(0);
}*/

/* Optional: add a soft overlay layer 
.card.wireframe::after, .card.uiux::after, .card.development::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.01);  subtle white layer 
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  z-index: 0;
  pointer-events: none;
  border-radius: 12px;
}
/*.card.wireframe:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-in-out;
}*/

.vxd-work {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}
.vxd-work-bottom {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}
.vxd-card{
    position: relative; 
    overflow: hidden;
    z-index: 1;
    border: #d5e6e3 1px solid;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    flex: 1 1 45%;
    max-width: 350px;
    min-height: 350px;
    transition: transform 0.3s ease;
}
.coremu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("Assets/work/uiux/core\ ui\ mockup.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.dsbmu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("Assets/work/uiux/doctor\ mockup\ 1.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.realtormu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("Assets/work/uiux/realtor\ mockup\ 1.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.vxd-card:hover {
  transform: translateY(-10px);
  transform: scale(1.05);
}
.vxd-cta .cta-button{
  width: 150px;
}
.vxd-cta{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  right: 0;

}

.vxd-card .cta-button{
  position: absolute;
  width: 70px;
  bottom: 20px;
  left: 50%;
  transform: translateX(40%);


}
.vxd-core-text {
  background-color: #0f1e3a;
  border: #d5e6e3 1px solid;
  width: 700px;
  height: fit-content;
  padding: 40px;
  border-radius: 20px;
  color: #d5e6e3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
  .vxd-status{
    color: #d5e6e3;
    margin-left: 20px;
  }
.paragraphs, .paragraph1 {
  color: #d5e6e3;
  font-size: 24px;
  margin-left: 120px;
  margin-bottom: 20px;
}
.vxd-who-we-serve {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
  padding: 0 20px;
  flex-wrap: wrap;
}
.card2 {
  max-width: 300px;
  background-color: #0f1e3a;
  color: #d5e6e3;
  padding: 2rem;
  border: #d5e6e3 1px solid;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  flex: 1 1 45%;
  width: 200px;
  min-height: fit-content;
  transition: transform 0.3s ease;
}
.card2 p{
  font-size: 18px;
  margin-bottom: 10px;
}
.vxd-underdog{
  color: #d5e6e3;
  width: 1200px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;

}
.vxd-underdog p{
  font-size: 24px;
  color: #d5e6e3;
  margin-bottom: 10px;
} 

.box.glow {
  animation: pulse 2s infinite;
}
.card.glow {
  animation: pulse 1.5s infinite;/* brighter pulse using your border color */
}
.card1.glow {
  animation: pulse 1.5s infinite;
}
.about-card.glow {
  animation: pulse 2s infinite;
}
  .faq-card {
    background-color: #0f1e3a;
    color: #d5e6e3;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    /*flex: 1 1 45%;*/
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    transition: transform 0.3s ease;
    /*position: relative;
    overflow: hidden;
    cursor: pointer;*/
  }

  .faq-card .answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    font-size: 18px;
  }
  .faq-card:hover {
    transform: translateY(-15px);
    transform: scale(1.02);
  }
  .faq-card:hover .answer {
    opacity: 1;
    max-height: fit-content;
  }

  .contact-us {
    max-width: 800px;
    margin: 80px auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
  }
  #thoughts, #contact-method{
    width: 85%;
  padding: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  background: #0f1e3a;
  border: 1px solid #d5e6e3;
  border-radius: 10px;
  color: #d5e6e3;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  }
  #thoughts:focus, #contact-method:focus {
    outline: none;
    border-color: #d5e6e3;
    box-shadow: 0 0 10px rgba(213, 230, 227, 0.8);
  }
 #thoughts::placeholder,
#contact-method::placeholder {
  color: #aabfc7;
  font-style: italic;
  letter-spacing: 0.3px;
  font-size: 1rem;
  opacity: 0.85;
  transition: all 0.3s ease;
}
#thoughts:focus::placeholder,
#contact-method:focus::placeholder {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}


.contact-us label {
    font-size: 1.7rem;
    color: #d5e6e3;
  }
 
/* Step initially hidden but still in the DOM */
#step-two {
  opacity: 0;
  transform: translateX(100px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease;
}

/* Step becomes visible */
#step-two.visible-step {
  opacity: 1;
  transform: translateX(0);
  max-width: 100%;
  max-height: 500px; /* large enough to reveal content */
  pointer-events: auto;
}

/*VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM VIM HERO HERO HERO HERO*/
.vim-hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: linear-gradient(135deg, #0f172a, #1e293b, #2d3e50);*/
  background-size: 300% 300%;
  animation: bgMove 14s ease infinite;
  color: #f6f1ea;
  text-align: center;
  overflow: hidden;
}

.vim-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Assets/vimlogof-png.png") center/800px no-repeat;
  z-index: 0;
   animation: logoPulse 10s ease-in-out infinite;
}

.vim-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Assets/wwd-vim-bg.jpg") repeat;
              /*linear-gradient(135deg, #0f172a, #1e293b, #2d3e50);*/
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
} 

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.hero-overlay{
  z-index: 2;
  padding: 40px;
  max-width: 800px;
  border: #f6f1ea 1px solid;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
}

.hero-title {
  font-size: 30px;
  margin-bottom: 15px;
}

#dynamic-tag {
  color: #c36b45;
  transition: opacity 0.2s ease-in-out;
}

.hero-subtext {
  font-size: 24px;
  margin-bottom: 30px;
  color: #f6f1ea;
}
.vim-cta-button{
  padding: 8px 20px;
  width: 120px;
  display: flex;
  justify-content: center;
  background-color: #f6f1ea;
  color: #081630;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 400;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.vim-cta-button:hover {
  background-color: #c36b45;
  color: #f6f1ea;
}
.vimcs-cta{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;

}
.vimcs-cta-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  right: 0;
  margin-bottom: 100px;
  margin-top: 30px;
}

/* FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER */
  .site-footer {
    color: #d5e6e3;
    padding: 20px 20px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 50px;
    max-height: fit-content;
    bottom: 0;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .footer-col {
    flex-basis: 20%;
    text-align: left;
  }
  .footer-col:nth-child(2),.footer-col:nth-child(3) {
    flex-basis: 25%;
  }
  .footer-col ul {
    text-align: left;
    padding: 0;
  }
  .footer-col h4 {
    width: fit-content;
    font-size: 18px;
  }
  .footer-col li {
    text-decoration: none;
    list-style: none;
  }
    .footer-col a {
    text-decoration: none;
    list-style: none;
  }
  .footer-col li a {
    color: #d5e6e3;
    display: flex;
    flex-direction: column;
    align-items: left;
   gap: 10px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
    transform: 0.3s ease;
  }
  .footer-col li a:hover {
    color: #081630;
    transform: scaleY(10px);

  }
  .footer-col img {
    width: 180px;
    height: 180px;
  }
  .footer-col .cta-button {
    margin-top: 20px;

  }
  .social-icons {
  display: flex;
  flex-direction: row;
  align-items: center; 
  justify-content: flex-start;

}
.social-icons img {
  width: 64px;
  height: 64px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.5);
}
hr {
  width: 90%;  
  border: 0;
    border-top: 1px solid #d5e6e3;
    margin: 20px auto;
  }
  .copyright {
    text-align: center;
    margin-top: 20px;
    color: #d5e6e3;
    font-size: 0.8rem;
    opacity: 0.8;
  }

/* WORK GALLERY WORK GALLERY WORK GALLERY WORK GALLERY WORK GALLERY WORK GALLERY */
  .work-gallery {
  padding: 20px;
}

.filter-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.filter-buttons button {
  background-color: #0f1e3a;
  color: #d5e6e3;
  border: 1px solid #d5e6e3;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.filter-buttons button:hover {
  background-color: #d5e6e3;
  color: #081630;
}

.grid-item img {
  width: 100%;
  object-fit: contain;
}

.grid-item p {
  color: #d5e6e3;
  padding: 10px;
  font-size: 1rem;
  text-align: center;
}
.work-gallery{
  column-count: 6; /* Adjust this to 3 for large screens */
  column-gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
/* === Masonry Grid Container === */
.grid {
  width: 300px; /* Adjust width as needed */
  padding: 20px;
}

/* === Individual Grid Items === */
.grid-item {
  break-inside: avoid;
  margin-bottom: 20px;
  width: 300px;
  height: auto; /* Adjust width as needed */
  background-color: #0f1e3a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.container{
  width: 1400px;
  margin: 0 auto;
  columns: 4;
  column-gap: 10px;
  
}
.workbox {
  width: 300px;
  margin-bottom: 10px;
  background-color: #0f1e3a;
  border-radius: 12px;  
  border: #d5e6e3 1px solid;
}

.workbox img{
  width: 100%;
  object-fit: contain;
  border-radius: 12px; 

}
/* ARTICLE ARTICLE ARTICLE ARTICLE ARTICLE ARTICLE ARTICLE ARTICLE ARTICLE ARTICLE ARTICLE ARTICLE ARTICLE ARTICLE*/
.article-body{
  padding: 10px;
  color: #d5e6e3;
  font-size: 1rem;
 display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 200px;
  gap: 20px;
  margin-bottom: 80px;

}

.section-title {
  color: #d5e6e3;
  font-size: 24px;
}

 .section-content{
  font-size: 24px;
  color: #d5e6e3;
  text-align: left;
  line-height: 1.8;
}
.section-header h1{
  color: #d5e6e3;
}
/* Responsive tweaks */
@media screen and (min-width: 1024px) {
  #portfolio-grid {
    column-count: 3;
  }
}

@media screen and (max-width: 768px) {
  #portfolio-grid {
    column-count: 1;
  }
}
    .section {
      height: 100vh;
      display: flex;
      align-items: center;
      padding: 40px;
    }

    .content-text {
      flex: 0 0 250px;
      margin-right: 40px;
    }

    .content-text h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .content-text p {
      font-size: 1rem;
      color: #aaa;
    }

    .gallery {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 10px;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      flex: 0 0 auto;
      width: 300px;
      height: 300px;
      background-size: cover;
      background-position: center;
      border-radius: 12px;
      scroll-snap-align: start;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover {
      transform: scale(1.05);
    }

.next-article{
  width: 1200px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 100px;
  margin-top: 100px;
}
  /*.project-thumb:hover {
    transform: translateX(-10px);
    transition: transform 0.3s ease;
  }  
  .hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }*/
  
         /*MOBILE*//*MOBILE*//*MOBILE*//*MOBILE*//*MOBILE*//*MOBILE*//*MOBILE*//*MOBILE*/

/* Responsive (stacked for mobile) */
@media (max-width: 768px) {
body {
overflow-x: hidden;
}
p{
  font-size: 18px;
}
  .navbar, .home-navbar {
    height: 50px;
    padding: 0 20px; /* tighter padding */
    width: 85%;
     position: sticky;
    top: 30px; /* adjust as needed */
    z-index: 1000; /* ensure it stays on top */
  }

  .logo img {
    height: 40px; /* shrink logo image */
    display: flex;
    align-items: center;
  }
  .nav-container, .home-nav-container{
    height: 40px;
  }
  .nav-container, .home-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
  }
  /* off-screen-menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 200px;
    backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    padding-right: 40px;
    transform: translateX(100vw); /* 👈 moves it completely out of view */
    transition: transform 0.3s ease;
    z-index: 10;
  }
  .nav-links.active {
    transform: translateX(0); /* 👈 brings it back into view */
  }
  #vxd-navbar{
    position: relative;
    align-items: center;
    margin: 30px 0px;
  }
  
  
  /*.nav-links a {
    margin: 15px 0;
  }*/

  .ham-menu {
    height: 35px;
    width: 35px;
    margin-left: auto;
    position: relative;
    cursor: pointer;
    z-index: 11;
  }
  .ham-menu:hover {
    transform: scale(1.05); /* Scale up on hover */
    transition: transform 0.3s ease;
  } 
  .ham-menu span {
    height: 1.5px;
    width: 70%;
    background-color: #d5e6e3;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
  }

  .ham-menu span:nth-child(1) {
    top: 25%;
  }

  .ham-menu span:nth-child(3) {
    top: 75%;
  }

  .ham-menu.active span {
    background-color: white;
  }

  .ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .ham-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-container, .home-nav-container {
    flex-direction: row;
    align-items: flex-start;
  }
   .nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0; /*Remove space between links and button */
  }
  .nav-links a{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links a {
    margin: 5px 0;
  }

  .nav-links .cta-button {
    margin-top: 10px;
    width: 90px;
    background-color: #d5e6e3;
    color: #081630;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  .nav-links .cta-button:hover {
    background-color: #378379;
    color: #d5e6e3;
  }

  .hero {
    margin-top: 180px;
    margin-bottom: -60px;
    flex-direction: column;
    text-align: center;
    translate: 0 50px;
  }
  .hero-image {
    justify-content: center;
    margin-top: 20px;
    z-index: -1;
    translate: 0 -400px;
    opacity: 0.25;
}
.hero-text {
  flex: 1;
  color: #d5e6e3;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 30px;
  align-items: center;
}
  .hero .cta-button {
    margin-top: 20px;
    width: 100%;
    max-width: 200px; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 250px;
  }
    .footer-row {
    flex-direction: column;
    align-items:left;
    text-align: left;
    gap: 30px;
  }

  #footer img {
    width: 180px;
    height: auto;
  }
  .footer-col {
    flex-basis: 100%;
    text-align: left;

  }
  .social-icons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
    #work-hero::before, #vimhero::before {
      width: 100%;
      margin-left: 0;
      background-position: center center;
    }
  
  
  #work-hero, #vimhero {
    overflow-x: hidden;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  #work-hero .cta-button, #vimhero .cta-button {
    margin-top: 20px;
    width: 100%;
    max-width: 200px; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .work-section {
    padding: 1.5rem 1rem;
    scroll-margin-top: 80px;

  }
  .work-section {
    padding: 1rem;
    margin: auto;
    max-width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    border-radius: 10px;
    color: #d5e6e3;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
    .process-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .box {
    height: auto;
    min-height: 100px;
  }
  .about-card {
    max-width: 350px;
   display: flex;
   flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .about-section{
    max-width: 350px;
  }
    .contact-box {
    flex-direction: column;
    gap: 40px;
    padding: 30px;
  }

  .contact-logo img {
    width: 220px;
    height: 220px;
  }
.core-hero{
    height: auto;
    padding: 40px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .core-hero-text {
    max-width: 100%;
    text-align: center;
  }

  .saashero {
    padding: 40px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .pc  {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .progress-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: -10px;
  }
  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
  }
  .case-study-images img {
    max-width: 350px;
    height: auto;
  }
   .csnav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px;
    max-width: 400px;
    margin-bottom: 50px;
    margin: 0 auto;
  }
  .review img {
    width: 300px;
    height: auto;
    margin-bottom: 10px;
  
  }

  .paragraphs {
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
  }
  .vxd-work-top {
    height: fit-content;
    align-items: center;
    gap: 30px;
  }
  .vxd-work-top .coremu {
    margin-left: 30px;
  }
  .vxd-work-bottom {
    width: fit-content;
    align-items: center;

}
.vxd-underdog{
  padding: 20px;
  width: fit-content;
  margin: 0 auto;
  font-size: 18px;

}
.contact-us{
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 80%;
}

  .mobile-cta {
    display: block;
  }
    .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 15px;
    gap: 16px;
  }

  .overlay {
    font-size: 0.75rem;
  }
.milestone-scroll{
  margin: 0 auto;
}
.immersive-hero, .vxd-hero{
  background: none;
}
.hero-overlay, .vxd-hero-overlay{
  margin-top: -170px;
  max-width: 350px;
}
.mockup-link
{
  max-width: 100px;
  max-height: 100px;
}
  .csnav{
    margin-bottom: 50px;
  }
  .article-body{
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
  }
  .vimcs-cta-btns {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .section-content{
    font-size: 18px;
    line-height: 2;

  }
  .section-title {
    font-size: 20px;
  }
  .section-header h1{
    font-size: 28px;
  }
  .vxd-underdog p{
    font-size: 18px;
  }
  #service-title {
    font-size: 28px;
    margin-top: 20px;
  }
  .progress-step img{
    width: 15px;
    height: 15px;

  }
  .progress-step span{
    font-size: 10px;
  }
.next-article{
  width: 350px;
}
}