/* ASYST Website Styles */
:root {
  --primary: #0A1628;
  --accent: #0D9488;
  --accent-light: #14B8A6;
  --accent-dark: #0F766E;
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--primary);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
}

/* Glassmorphism Effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(13, 148, 136, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(13, 148, 136, 0.2), 0 0 60px rgba(13, 148, 136, 0.1);
  animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(13, 148, 136, 0.4); }
  50% { border-color: rgba(13, 148, 136, 0.8); }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 3px;
  font-family: 'Bricolage Grotesque', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.5), 0 0 40px rgba(13, 148, 136, 0.2);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 5% 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, #0F2942 50%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(13, 148, 136, 0.1), transparent);
  animation: gradientFlow 8s ease-in-out infinite;
}

@keyframes gradientFlow {
  0% {
    transform: translate(-30%, -30%) rotate(0deg);
  }
  50% {
    transform: translate(30%, 30%) rotate(180deg);
  }
  100% {
    transform: translate(-30%, -30%) rotate(360deg);
  }
}


.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -2px;
  text-shadow: 0 0 60px rgba(13, 148, 136, 0.3);
}

.hero p {
  font-size: 1.4rem;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.2s backwards;
  font-weight: 400;
  letter-spacing: 0.5px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.secondary-button {
  background: transparent;
  color: var(--white);
  padding: 0.75rem 2rem;
  border: 2px solid var(--accent);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.secondary-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

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

/* Section Styles */
section {
  padding: 6rem 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -1px;
}

.section-title p {
  font-size: 1.25rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Overview */
.services-overview {
  background: linear-gradient(180deg, var(--primary) 0%, #0A1628 50%, #0D1F33 100%);
  padding: 8rem 5%;
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-card {
  padding: 4rem 3rem;
  text-align: center;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.card-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  font-family: 'Bricolage Grotesque', sans-serif;
  pointer-events: none;
  z-index: 0;
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4), 0 0 40px rgba(13, 148, 136, 0.2);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.service-icon svg {
  color: var(--white);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.5px;
}

.service-card p {
  color: var(--gray-400);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.learn-more-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.learn-more-link:hover {
  color: var(--accent-light);
  transform: translateX(5px);
}

/* Partner Logos */
.partners {
  background: var(--primary);
  text-align: center;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.partner-logo {
  padding: 2.5rem 3rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.partner-logo-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.partner-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.5px;
}

.partner-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(13, 148, 136, 0.3);
}

.odoo-logo:hover {
  border-color: #714B67;
  box-shadow: 0 12px 35px rgba(113, 75, 103, 0.4), 0 0 50px rgba(113, 75, 103, 0.2);
}

.zoho-logo:hover {
  border-color: #E42527;
  box-shadow: 0 12px 35px rgba(228, 37, 39, 0.4), 0 0 50px rgba(228, 37, 39, 0.2);
}

.quickbooks-logo:hover {
  border-color: #2CA01C;
  box-shadow: 0 12px 35px rgba(44, 160, 28, 0.4), 0 0 50px rgba(44, 160, 28, 0.2);
}

.partner-logo:hover {
  transform: scale(1.05);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(180deg, #0D1F33 0%, var(--primary) 100%);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.testimonial-track {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(13, 148, 136, 0.2);
}

.carousel-nav {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--white);
  flex-shrink: 0;
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.dot.active {
  background: var(--accent);
  box-shadow: 0 0 15px rgba(13, 148, 136, 0.5);
  transform: scale(1.2);
}

.testimonial-card {
  padding: 2.5rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3), 0 0 30px rgba(13, 148, 136, 0.15);
}

.testimonial-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-info p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* Services Page Styles */
.services-detail {
  background: linear-gradient(180deg, var(--primary) 0%, #0D1F33 100%);
}

.service-detail-card {
  padding: 3rem;
  margin-bottom: 0;
  text-align: left;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.service-description {
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-bullets {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-bullets li {
  color: var(--gray-300);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
  font-size: 0.95rem;
}

.service-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.what-you-get {
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: auto;
}

.what-you-get h4 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.what-you-get ul {
  list-style: none;
}

.what-you-get li {
  color: var(--gray-300);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.what-you-get li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.services-horizontal-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-card {
  padding: 0;
  margin-bottom: 0;
  text-align: left;
  min-height: auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.service-detail-card-left {
  flex: 0 0 35%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-card-right {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4), 0 0 40px rgba(13, 148, 136, 0.2);
}

.service-detail-icon svg {
  color: var(--white);
}

.service-detail-card-left h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.5px;
  text-shadow: 0 0 40px rgba(13, 148, 136, 0.3);
}

.service-detail-card-left .service-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray-400);
  margin-bottom: 0;
}

.service-detail-card-right .service-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-detail-card-right .what-you-get {
  margin-top: auto;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4), 0 0 40px rgba(13, 148, 136, 0.2);
}

.service-detail-icon svg {
  color: var(--white);
}

.service-detail-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -1px;
  text-shadow: 0 0 40px rgba(13, 148, 136, 0.3);
}

.service-detail-card ul {
  list-style: none;
  text-align: left;
}

.service-detail-card li {
  color: var(--gray-300);
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.service-detail-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-detail-card p {
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-detail-card ul {
  list-style: none;
  margin-left: 0;
}

.service-detail-card li {
  color: var(--gray-300);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-detail-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Process Section */
.process {
  background: var(--primary);
  position: relative;
}

.timeline-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.timeline-wrapper {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.timeline-left {
  flex: 0 0 40%;
  position: relative;
}

.timeline-right {
  flex: 0 0 55%;
  position: relative;
  min-height: 500px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawTimeline 2s ease-in-out forwards;
}

@keyframes drawTimeline {
  to {
    stroke-dashoffset: 0;
  }
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.timeline-step {
  text-align: left;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border-left: 4px solid transparent;
  border-radius: 0 12px 12px 0;
}

.timeline-step:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
}

.timeline-step.active {
  background: rgba(13, 148, 136, 0.15);
  border-left-color: var(--accent);
  box-shadow: 0 0 30px rgba(13, 148, 136, 0.3);
}

.timeline-step.active .timeline-number {
  text-shadow: 0 0 40px rgba(13, 148, 136, 0.8);
  transform: scale(1.1);
}

.timeline-step .timeline-number {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.timeline-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.timeline-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.5s ease, top 0.3s ease;
}

.timeline-panel.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.panel-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.panel-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.5rem;
}

.panel-item h4 {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.panel-item p {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Timeline Accordion */
@media (max-width: 768px) {
  .timeline-wrapper {
    flex-direction: column;
  }
  
  .timeline-left {
    flex: 1;
  }
  
  .timeline-right {
    flex: 1;
  }
  
  .timeline-line {
    display: none;
  }
  
  .timeline-step {
    text-align: left;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid transparent;
  }
  
  .timeline-step.active {
    border-left-color: var(--accent);
  }
  
  .timeline-step .timeline-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .timeline-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .timeline-step p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  
  .panel-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Mobile Timeline Panels */
  .timeline-panel {
    position: static;
    display: none;
    margin-top: 1rem;
  }
  
  .timeline-panel.active {
    display: block;
  }
  
  /* Mobile Service Cards */
  .service-detail-card {
    flex-direction: column;
  }
  
  .service-detail-card-left {
    flex: 1;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
  }
  
  .service-detail-card-right {
    flex: 1;
    padding: 2rem;
  }
  
  .service-detail-card-right .service-bullets {
    grid-template-columns: 1fr;
  }
}

/* Portal Cards Section */
.portal-cards {
  background: linear-gradient(180deg, var(--primary) 0%, #0D1F33 100%);
  padding: 6rem 5%;
}

.portal-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portal-card {
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(13, 148, 136, 0.3), 0 0 60px rgba(13, 148, 136, 0.2);
}

.portal-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4), 0 0 40px rgba(13, 148, 136, 0.2);
}

.portal-card-icon svg {
  color: var(--white);
}

.portal-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.5px;
}

.portal-card p {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.portal-card-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.portal-card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.5);
}

/* FAQ Section */
.faq-section {
  background: var(--primary);
  padding: 6rem 5%;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(13, 148, 136, 0.3);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--gray-400);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.timeline-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(13, 148, 136, 0.5);
}

.timeline-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.process-step {
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4), 0 0 40px rgba(13, 148, 136, 0.2);
}

.process-step h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.5px;
}

.process-step p {
  color: var(--gray-400);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  text-align: center;
  padding: 8rem 5%;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -1px;
}

.cta-section p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-button {
  background: var(--white);
  color: var(--accent-dark);
}

.cta-section .cta-button:hover {
  background: var(--gray-100);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--gray-900);
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.5px;
}

.footer-section p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-500);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .partners-logos {
    gap: 2rem;
  }

  .partner-logo {
    min-width: 150px;
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Particle Canvas */
.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Glow Effects */
.glow-accent {
  box-shadow: 0 0 30px rgba(13, 148, 136, 0.3), 0 0 60px rgba(13, 148, 136, 0.1);
}

/* Premium Card Enhancements */
.service-card::before,
.process-step::before,
.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-light));
  box-shadow: 0 0 20px rgba(13, 148, 136, 0.5), 0 0 40px rgba(13, 148, 136, 0.3);
  z-index: 9999;
  transition: height 0.1s ease-out;
  border-radius: 0 4px 4px 0;
}

/* Floating Particles Throughout Page */
.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 15s infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* Connection Lines Animation */
.connection-lines {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 400px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.connection-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s ease-in-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.connection-dot {
  animation: pulseDot 2s ease-in-out infinite;
}

.connection-dot:nth-child(2) {
  animation-delay: 0.5s;
}

.connection-dot:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pulseDot {
  0%, 100% {
    r: 6;
    opacity: 1;
  }
  50% {
    r: 10;
    opacity: 0.5;
  }
}

.explore-services-container {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.explore-services-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.4);
  font-family: 'Bricolage Grotesque', sans-serif;
}

.explore-services-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.5), 0 0 60px rgba(13, 148, 136, 0.2);
}
