:root {
  --primary: #0066ff;
  --primary-dark: #0044cc;
  --secondary: #00f2ff;
  --accent: #ff3366;
  --dark: #050511;
  --dark-light: #0a0a1a;
  --light: #f5f5f5;
  --gray: #888;
  --success: #27ae60;
}

/* ========================================
         ANIMATION KEYFRAMES & CLASSES
         ======================================== */

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Left Animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade In Right Animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Bounce In Animation */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* Slide In From Bottom */
@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glow Animation */
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.6);
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.bounce-in {
  animation: bounceIn 0.8s ease-out forwards;
}

.slide-in-bottom {
  animation: slideInBottom 0.7s ease-out forwards;
}

/* Stagger Delays */
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}
.delay-6 {
  animation-delay: 0.6s;
}

/* ========================================
         GLOBAL STYLES
         ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 24px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title span {
  color: var(--secondary);
  position: relative;
}

.section-title span.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    text-shadow: 0 0 5px var(--secondary);
  }

  50% {
    text-shadow: 0 0 20px var(--secondary), 0 0 30px var(--secondary);
  }

  100% {
    text-shadow: 0 0 5px var(--secondary);
  }
}

.hero-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header Styles */
header {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Dropdown styles handled by allDropdown.css */

.Setcolor {
  background: linear-gradient(135deg, #0f172a, #0f172a);
  padding: 25px;
}

/* Dropdown styles handled by allDropdown.css */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Case Study Hero */
.case-hero {
  padding-top: 150px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.case-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(0, 102, 255, 0.1),
    transparent 70%
  );
  z-index: -1;
}

.case-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.case-hero p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.client-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.info-box {
  background: rgba(10, 10, 26, 0.7);
  padding: 25px 15px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.info-box h3 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.info-box p {
  color: var(--light);
  font-size: 1rem;
  margin: 0;
}

/* Case Study Content */
.case-content {
  max-width: 1100px;
  margin: 0 auto;
}

.case-section {
  padding: 30px 8%;
  /* text-align: center; */
  /* background: #0c192b; */
  font-family: "Poppins", sans-serif;
}

/* Title */
.case-section h2 {
  margin-bottom: 70px !important;
  font-weight: 600;
  color: #00eaff;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, #00eaff, #00b7ff, #006dff) 1;

  padding: 8px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 25px;
}

/* Grid wrapper */
.case-section > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card box */
.case-section img {
  width: 100%;
  background: linear-gradient(180deg, #0f2b5f 0%, #0d1934 100%);
  border-radius: 18px;
  padding: 40px 25px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: 0.3s ease;
}

/* Inner glowing frame effect */
.case-section img::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Hover effect */
.case-section img:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 234, 255, 0.25);
}

.case-section2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 60px 8%;
  /* background: #0c192b; */
  /* Background like reference */
  color: #fff;
  font-family: "Poppins", sans-serif;
  flex-wrap: nowrap;
}

/* Left Content */
.case-section2 h2 {
  margin-bottom: 70px !important;
  font-weight: 600;
  color: #00eaff;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, #00eaff, #00b7ff, #006dff) 1;

  padding: 8px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 25px;
}

.case-section2 p {
  font-size: 18px;
  line-height: 1.8;
  margin: 10px 0;
  color: #e8edf3;
}

/* Right Image */
.case-section2 img {
  width: 100%;
  max-width: 240px;
  display: block;
}

/* .case-section blockquote::before {
            content: '"';
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.5;
            margin-right: 10px;
            line-height: 0;
        } */

.quote-author {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--secondary);
  font-style: normal;
}

/* Pain Points Grid */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.pain-point {
  background: rgba(10, 10, 26, 0.7);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.pain-point:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.pain-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 51, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pain-content h3 {
  color: var(--light);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.pain-content p {
  color: var(--gray);
  margin: 0;
}

/* Solution Features */
.solution-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.feature-item {
  background: rgba(10, 10, 26, 0.7);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--success);
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-content h3 {
  color: var(--light);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--gray);
  margin: 0;
}

/* Results Section */
.results-section {
  /* background: rgba(10, 10, 26, 0.7); */
  border-radius: 10px;
  padding: 50px;
  margin: 50px 0;
  /* border: 1px solid rgba(255, 255, 255, 0.05); */
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.result-item {
  text-align: center;
}

.result-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1;
}

.result-label {
  color: var(--gray);
  font-size: 1rem;
}

/* Comparison Section */
.comparison-section {
  margin: 50px 8%;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.comparison-col {
  background: rgba(10, 10, 26, 0.7);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-header {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--dark);
  padding: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 1.3rem;
}

.comparison-list {
  padding: 30px;
}

.comparison-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-item:last-child {
  border-bottom: none;
}

.comparison-item i {
  color: var(--secondary);
}

/* Testimonial Section */
.testimonial-section {
  /* background: rgba(10, 10, 26, 0.7); */
  border-radius: 10px;
  padding: 60px;
  margin: 50px 0;
  text-align: center;
  /* border: 1px solid rgba(255, 255, 255, 0.05); */
  position: relative;
}

/* .testimonial-section::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 8rem;
            color: var(--primary);
            opacity: 0.2;
            font-family: serif;
            line-height: 1;
        } */

.testimonial-text {
  font-style: italic;
  color: var(--light);
  margin-bottom: 30px;

  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 600;
}

.testimonial-role {
  color: var(--gray);
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 60px;
  text-align: center;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--dark);
  border-radius: 10px;
  margin-top: 60px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--dark);
  color: var(--light);
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- Layout --- */
.results-section {
  padding: 0px 8%;
  font-family: "Poppins", sans-serif;
  color: #fff;
  /* background: #0c192b; */
}

.results-section h2 {
  margin-bottom: 70px !important;
  font-weight: 600;
  font-size: 19px;
  color: #00eaff;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, #00eaff, #00b7ff, #006dff) 1;

  padding: 8px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 25px;
}

.results-section p {
  color: #9aa7b8;
  margin-bottom: 40px;
}

.results-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(217px, 1fr)); */
  grid-template-columns: repeat(auto-fit, minmax(177px, 1fr));
  gap: 40px;
  width: 90%;
  margin: auto;
}

/* --- Item Card --- */
.result-item {
  padding: 20px;
  border-radius: 14px;
  /* background: rgba(255, 255, 255, 0.04); */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Circle Container --- */
.circle-wrapper {
  width: 130px;
  height: 130px;
  margin: 0 auto 15px;
  position: relative;
}

.circle-bg {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 10;
  fill: none;
}

.circle-progress {
  stroke: #00eaff;
  stroke-width: 12;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 377;
  /* 2πr => 2 * 3.14 * 60 */
  stroke-dashoffset: 377;
  transition: stroke-dashoffset 4.8s ease;
}

.circle-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.result-label {
  color: #c9d3df;
  font-size: 15px;
  line-height: 1.4;
}

.client-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 90px 8%;
  /* background: #0c192b; */
  font-family: "Poppins", sans-serif;
  color: #e8edf3;
}

/* Left area */
.client-text {
  flex: 1.2;
}

.client-text h2 {
  margin-bottom: 70px !important;
  font-weight: 600;
  color: #00eaff;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, #00eaff, #00b7ff, #006dff) 1;

  padding: 8px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 25px;
}

/* Bullet style text */
.client-text p {
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}

.client-text p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #00eaff;
  font-size: 20px;
  line-height: 1.5;
}

/* Right side device image */
.client-image {
  flex: 1;
  text-align: right;
}

.client-image img {
  width: 86%;
  max-width: 500px;
  display: inline-block;
  filter: drop-shadow(0px 8px 28px rgba(0, 234, 255, 0.18));
}

.border {
  font-weight: 600;
  font-size: 19px;
  color: #00eaff;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, #00eaff, #00b7ff, #006dff) 1;

  padding: 8px 20px;
  border-radius: 8px !important;
  display: inline-block;
  margin-bottom: 25px;
}

.border2 {
  font-weight: 600;
  margin-right: 690px;
  font-size: 19px;
  color: #00eaff;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, #00eaff, #00b7ff, #006dff) 1;

  padding: 8px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 25px;
}

.case-content h2 {
  font-size: 21px;
  font-weight: 600;
  color: #00eaff;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, #00eaff, #006dff) 1;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 40px;
}

/* --- Testimonial Section --- */
.testimonial-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  line-height: 1.6;
  /* box-shadow: 0 0 20px rgba(0, 238, 255, 0.05); */
  /* background: #08101f; */
}

/* Quote mark icon before text */
.testimonial-text::before {
  content: "❝";
  font-size: 50px;
  text-align: center;
  color: #0d6efd;
  /* display: block; */
  /* margin-bottom: 10px; */
}

/* Main Quote Text */
.testimonial-text {
  font-size: 17px;
  font-style: italic;
  opacity: 0.95;
  max-width: 90%;
  margin: auto;
}

/* Author Name Text */
.testimonial-author {
  font-weight: 600;
  font-size: 22px;
  margin-top: 25px;
  color: #00eaff;
}

/* Role/Designation */
.testimonial-role {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .client-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-points-grid,
  .solution-features {
    grid-template-columns: 1fr;
  }

  .case-section2 {
    flex-wrap: wrap;
    /* text-align: center; */
    gap: 40px;
    padding: 60px 6%;
  }

  .case-section2 h2 {
    font-size: 28px;
  }

  .case-section2 p {
    font-size: 17px;
  }

  .case-section2 img {
    max-width: 380px;
    margin: auto;
  }

  .case-section > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-section h2 {
    font-size: 28px;
  }

  .client-section {
    flex-wrap: wrap;
    /* text-align: center; */
    padding: 70px 6%;
  }

  .client-image {
    text-align: center;
  }

  .client-text h2 {
    font-size: 28px;
  }

  .client-text p {
    font-size: 17px;
    padding-left: 18px;
  }

  .client-text p::before {
    font-size: 18px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .cta-button {
    display: inline-block;
    background: var(--dark);
    color: var(--light);
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
}

@media (max-width: 600px) {
  .client-section {
    display: block;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 90px 8%;
    background: #0c192b;
    font-family: "Poppins", sans-serif;
    color: #e8edf3;
  }

  .case-section2 {
    padding: 50px 5%;
  }

  .case-section2 h2 {
    font-size: 24px;
    padding: 6px 14px;
  }

  .case-section2 p {
    font-size: 16px;
    line-height: 1.6;
  }

  .case-section2 img {
    max-width: 300px;
    margin: 20px;
  }

  .case-section > div {
    grid-template-columns: 1fr;
  }

  .case-section {
    padding: 60px 5%;
  }

  .case-section h2 {
    font-size: 24px;
    padding: 6px 14px;
  }

  .case-section img {
    padding: 35px 18px;
  }

  .client-section {
    padding: 60px 5%;
  }

  .client-text h2 {
    font-size: 20px;
    padding: 6px 14px;
  }

  .client-text p {
    font-size: 16px;
    padding-left: 16px;
  }

  .client-image img {
    max-width: 350px;
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 40px 20px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .testimonial-text::before {
    font-size: 45px;
  }

  .testimonial-author {
    font-size: 18px;
  }

  .testimonial-role {
    font-size: 16px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .case-hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-section {
    padding: 40px 20px;
  }

  .results-section {
    padding: 30px 20px;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .client-info {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 60px 20px;
  }
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 60px 0;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  text-align: center !important;
  margin-top: 50px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--tech-gradient);
  border-radius: 2px;
}

/* HEADER */
header {
  background: rgba(15, 23, 42, 0.95);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

/* .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--secondary);
        } */

/* HISTORY SECTION */
.history-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.history-text {
  flex: 1 1 500px;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #dce3ef;
}

.history-image {
  flex: 1 1 320px;
}

.history-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.1);
  display: block;
}

/* JOURNEY TIMELINE */
.journey-section {
  padding: 80px 0;
  position: relative;
}

.journey-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.journey-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 80px;
}

.timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Vertical Timeline Line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-row {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

/* Left side items */
.timeline-row.left {
  justify-content: flex-start;
}

.timeline-row.left .timeline-card {
  margin-right: auto;
  margin-left: 0;
  max-width: 400px;
}

/* Right side items */
.timeline-row.right {
  justify-content: flex-end;
}

.timeline-row.right .timeline-card {
  margin-left: auto;
  margin-right: 0;
  max-width: 400px;
}

.timeline-card {
  background: linear-gradient(135deg, #2d3e6e, #1e2847);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 242, 255, 0.2);
}

.timeline-year-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.2);
  border: 2px solid var(--primary);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 25px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.timeline-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 15px;
}

.timeline-card p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Timeline Icon Circle */
.timeline-icon {
  position: absolute;
  left: 61%;
  top: -45px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
  z-index: 2;
}

.timeline-icon i {
  color: white;
  font-size: 1.5rem;
}

.timeline-image {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Ensure CSS line is visible on mobile/tablet */
.timeline-line {
  display: block;
}

/* OUR STORY SECTION */
.story-section {
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./Assets/c5450f760d121373030f6b020aeb3e43\ 1.png") center/cover
      no-repeat;
  padding: 80px 60px;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 1200px;
  box-sizing: border-box;
}

.story-heading {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.story-section h2 {
  font-family: "Orbitron", sans-serif;
  margin-bottom: 30px;
  font-size: 2.4rem;
}

.story-section p {
  max-width: 1080px;
  margin: 20px auto;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #e2e8f0;
  box-sizing: border-box;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  padding: 60px 30px;
  border-radius: 12px;
  text-align: center;
  color: var(--dark);
  margin: 80px 0 40px;
}

.cta-section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dark);
  color: var(--light);
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

.cta-button i {
  font-size: 18px;
}

/* FOOTER */

.footer-bottom p {
  color: var(--gray);
  font-size: 0.9rem;
}

.founder-note {
  background: #111a2e;
  margin: 80px 0;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  color: #cdd2e0;
}

.founder-note::before,
.founder-note::after {
  content: "“";
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: var(--quote-size);
  color: var(--primary);
  font-weight: bold;
}

.founder-note::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 40px;
  left: 20px;
  font-size: 32px;
}

.founder-note::after {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  bottom: 40px;
  right: 20px;
  font-size: 32px;
}

.founder-note h3 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.founder-note .quote {
  font-size: 1.1rem;
  color: #cdd2e0;
  font-style: italic;
  margin-bottom: 40px;
}

.founder-note p {
  font-size: 1rem;
  color: #c9cdd7;
  line-height: 1.8;
}

/* TABLET / IPAD RESPONSIVENESS - iPad Air & iPad Pro */
@media screen and (min-width: 768px) and (max-width: 1180px) {
  /* Reduce section padding */
  section.section-padding {
    padding: 20px 0 !important;
    margin-top: 60px;
  }

  /* 📌 HISTORY SECTION */
  .history-section {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 30px !important;
  }

  .history-text {
    flex: 1 1 400px !important;
    text-align: left;
    max-width: 600px !important;
    margin-bottom: 0;
  }

  .history-image {
    flex: 1 1 300px !important;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0;
  }

  .history-image img {
    margin: 0 auto;
    max-width: 350px !important;
  }

  /* 📌 CLIENT SECTION */
  .client-section {
    gap: 30px !important;
    justify-content: center !important;
    flex-direction: column;
    align-items: center;
  }

  .client-text {
    max-width: 600px !important;
    text-align: center;
  }

  .client-image {
    text-align: center;
  }

  .client-image img {
    max-width: 380px !important;
  }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .founder-note {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    margin-left: 1px;
    background: black;
    max-width: 900px;
    line-height: 1.8;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 4px;
    padding-left: 0;
  }

  .section-title::after {
    left: 40px;
    transform: none;
  }

  .section-padding {
    padding: 40px 0;
  }

  .founder-note {
    padding: 80px 20px;
  }
  .founder-note::before {
    top: 20px;
    left: 10px;
  }
  .founder-note::after {
    bottom: 20px;
    right: 10px;
  }

  /* History Section Mobile */
  .history-section {
    flex-direction: column;
    gap: 30px;
  }

  .history-text,
  .history-image {
    flex: 1 1 100%;
  }

  .history-text {
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: left;
  }

  .history-image {
    margin: 0;
    padding: 0;
  }

  .history-image img {
    border-radius: 10px;
    margin: 0;
  }

  /* Story Section Mobile */
  .story-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .story-section {
    padding: 50px 20px;
    margin: 40px 0;
  }

  .story-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .story-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 15px auto;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 40px 20px;
    margin: 40px 0 30px;
  }

  .cta-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 25px 0;
  }

  .footer-bottom p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Timeline Mobile */
  .journey-section {
    padding: 50px 0;
  }

  .journey-title {
    font-size: 1.8rem;
  }

  .journey-subtitle {
    font-size: 1rem;
    margin-bottom: 50px;
  }

  .timeline-line {
    left: 30px;
    transform: none;
  }

  .timeline-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 60px;
    padding-left: 80px;
  }

  .timeline-row.left .timeline-card,
  .timeline-row.right .timeline-card {
    margin: 0;
    max-width: 100%;
  }

  .timeline-icon {
    left: 30px;
    transform: none;
    width: 50px;
    height: 50px;
  }

  .timeline-icon i {
    font-size: 1.2rem;
  }

  .timeline-card {
    padding: 25px;
  }

  .timeline-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-top: 40px;
  }

  .logo img {
    height: 35px;
  }

  .story-section h2 {
    font-size: 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-button {
    padding: 10px 24px;
    font-size: 0.9rem;
    gap: 8px;
  }

  /* Timeline Extra Small Mobile */
  .timeline-row {
    padding-left: 70px;
  }

  .timeline-card {
    padding: 20px;
  }

  .timeline-year-badge {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: var(--light);
  font-family: "Arial", sans-serif;
  min-height: 100vh;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* JOURNEY TIMELINE */
.journey-section {
  padding: 80px 0;
  position: relative;
}

.journey-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.journey-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 80px;
}

.timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Standard Timeline Line (Mobile & Tablet) */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: translateX(-50%);
  border-radius: 2px;
  display: block;
}

/* Custom Image Line (Desktop/Laptop only) */
.timeline-image-line {
  position: absolute;
  left: 50%;
  top: 142px;
  width: 300px;
  height: 100%;
  transform: translateX(-50%);
  display: none;
  pointer-events: none;
  z-index: 0;
}

.timeline-image-line img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.timeline-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 150px;
  position: relative;
  min-height: 200px;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

/* Left side items */
.timeline-row.left {
  justify-content: flex-start;
}

.timeline-row.left .timeline-card {
  margin-right: auto;
  margin-left: 0;
  max-width: 380px;
}

/* Right side items */
.timeline-row.right {
  justify-content: flex-end;
}

.timeline-row.right .timeline-card {
  margin-left: auto;
  margin-right: 0;
  max-width: 380px;
}

.timeline-card {
  background: linear-gradient(135deg, #2d3e6e, #1e2847);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.timeline-year-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.2);
  border: 2px solid var(--primary);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 25px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.timeline-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 15px;
}

.timeline-card p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Timeline Icon Circle - Base Styles */
.timeline-icon {
  position: absolute;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0099ff, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.timeline-icon i {
  color: white;
  font-size: 1.6rem;
}

/* Custom CSS for #settu (Opening Our First Office) */
#settu {
  display: flex;
  align-items: flex-start;
  margin-bottom: 150px;
  position: relative;
  min-height: 200px;
  justify-content: flex-start;
}

#settu .timeline-card {
  background: linear-gradient(135deg, #2d3e6e, #1e2847);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  margin-right: auto;
  margin-left: 0;
  max-width: 380px;
}

#settu .timeline-icon {
  position: absolute;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0099ff, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, 0.1);
  left: 36%;
  top: 71px;
}

#settu .timeline-icon i {
  color: white;
  font-size: 1.6rem;
}

#settu .timeline-year-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.2);
  border: 2px solid var(--primary);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 25px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

#settu .timeline-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 15px;
}

#settu .timeline-card p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Custom CSS for #workspace (New Dedicated Workspace) */
#workspace {
  display: flex;
  align-items: flex-start;
  margin-bottom: 150px;
  position: relative;
  margin-top: 314px;
  min-height: 200px;
  justify-content: flex-end;
}

#workspace:last-child {
  margin-bottom: 0;
}

#workspace .timeline-card {
  background: linear-gradient(135deg, #2d3e6e, #1e2847);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: 0;
  max-width: 380px;
}

#workspace .timeline-icon {
  position: absolute;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0099ff, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, 0.1);
  left: 62%;
  top: 38px;
}

#workspace .timeline-icon i {
  color: white;
  font-size: 1.6rem;
}

#workspace .timeline-year-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.2);
  border: 2px solid var(--primary);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 25px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

#workspace .timeline-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 15px;
}

#workspace .timeline-card p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Position icons on the curved path for desktop (Only for screens larger than iPad Pro) */
@media (min-width: 1181px) {
  /* Icon 1 - Top Right (Rocket) */
  .timeline-row:nth-child(2) .timeline-icon {
    right: 48%;
    top: 40px;
  }

  /* Icon 2 - Middle Right (Chart) */
  .timeline-row:nth-child(3) .timeline-icon {
    left: 36%;
    top: 118px;
  }
}

/* Desktop/Laptop View - Show Image Line (Only for screens larger than iPad Pro) */
@media (min-width: 1181px) {
  .timeline-line {
    display: none;
  }

  .timeline-image-line {
    display: block;
  }

  /* Adjust card positioning for better alignment */
  .timeline-row.left .timeline-card {
    margin-right: 68%;
  }

  #settu {
    margin-top: -160px;
  }

  .timeline-row.right .timeline-card {
    margin-left: 55%;
    margin-top: -83px;
  }
}

/* Tablet View (iPad Air & iPad Pro) */
@media (max-width: 1180px) and (min-width: 768px) {
  .journey-title {
    font-size: 2rem;
  }

  .journey-subtitle {
    font-size: 1rem;
    margin-bottom: 60px;
  }

  .timeline-container {
    max-width: 600px;
  }

  .timeline-row {
    margin-bottom: 80px;
    min-height: auto;
  }

  .timeline-row.left .timeline-card,
  .timeline-row.right .timeline-card {
    max-width: 350px;
    /* margin-top: 0 !important; */
    margin-left: -67px;
  }

  .timeline-row.right .timeline-card {
    margin-right: -67px !important ;
  }

  .timeline-icon {
    left: 45% !important;
    right: auto !important;
    top: -55px !important;
    transform: translateX(-50%);
  }

  /* Reset custom positioning for tablet */
  #settu {
    margin-top: 0 !important;
    margin-bottom: 80px;
  }

  #settu .timeline-card {
    max-width: 350px;
    margin-left: -68px;
  }

  #settu .timeline-icon {
    /* left: 50% !important; */
    /* right: auto !important; */
    top: -55px !important;
    /* transform: translateX(-50%); */
  }

  #workspace {
    margin-top: 0 !important;
    margin-bottom: 80px;
  }

  #workspace .timeline-card {
    max-width: 350px;
  }

  #workspace .timeline-icon {
    /* left: 50% !important; */
    /* right: auto !important; */
    top: -55px !important;
    /* transform: translateX(-50%); */
  }
}
/* iPad Mini Portrait (768px width) */
@media (min-width: 768px) and (max-width: 819px) and (orientation: portrait) {
  /* Restore left-right alignment */
  .timeline-row.left {
    justify-content: flex-start !important;
    margin-left: -147px;
  }

  .timeline-row.right {
    justify-content: flex-end !important;
  }

  .timeline-row.left .timeline-card {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .timeline-row.right .timeline-card {
    margin-left: auto !important;
  }

  .timeline-row .timeline-card {
    margin-left: 0 !important;
  }

  /* Fix icon position */
  .timeline-icon {
    left: 55% !important;
    transform: translateX(-50%) !important;
  }
}

/* iPad Mini Landscape (1024px width) */
@media (min-width: 1024px) and (max-width: 1079px) and (orientation: landscape) {
  .timeline-row.left {
    justify-content: flex-start !important;
  }

  .timeline-row.right {
    justify-content: flex-end !important;
  }

  .timeline-row.left .timeline-card {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .timeline-row.right .timeline-card {
    margin-right: 0 !important;
    margin-left: auto !important;
  }

  .timeline-icon {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* Mobile View */
@media (max-width: 767px) {
  .journey-section {
    padding: 40px 0;
  }

  .journey-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .journey-subtitle {
    font-size: 1rem;
    margin-bottom: 50px;
    padding: 0 10px;
  }

  .timeline-container {
    padding-left: 40px;
    max-width: 100%;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 60px;
    min-height: auto;
  }

  .timeline-row.left,
  .timeline-row.right {
    justify-content: flex-start;
  }

  .timeline-row.left .timeline-card,
  .timeline-row.right .timeline-card {
    margin-left: -67px;
    /* margin-right: 0 !important;
                margin-top: 0 !important;
                max-width: 100%; */
  }

  .timeline-icon {
    /* left: 20px !important;
                right: auto !important;
                top: 20px !important;
                width: 50px;
                height: 50px;
                transform: none !important; */
    left: -56px;
    top: -16px;
  }

  .timeline-icon i {
    font-size: 1.3rem;
  }

  .timeline-card {
    padding: 25px;
  }

  .timeline-card h3 {
    font-size: 1.3rem;
  }

  .timeline-card p {
    font-size: 0.9rem;
  }

  /* Reset custom positioning for mobile - #settu */
  #settu {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0 !important;
    margin-bottom: 60px;
    min-height: auto;
    justify-content: flex-start;
  }

  /* #settu .timeline-card {
                margin-left: 40px !important;
                margin-right: 0 !important;
                max-width: 100%;
                padding: 25px;
            } */

  #settu .timeline-icon {
    left: -59px;
    /* right: auto !important; */
    top: -38px;
    /* width: 50px; */
    /* height: 50px; */
    /* transform: none !important; */
  }

  #settu .timeline-icon i {
    font-size: 1.3rem;
  }

  #settu .timeline-card h3 {
    font-size: 1.3rem;
  }

  #settu .timeline-card p {
    font-size: 0.9rem;
  }

  /* Reset custom positioning for mobile - #workspace */
  #workspace {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0 !important;
    margin-bottom: 60px;
    min-height: auto;
    justify-content: flex-start;
  }

  #workspace:last-child {
    margin-bottom: 0;
  }

  #workspace .timeline-card {
    margin-left: -70px !important;
    /* margin-right: 0 !important;
                max-width: 100%;
                padding: 25px; */
  }

  #workspace .timeline-icon {
    left: -59px;
    /* right: auto !important; */
    top: -38px;
    /* width: 50px; */
    /* height: 50px; */
    /* transform: none !important; */
  }

  #workspace .timeline-icon i {
    font-size: 1.3rem;
  }

  #workspace .timeline-card h3 {
    font-size: 1.3rem;
  }

  #workspace .timeline-card p {
    font-size: 0.9rem;
  }
}
