/* Import ABeeZee font */
@import url("https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap");

/* Page Background Animations */
.page-bg-left,
.page-bg-right {
  position: fixed;
  top: 0;
  width: 180px;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
}

.page-bg-left {
  left: 0;
}

.page-bg-right {
  right: 0;
}

/* Left Side - Orbit Elements */
.orbit-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(107, 155, 209, 0.2);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite;
}

.orbit-1 {
  width: 80px;
  height: 80px;
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.orbit-2 {
  width: 60px;
  height: 60px;
  top: 55%;
  left: 15%;
  animation-delay: 4s;
  animation-direction: reverse;
}

.orbit-3 {
  width: 100px;
  height: 100px;
  top: 75%;
  left: 10%;
  animation-delay: 8s;
}

.connection-nodes {
  position: absolute;
  top: 20%;
  left: 40%;
}

.connection-svg {
  width: 180px;
  height: 500px;
}

.connect-line {
  stroke-dasharray: 60;
  animation: connectDraw 6s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 3s; }

.connect-node {
  animation: connectPulse 4s ease-in-out infinite;
}

.node-1 { animation-delay: 1s; }
.node-2 { animation-delay: 2s; }
.node-3 { animation-delay: 3s; }

/* Right Side - Mesh Pattern */
.mesh-pattern {
  position: relative;
  width: 100%;
  height: 100%;
}

.mesh-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(74, 144, 226, 0.6);
  border-radius: 50%;
  animation: meshGlow 5s ease-in-out infinite;
}

.mesh-1 {
  top: 20%;
  right: 25%;
  animation-delay: 0s;
}

.mesh-2 {
  top: 35%;
  right: 40%;
  animation-delay: 1s;
}

.mesh-3 {
  top: 50%;
  right: 20%;
  animation-delay: 2s;
}

.mesh-4 {
  top: 65%;
  right: 35%;
  animation-delay: 3s;
}

.mesh-5 {
  top: 80%;
  right: 15%;
  animation-delay: 4s;
}

.flow-stream {
  position: absolute;
  right: 10%;
  top: 25%;
  width: 60px;
  height: 400px;
}

.flow-particle {
  position: absolute;
  width: 6px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(107, 155, 209, 0.8), transparent);
  border-radius: 3px;
  animation: flowUp 7s linear infinite;
}

.particle-1 {
  left: 10px;
  animation-delay: 0s;
}

.particle-2 {
  left: 25px;
  animation-delay: 2.3s;
}

.particle-3 {
  left: 40px;
  animation-delay: 4.6s;
}

/* About Page Animation Keyframes */
@keyframes orbitSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes connectDraw {
  0% { stroke-dashoffset: 60; opacity: 0; }
  50% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -60; opacity: 0; }
}

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

@keyframes meshGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes flowUp {
  0% { transform: translateY(0px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-380px); opacity: 0; }
}

/* Portfolio-inspired About Page CSS */

/* Hero Image Section */
.hero-image-section {
  padding: 80px 0 0 0;
  background: var(--bg-primary);
}

.hero-image-container {
  width: 100%;
  margin: 0;
  padding: 0;
  height: 280px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.hero-cover-image:hover {
  transform: scale(1.05);
}

/* Page Hero Section */
.page-hero {
  padding: 4rem 0;
  background: var(--bg-primary);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section Base Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

/* Decorative Patterns and Elements */

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236B9BD1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(107, 155, 209, 0.1);
  padding: 3rem;
}

.about-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 50px;
  height: 50px;
  /* border-top: 3px solid var(--primary-color);
  border-left: 3px solid var(--primary-color); */
  opacity: 0.3;
}

.about-content::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  /* border-bottom: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color); */
  opacity: 0.3;
}

/* Modern About Section Styling */

/* Enhanced Collaboration Section */

/* About Section */
.about-section {
  background: var(--bg-secondary);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-content:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-align: justify;
  letter-spacing: 0.01em;
  text-justify: inter-word;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Collaboration Section */
.collaboration-section {
  background: var(--bg-primary);
}

.collaboration-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.collaboration-content:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.collaboration-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-align: justify;
  letter-spacing: 0.01em;
  text-justify: inter-word;
}

.collaboration-content p:last-child {
  margin-bottom: 0;
}

/* Timeline Section */
.evolution-section {
  background: var(--bg-secondary);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 200px;
}

.timeline-line {
  content: "";
  position: absolute;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  );
  top: 0;
  bottom: 0;
  left: 200px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-date {
  position: absolute;
  left: -200px;
  width: 160px;
  text-align: right;
  color: var(--primary-color);
  padding-right: 2rem;
}

.timeline-date span {
  display: block;
  font-weight: 600;
}

.timeline-date span:first-child {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.timeline-date span:last-child {
  font-size: 1rem;
  opacity: 0.7;
}

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 4px solid var(--bg-primary);
  z-index: 1;
}

.timeline-content {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.timeline-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags li {
  background: rgba(107, 155, 209, 0.1);
  color: var(--primary-color);
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tags li:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

/* Team Section */
.team-section {
  background: var(--bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-member {
  background: var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
  width: 100%;
  padding-top: 75%;
  position: relative;
  overflow: hidden;
}

.member-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
  transform: scale(1.05);
}

.member-content {
  padding: 1.25rem;
  text-align: center;
  flex-grow: 1;
  /* display: flex; */
  flex-direction: column;
  justify-content: space-between;
}

.member-content h3 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Former Team Members - only changing color and overlay */
.team-member.former {
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.team-member.former:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.former-members {
  margin-top: 2.2rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-color);
}

.former-members .team-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 800px;
  margin: 0 auto;
}

.former-members h3 {
  color: var(--text-primary);
  font-weight: 600;
  text-align: center;
  font-size: 1.5rem;
}

.former-members-disclaimer {
  font-size: 0.5rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 1.5rem;
  opacity: 0.8;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* External Link Icon */
.external-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  color: var(--primary-color);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.external-link:hover {
  opacity: 1;
}

.external-link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bg-left,
  .page-bg-right {
    width: 140px;
  }
  
  .orbit {
    transform: scale(0.8);
  }
}

@media (max-width: 768px) {
  .page-bg-left,
  .page-bg-right {
    display: none;
  }
  
  .hero-image-container {
    height: 220px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.125rem;
  }

  .section {
    padding: 3rem 0;
  }

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

  .timeline {
    padding-left: 100px;
  }

  .timeline-line {
    left: 100px;
  }

  .timeline-date {
    left: -100px;
    width: 80px;
  }

  .timeline-date span:first-child {
    font-size: 1rem;
  }

  .timeline-date span:last-child {
    font-size: 0.9rem;
  }

  .timeline-content {
    margin-left: 0;
    padding: 1.5rem;
  }

  .timeline-content::before {
    left: -40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-image-container {
    height: 180px;
  }

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

  .page-subtitle {
    font-size: 1rem;
  }

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

  .about-content p,
  .collaboration-content p {
    font-size: 1rem;
  }

  .timeline {
    padding-left: 60px;
  }

  .timeline-line {
    left: 60px;
  }

  .timeline-date {
    left: -60px;
    width: 50px;
    padding-right: 1rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-date span:first-child {
    font-size: 0.9rem;
  }

  .timeline-date span:last-child {
    font-size: 0.8rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .tags li {
    font-size: 0.8rem;
    padding: 3px 10px;
  }

  .team-member {
    padding: 1.5rem;
  }
}

/* Added fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content,
.collaboration-content p {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Partners Carousel within Collaboration Section */

.partners-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2.5rem 0 2rem 0;
  margin-top: 2rem;
  min-height: 120px;
}

.partners-carousel-track {
  display: flex;
  animation: scroll-left 120s linear infinite;
  width: max-content;
  gap: 2rem;
  align-items: center;
}

.partner-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(107, 155, 209, 0.1);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 80px;
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(107, 155, 209, 0.3);
}

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

.partner-card:hover .partner-logo {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Continuous scrolling animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments for partners carousel */
@media (max-width: 768px) {
  .partners-carousel-container {
    padding: 2rem 0 0 0;
    margin-top: 1.5rem;
  }

  .partners-carousel-track {
    animation-duration: 80s;
    gap: 1.5rem;
  }

  .partner-card {
    min-width: 100px;
    min-height: 70px;
    padding: 0.75rem;
  }

  .partner-logo {
    height: 40px;
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .partners-carousel-container {
    padding: 1.5rem 0 0 0;
    margin-top: 1rem;
  }

  .partners-carousel-track {
    animation-duration: 60s;
    gap: 1rem;
  }

  .partner-card {
    min-width: 80px;
    min-height: 60px;
    padding: 0.5rem;
  }

  .partner-logo {
    height: 35px;
    max-width: 70px;
  }
}

/* Styles extracted from about.html <style> block */
.solutions-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solutions-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/pattern/pattern-01.png") repeat;
  opacity: 0.1;
  z-index: 1;
}

.solutions-hero .container {
  position: relative;
  z-index: 2;
}

.solutions-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.solutions-subtitle {
  font-size: 1.3rem;
  max-width: 800px;
  margin-left: 200px;
  opacity: 0.9;
  line-height: 1.6;
  text-align: center;
  /* text-justify: inter-word; */
}

.solutions-content {
  padding: 80px 0;
}

.solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.solution-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  padding: 28px 32px;
}

.solution-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
  border-color: #3b82f6;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.card-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1px;
}

.solution-tag {
  background: #dbeafe;
  color: #3b82f6;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #bfdbfe;
  transition: all 0.2s ease;
}

.solution-tag:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-1px);
}

.card-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-left: 24px;
  flex-shrink: 0;
}

.solution-card:hover .card-arrow {
  gap: 12px;
  color: #1d4ed8;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.solution-card:hover .arrow-icon {
  transform: translateX(4px);
}

.contact-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 60px 36px;
  border-radius: 16px;
  text-align: left;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/images/pattern/pattern-02.png") repeat;
  opacity: 0.1;
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-text {
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

.contact-email {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 12px 24px;
  border: 2px solid #fbbf24;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-email:hover {
  background-color: #fbbf24;
  color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

@media (max-width: 768px) {
  .solutions-title {
    font-size: 2.2rem;
  }

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

  .solution-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
  }

  .card-arrow {
    margin-left: 0;
    align-self: flex-end;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-description {
    font-size: 0.95rem;
  }

  .card-highlight {
    font-size: 0.85rem;
  }

  .contact-section {
    padding: 40px 20px;
    margin-top: 40px;
  }

  .contact-title {
    font-size: 1.6rem;
  }

  .contact-text {
    font-size: 1rem;
  }

  .contact-email {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

/* Loading animation */
.solution-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.solution-card:nth-child(1) {
  animation-delay: 0.1s;
}
.solution-card:nth-child(2) {
  animation-delay: 0.2s;
}
.solution-card:nth-child(3) {
  animation-delay: 0.3s;
}
.solution-card:nth-child(4) {
  animation-delay: 0.4s;
}
.solution-card:nth-child(5) {
  animation-delay: 0.5s;
}

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