.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    rgba(11, 16, 32, 0.95) 0%,
    rgba(37, 99, 235, 0.4) 50%,
    rgba(255, 58, 166, 0.4) 100%
  );
  padding: 100px 0 60px;
}

#about-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

/*.gradient-text {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}*/

.hero-subtitle {
  max-width: 700px;
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 2;
}

.btn-pill {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  opacity: 0.1;
  animation: floatShape 25s infinite linear;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 75%;
  animation-delay: -5s;
  animation-duration: 20s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 70%;
  left: 15%;
  animation-delay: -10s;
  animation-duration: 15s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 80%;
  animation-delay: -15s;
  animation-duration: 30s;
}

@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0deg);
    border-radius: 50%;
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  50% {
    transform: translateY(0) translateX(20px) rotate(180deg);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  75% {
    transform: translateY(20px) translateX(10px) rotate(270deg);
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    border-radius: 50%;
  }
}

/* Section Styling */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* About Company */
.about-company {
  background: var(--bg-deep);
}

.company-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.mission-vision {
  margin-top: 2.5rem;
}

.mv-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mv-item i {
  font-size: 1.8rem;
  color: var(--brand-cyan);
  margin-top: 0.3rem;
}

.mv-item h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.mv-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.story-visual {
  padding: 1rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-cyan), var(--brand-pink));
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transform: translateX(-50%);
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.timeline-content h5 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.timeline-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat-item {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

/* Why Choose Us Section */
.choose-us-section {
  background: var(--bg-deep);
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

.feature-card h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.expertise-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  position: relative;
  padding-bottom: 4rem;
}

.expertise-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.expertise-card h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.expertise-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.expertise-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.expertise-card li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.expertise-card li::before {
  content: "▸";
  color: var(--brand-cyan);
  position: absolute;
  left: 0;
}

.service-link {
  color: var(--brand-cyan);
  text-decoration: none;
  font-weight: 600;
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--brand-pink);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Process Section */
.process-section {
  background: var(--bg-deep);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.process-step {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* CEO Section */
.ceo-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.ceo-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  text-align: center;
}

.ceo-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 212, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 6s infinite linear;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ceo-card:hover::before {
  opacity: 1;
}

.ceo-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
}

.ceo-image {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2rem 2rem 1rem;
}

.circular-image-container {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.ceo-card:hover .circular-image-container {
  border-color: rgba(0, 212, 255, 0.3);
  transform: scale(1.05);
}

.circular-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.ceo-card:hover .circular-image {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(11, 16, 32, 0.9) 0%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.ceo-card:hover .image-overlay {
  opacity: 1;
}
/*
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
}
*/
.ceo-card:hover .social-links a {
  transform: translateY(0);
  opacity: 1;
}

/*.social-links a:hover {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    color: #fff;
    transform: translateY(-3px) !important;
}*/

.ceo-info {
  padding: 1rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.ceo-name {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ceo-role {
  color: var(--brand-cyan);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.ceo-quote {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--brand-cyan);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 8px 8px 0;
  text-align: left;
}

.ceo-quote i {
  color: var(--brand-cyan);
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.ceo-quote p {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 1.1rem;
}

.ceo-bio {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: left;
}

.ceo-strengths {
  margin-bottom: 1rem;
  text-align: left;
}

.ceo-strengths h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.strengths-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.strength-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ceo-card:hover .strength-tag {
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
  color: #fff;
  border-color: transparent;
}

/* Location Section */
.location-section {
  background: var(--bg-deep);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  height: 400px;
}

.transport-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.transport-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.transport-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.transport-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.transport-info h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.transport-info p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.cta-buttons {
  margin-top: 2rem;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shine {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(200%);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
    padding: 90px 0 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .company-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .circular-image-container {
    width: 180px;
    height: 180px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-year {
    left: -10px;
    transform: translateX(-50%);
  }

  .timeline-content {
    margin-left: 3rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .ceo-info {
    padding: 1.5rem;
  }

  .ceo-name {
    font-size: 1.5rem;
  }

  .circular-image-container {
    width: 160px;
    height: 160px;
  }

  .company-stats {
    grid-template-columns: 1fr;
  }

  .transport-options {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
/* Modern Compact Process Section */
.modern-process-section {
  background: linear-gradient(135deg, #0f172a 0%, #1a253c 100%);
  position: relative;
  overflow: hidden;
}

.modern-process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 58, 166, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.modern-process-section .container {
  position: relative;
  z-index: 1;
}

.process-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*.gradient-text {
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}*/

/* Process Flow Wrapper */
.process-flow-wrapper {
  padding: 2rem 0;
  margin-top: 1rem; /* Added top spacing */
}

.process-flow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
}

.process-item {
  display: flex;
  align-items: center;
  position: relative;
}

/* Process Card */
.process-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  width: 200px;
  height: 180px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  margin-top: 1rem; /* Added top margin to create gap from top */
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  transition: left 0.6s ease;
}

.process-card:hover::before {
  left: 100%;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Step Header */
.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.step-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.process-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.step-number {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.7;
}

/* Step Content */
.step-content h4 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.8;
}

/* Step Connector */
.step-connector {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  position: relative;
}

.connector-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
  opacity: 0.4;
  position: relative;
  overflow: hidden;
}

.connector-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: flowLine 3s linear infinite;
}

@keyframes flowLine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.connector-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  font-size: 0.7rem;
  animation: bounceArrow 2s infinite;
}

/* Desktop arrow (right) */
.desktop-arrow {
  display: block;
}

.mobile-arrow {
  display: none;
}

@keyframes bounceArrow {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  40% {
    transform: translateY(-50%) translateX(3px);
  }
  60% {
    transform: translateY(-50%) translateX(1px);
  }
}

/* Hover effects on connector */
.process-item:hover .connector-line {
  opacity: 0.7;
}

.process-item:hover .connector-line::after {
  animation-duration: 1s;
}

.process-item:hover .connector-arrow {
  color: var(--brand-pink);
  animation-duration: 1s;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .process-flow {
    gap: 1rem;
  }

  .process-card {
    width: 180px;
    height: 170px;
    padding: 1.25rem;
  }

  .connector-line {
    width: 40px;
  }
}

@media (max-width: 992px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .process-item {
    flex-direction: column;
    margin-bottom: 0;
  }

  .step-connector {
    padding: 1rem 0;
    height: 40px;
  }

  .connector-line {
    width: 2px;
    height: 40px;
  }

  .connector-line::after {
    animation: flowLineVertical 3s linear infinite;
  }

  @keyframes flowLineVertical {
    0% {
      top: -100%;
    }
    100% {
      top: 100%;
    }
  }

  .connector-arrow {
    position: absolute;
    right: auto;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(-50%);
  }

  /* Hide desktop arrow, show mobile arrow */
  .desktop-arrow {
    display: none;
  }

  .mobile-arrow {
    display: block;
  }

  @keyframes bounceArrow {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(3px);
    }
    60% {
      transform: translateX(-50%) translateY(1px);
    }
  }

  /* Adjust card spacing for mobile */
  .process-card {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .process-card {
    width: 160px;
    height: 160px;
    padding: 1rem;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-number {
    font-size: 1.3rem;
  }

  .step-content h4 {
    font-size: 0.9rem;
  }

  .step-content p {
    font-size: 0.8rem;
  }

  .process-flow-wrapper {
    padding: 1rem 0;
  }
}

/* Animation on scroll */
.process-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.process-item.animate {
  opacity: 1;
  transform: translateY(0);
}
/* Modern Journey Section */
.modern-journey {
  background: linear-gradient(135deg, #0f172a 0%, #1a253c 100%);
  position: relative;
  overflow: hidden;
}

.modern-journey::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 58, 166, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.modern-journey .container {
  position: relative;
  z-index: 1;
}

.journey-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.journey-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Journey Stats */
.journey-stats {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0;
}

.journey-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.stat-content .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.stat-content .stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Journey Visual */
.journey-visual {
  position: relative;
  padding: 2rem 0;
}

.journey-path {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}

/* Step Marker */
.step-marker {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--brand-cyan) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand-cyan);
  border-radius: 50%;
  opacity: 0;
  animation: stepPulse 2s infinite;
}

@keyframes stepPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.journey-step:hover .step-dot {
  transform: scale(1.3);
}

.journey-step:hover .step-glow {
  opacity: 0.3;
}

/* Step Card */
.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  flex: 1;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  transition: left 0.6s ease;
}

.journey-step:hover .step-card::before {
  left: 100%;
}

.journey-step:hover .step-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.journey-step:hover .step-icon {
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  color: white;
  transform: scale(1.1);
}

.step-content h4 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Step Connector */
.step-connector {
  position: absolute;
  left: 30px;
  top: 80px;
  bottom: -2rem;
  width: 2px;
  display: flex;
  justify-content: center;
}

.connector-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--brand-cyan), var(--brand-pink));
  opacity: 0.3;
  position: relative;
  overflow: hidden;
}

.connector-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--brand-cyan),
    transparent
  );
  animation: flowVertical 3s linear infinite;
}

@keyframes flowVertical {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.journey-step:hover .connector-line {
  opacity: 0.6;
}

.journey-step:hover .connector-line::after {
  animation-duration: 1s;
}

/* Mission & Vision Section */
.mission-vision-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mv-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.02),
    transparent
  );
  transition: left 0.6s ease;
}

.mv-card:hover::before {
  left: 100%;
}

.mv-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.mv-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.mv-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.mv-card:hover .mv-icon {
  transform: scale(1.1) rotate(5deg);
}

.mv-card:hover .mv-glow {
  opacity: 1;
}

.mv-content h3 {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mv-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Animation Classes */
.animated-step {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.animated-step.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .journey-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .journey-stat {
    justify-content: center;
    text-align: center;
  }

  .step-connector {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .journey-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .step-marker {
    align-self: center;
  }

  .step-connector {
    position: static;
    width: 100%;
    height: 40px;
    margin: 0.5rem 0;
  }

  .connector-line {
    width: 2px;
    height: 40px;
    margin: 0 auto;
  }

  .step-header {
    justify-content: center;
    gap: 1rem;
  }
}
/* Customer Logos Section 
.customer-logos {
    /* background-color: #f8f9fa; 
}*/
.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.2);
}

.logos-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.logos-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.logo-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  backdrop-filter: blur(10px);
}

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

.logo-container {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

.logo-item:hover .logo-container {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  border-color: #ddd;
}

.logo-img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-item:hover .logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

.logos-note {
  font-size: 0.9rem;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logos-title {
    font-size: 1.5rem;
  }

  .logo-container {
    height: 100px;
    padding: 1rem;
  }

  .logo-img {
    max-height: 50px;
  }
}

@media (max-width: 576px) {
  .logo-container {
    height: 80px;
    padding: 0.75rem;
  }

  .logo-img {
    max-height: 40px;
  }
}
/* =========================
   TEAM CARD (BASE)
========================= */

.team-card-compact {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(8px);

  display: flex;
  flex-direction: column;
  align-items: center;

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.team-card-compact:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--gradient-primary);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* =========================
   CONTINUOUS SUBTLE LIGHT
========================= */

.team-card-compact {
  position: relative;
  overflow: hidden;
}

/* Moving light layer */
.team-card-compact::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -150%;
  width: 300%;
  height: 200%;

  background: linear-gradient(
    120deg,
    transparent 46%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 54%
  );

  pointer-events: none;
  opacity: 0.35;
  z-index: 1;

  transform: translateX(-50%);
  animation: light-move 4s linear infinite;
}

/* Keep content above */
.team-card-compact > * {
  position: relative;
  z-index: 2;
}

/* Hover = slightly brighter + hint of color */
.team-card-compact:hover::before {
  background: linear-gradient(
    120deg,
    transparent 46%,
    rgba(12, 103, 143, 0.18) 50%,
    transparent 54%
  );
  opacity: 0.55;
}

/* Real movement (guaranteed) */
@keyframes light-move {
  from {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(60%);
  }
}


/* =========================
   IMAGE
========================= */

.team-card-image {
  width: 250px;
  height: 250px;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(45deg, var(--gradient-primary), #667eea)
    border-box;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  padding: 2px;
  background: #0f172a;
  transition: transform 0.4s ease;
}

.team-card-compact:hover .team-card-image img {
  transform: scale(1.08);
}

/* =========================
   SOCIAL ICONS
========================= */

.team-card-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  padding: 18px 0 10px;
  opacity: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.25s ease;
}

.team-card-compact:hover .team-card-social {
  opacity: 1;
}

.team-card-social a {
  color: white;
  background: var(--gradient-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.team-card-social a:hover {
  transform: scale(1.1);
  background: white;
  color: var(--gradient-primary);
}

/* =========================
   CONTENT
========================= */

.team-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Animate all content together */
.team-card-content > * {
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.team-card-compact:hover .team-card-content > * {
  transform: translateY(-2px);
}

/* Name */
.team-card-content h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
  transition:
    transform 0.35s ease,
    text-shadow 0.35s ease;
}

.team-card-compact:hover h3 {
  transform: translateY(-3px);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Role */
.team-card-role {
  color: var(--gradient-primary);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  min-height: 22px;
  transition: transform 0.35s ease;
}

.team-card-compact:hover .team-card-role {
  transform: translateY(-2px);
}

/* =========================
   QUOTE
========================= */

.team-card-quote {
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 14px 18px;
  position: relative;
  min-height: 60px;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;

  transition:
    transform 0.45s ease,
    background 0.45s ease,
    box-shadow 0.45s ease;
}

.team-card-compact:hover .team-card-quote {
  transform: translateY(-6px) scale(1.02);
  background: linear-gradient(
    120deg,
    rgba(0, 180, 255, 0.12),
    rgba(0, 120, 255, 0.05)
  );
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

/* Quote marks */
.team-card-quote::before,
.team-card-quote::after {
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--gradient-primary);
  opacity: 0.5;
  font-weight: bold;
  position: absolute;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.team-card-quote::before {
  content: "“";
  left: 6px;
  top: 2px;
}

.team-card-quote::after {
  content: "”";
  right: 10px;
  bottom: -5px;
}

.team-card-compact:hover .team-card-quote::before {
  transform: translate(-2px, -2px);
  opacity: 0.85;
}

.team-card-compact:hover .team-card-quote::after {
  transform: translate(2px, 2px);
  opacity: 0.85;
}

/* Paragraph */
.team-card-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  transition:
    color 0.3s ease,
    transform 0.35s ease;
}

.team-card-compact:hover .team-card-content p {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.team-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
}

.team-card-tags span {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.team-card-tags span:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

/* Tight Layout Adjustments */
.row.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.row.mb-3 {
  margin-bottom: 1rem !important;
}

.container {
  max-width: 960px;
}

.col-lg-5 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .team-card-compact {
    max-width: 380px;
  }
}

@media (max-width: 992px) {
  .team-card-compact {
    max-width: 350px;
    padding: 22px 18px;
  }

  .team-card-image {
    width: 110px;
    height: 110px;
    margin-bottom: 18px;
  }

  .team-card-content h3 {
    font-size: 20px;
  }

  .team-card-role {
    font-size: 14px;
  }

  .team-card-quote {
    font-size: 13.5px;
    margin-bottom: 16px;
    min-height: 55px;
  }

  .team-card-tags span {
    padding: 5px 10px;
    font-size: 11.5px;
  }
}

@media (max-width: 768px) {
  .team-card-compact {
    max-width: 320px;
    padding: 20px 16px;
  }

  .team-card-image {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
  }

  .team-card-content h3 {
    font-size: 19px;
  }

  .team-card-quote {
    font-size: 13px;
    min-height: 50px;
  }

  .team-card-quote:before {
    font-size: 24px;
    top: -10px;
  }

  .team-card-social {
    padding: 15px 0 8px;
    gap: 8px;
  }

  .team-card-social a {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .row.g-3 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .col-lg-5 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .team-card-compact {
    max-width: 100%;
    padding: 18px 15px;
  }

  .team-card-image {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
  }

  .team-card-content h3 {
    font-size: 18px;
  }

  .team-card-role {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .team-card-quote {
    font-size: 12.5px;
    margin-bottom: 15px;
    min-height: 45px;
  }

  .team-card-tags {
    gap: 6px;
  }

  .team-card-tags span {
    padding: 4px 9px;
    font-size: 11px;
  }
}

/* Section Styling */
.section-title {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

/*.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}*/

.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* Adjust container for tighter layout */
.container {
  padding-left: 15px;
  padding-right: 15px;
}
