* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
  font-family: 'Poppins', sans-serif;
  background: #0a0a0f;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
.iti {
    display: block;
}
/* Navigation */
.navbar {
  font-family: poppins, sans-serif;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 8px;
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #a1a1aa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.cta-button {
    /* background: linear-gradient(135deg, #c1bebe, #545454); */
   
  background: linear-gradient(135deg, #6366f1, #a78bfa);
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);

    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;

}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Hero Section */

.hero-section-text {
  z-index: 9;
  position: relative;
}

.hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.hero-container {
  /* max-width: 800px; */
  max-width: 100%;
  margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 30%);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: 80px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #a1a1aa;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  /* background: linear-gradient(135deg, #8b5cf6, #a855f7); */
 background: linear-gradient(135deg, #6366f1, #a78bfa);
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  font-family: 'Poppins', sans-serif;
  display: flex;
  margin: 0px auto;
  align-items: center;

  display: flex;
  margin: 0px auto;
  align-items: center;
}

.hero-cta:hover {
  transform: translateY(-2px);
}

/* Dashboard Preview */
.dashboard-preview {
  padding: 6rem 2rem;
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.dashboard-header {
  display: flex;
  height: 400px;
}

.dashboard-nav {
  width: 250px;
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: #a1a1aa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-item.active {
  background: rgba(139, 92, 246, 0.1);
  color: #a855f7;
  border-right: 2px solid #a855f7;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.nav-icon {
  font-size: 1rem;
}

.dashboard-main {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #a1a1aa;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.stat-chart {
  height: 40px;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.stat-dot.green {
  background: #10b981;
}

.stat-dot.blue {
  background: #3b82f6;
}

.stat-dot.purple {
  background: #8b5cf6;
}

.stat-value {
  margin-left: auto;
  color: #ffffff;
  font-weight: 600;
}

.large-stat {
  text-align: center;
}

.large-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.large-stat-label {
  color: #a1a1aa;
  font-size: 1rem;
}

/* Trusted By Section */
.trusted-by {
  padding: 6rem 2rem;
  text-align: center; 
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trusted-text {
  color: #a1a1aa;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.logo-item {
  color: #71717a;
  font-weight: 600;
  font-size: 1.125rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
}

/* AI Power Section */
.ai-power {
  padding: 6rem 2rem;
 
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

.ai-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ai-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* .ai-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
} */

.ai-dashboard {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    gap: 3rem;
    align-items: start;
}

.ai-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.ai-card-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-nav {
  display: flex;
  gap: 1rem;
}

.ai-nav-item {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* .ai-nav-item.active {
  background: rgba(139, 92, 246, 0.2);
  color: #a855f7;
} */

.ai-nav-item.active {
    background: rgb(255 255 255 / 20%);
    color: #ffffff;
}

.ai-stats {
  padding: 2rem;
}

.ai-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.ai-stat-label {
  color: #a1a1aa;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.ai-description h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.ai-description p {
  color: #a1a1aa;
  line-height: 1.6;
}

.ai-metrics {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.metric-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.metric-label {
  color: #a1a1aa;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.metric-desc {
  color: #a1a1aa;
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 6rem 2rem;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgb(255 255 255 / 57%);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-card p {
  color: #a1a1aa;
  line-height: 1.6;
}

/* why Section */
.why {
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.why-subtitle {
  color: #a1a1aa;
  font-size: 1.125rem;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.why-us-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.logos-grid-card{
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 10px;
  backdrop-filter: blur(10px);
}

.why-us-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
  /* font-style: italic; */
}

.why-us-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 50%;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.author-title {
  color: #a1a1aa;
  font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
  padding: 6rem 2rem;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.pricing-subtitle {
  color: #a1a1aa;
  font-size: 1.125rem;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card.featured {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.plan-period {
  color: #a1a1aa;
  margin-bottom: 2rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.5rem 0;
  color: #a1a1aa;
  position: relative;
  padding-left: 1.5rem;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.plan-button {
  width: 100%;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: #ffffff;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.plan-button:hover {
  transform: translateY(-2px);
}

/* Final CTA Section */
.final-cta {
  font-family: 'Poppins', sans-serif;
  padding: 6rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  position: relative;
}

.final-cta-container {
  /* max-width: 600px; */
  max-width: 100%;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta-button {
  /* background: linear-gradient(135deg, #8b5cf6, #a855f7); */
background: linear-gradient(135deg, #6366f1, #a78bfa);
 color: white;
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: transform 0.2s ease;
  font-family: 'Poppins', sans-serif;
  display: flex;
    align-items: center;
    margin: 0px auto;
}

.final-cta-button:hover {
  transform: translateY(-2px);
}

.final-cta-text {
  color: #a1a1aa;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  padding: 0rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: #a1a1aa;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .dashboard-header {
    flex-direction: column;
    height: auto;
  }

  .dashboard-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .ai-dashboard {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-title {
    font-size: 2rem;
  }

  .ai-title,
  .features-title,
  .why-title,
  .pricing-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .hero {
    padding: 6rem 1rem 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .dashboard-nav {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-social {
    flex-direction: column;
    gap: 1rem;
  }
}




/* footer bg */

img.logo-img-for-cta {
    width: auto;
    height: 62px;
    /* padding: 20px; */
    margin: 20px 0px;
}

.final-cta {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.final-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Responsiveness */
@media (max-width: 768px) {
  .final-cta {
    height: 100vh;
  }

  img.logo-img-for-cta {
    width: auto;
    height: 50px;
    /* padding: 20px; */
    margin: 20px 0px;
}

}

@media (max-width: 480px) {
  .final-cta {
    height: 100vh;
  }
}

.final-cta-container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

/* --- Navigation CSS for Mobile/Tablet View (Below 768px) --- */

/* Initially hide the hamburger icon on large screens */
.navbar .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100; /* Ensure it's above other elements */
}

/* Style for the hamburger icon lines (adjust color/size as needed) */
.navbar .hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff; /* White line color */
  position: relative;
  transition: all 0.3s ease-in-out;
}

.navbar .hamburger::before,
.navbar .hamburger::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.navbar .hamburger::before {
  transform: translateY(-8px);
}

.navbar .hamburger::after {
  transform: translateY(8px);
}

/* Transform the hamburger to an 'X' when active (optional but recommended) */
.navbar.menu-open .hamburger {
  transform: rotate(45deg);
}

.navbar.menu-open .hamburger::before {
  transform: rotate(90deg) translate(0);
}

.navbar.menu-open .hamburger::after {
  opacity: 0; /* Hide the bottom bar */
}

/* Media Query: Styles for screens 768px and smaller */

@media (max-width: 768px) {

  .mobile-menu-toggle {
    display: none !important;
}

  .cta-button {
    border: none;
    padding: 6px 13px;
    font-size: 10px;
    margin: 0px !important;

}


  .navbar .nav-container {
    /* Adjust container to align items properly for mobile */
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Add padding to the sides */ 
  }

  .navbar .menu-toggle {
    display: block; /* Show the hamburger button */
  }

  .navbar .nav-links {
    /* Set up the hidden mobile menu */
    /* position: absolute; */
    /* top: 81px;  */
    /* Position it below the navbar/logo */
    left: 0;
    width: 100%;
    /* background: #111; */
    background: rgb(10 10 15);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* By default, hide the menu */
    /* max-height: 0; */
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  /* When the menu is open, expand it */
  .navbar.menu-open .nav-links {
    /* max-height: 300px;  */
    /* Enough height to show all links */
    
        display: flex;
  }

  .navbar .nav-link {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

  .navbar .cta-button {
    /* Hide the primary CTA button on mobile view to avoid cluttering the header, 
       it can be placed inside the hidden .nav-links if needed. */
    display: none; 
  }

  .navbar.menu-open .cta-button {
    /* If you want the CTA to show when menu is open: */
    display: inline-flex;
    margin-top: 10px;
  }
}

@media (max-width: 425px) {

    .cta-button {

    padding: 6px 10px;
    font-size: 10px;
  

}


  .nav-logo a{
    width: 145px;
  };

  .nav-logo a img {
    width: fit-content;
}

.navbar .nav-container {
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

}

@media (max-width: 320px) {

  .nav-logo a {
    width: 133px;
}
 .nav-logo a img.logo-img {
    width: 140px;
}

.navbar .nav-container {
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.cta-button {
    
    padding: 6px 7px;
    font-size: 9px;
    
}

}



/* --- Animated Gradient Text Styles --- */

/* 1. Define the gradient appearance and masking */
.gradient-text {
  /* Set the initial gradient colors */
  background: linear-gradient(
    90deg, 
    #ff6b6b 0%,  /* A bright reddish-pink */
    #4a90e2 25%, /* A bright blue */
    #9c5aff 50%, /* A vibrant purple */
    #4a90e2 75%,
    #ff6b6b 100% 
  );
  
  /* CRITICAL: Set the background size wider than the element to allow for movement */
  background-size: 300% 100%;
  
  /* CRITICAL: Clip the background to the text (masking effect) */
  -webkit-background-clip: text;
  background-clip: text;
  
  /* CRITICAL: Make the text color transparent so the background shows through */
  -webkit-text-fill-color: transparent;
  
  /* Start the animation */
  animation: gradientShift 4s ease-in-out infinite;
  
  /* Ensure the text is displayed inline, but can scale */
  display: inline-block; 
}

/* 2. Define the animation keyframes */
@keyframes gradientShift {
  0% {
    background-position: 100% 0%; /* Start position */
  }
  50% {
    background-position: 0% 50%; /* Middle position (can adjust for different effects) */
  }
  100% {
    background-position: 100% 0%; /* Return to start (creates a loop) */
  }
}



/* card css for case studies *************************************************************************************************/




.use-case-section img {
  max-width: 100%;
  border: 0px;
}
.use-case-section ul,
.use-case-section ol {
  list-style: none;
}
.use-case-section a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.use-case-section a:focus,
.use-case-section a:active,
.use-case-section a:visited,
.use-case-sectiona:hover {
  text-decoration: none;
  outline: none;
}
.use-case-section a:hover {
  color: #e73700;
}
.use-case-section h2 {
  margin-bottom: 48px;
  padding-bottom: 16px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  position: relative;
  text-transform: capitalize;
}
.use-case-section h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 50px;
}
.use-case-section button {
  outline: none !important;
}
/******* Common Element CSS End *********/

/* -------- title style ------- */
.use-case-section .line-title {
  position: relative;
  width: 400px;
}
.use-case-section .line-title::before,
.use-case-section .line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
}
.use-case-section .line-title::before {
  width: 100%;
  background: #f2f2f2;
}
.use-case-section .line-title::after {
  width: 32px;
  background: #e73700;
}

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */
.use-case-section {
  padding: 60px 50px;
}
.use-case-section .owl-stage {
  margin: 15px 0;
  display: flex;
  display: -webkit-flex;
}
.use-case-section .item {
  margin: 0 15px 60px;
  width: 320px;
  height: 400px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: #343434 no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.use-case-section .item.active {
  width: 500px;
  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}
.use-case-section .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}
.use-case-section .item-desc {
  padding: 0 24px 12px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 54px));
  -webkit-transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.use-case-section .item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}
.use-case-section .item-desc p {
  opacity: 0;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
  -webkit-transition: all 0.4s ease-in-out 0.2s;
}
.use-case-section .item.active .item-desc p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.use-case-section .owl-theme.custom-carousel .owl-dots {
  margin-top: -20px;
  position: relative;
  z-index: 5;
}
/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {
  .use-case-section h2 {
    margin-bottom: 32px;
  }
  .use-case-section h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 40px;
  }

  /* -------- Landing page ------- */
  .use-case-section {
    padding: 50px 30px;
  }
  .use-case-section .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  }
  .use-case-section .item.active {
    width: 400px;
  }
  .use-case-section .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .use-case-section h2 {
    margin-bottom: 32px;
  }
  .use-case-section h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 40px;
  }
  .line-title {
    width: 330px;
  }

  /* -------- Landing page ------- */
  .use-case-section {
    padding: 50px 30px 40px;
  }
  .use-case-section .item {
    margin: 0 12px 60px;
    width: 240px;
    height: 330px;
  }
  .use-case-section .item.active {
    width: 360px;
  }
  .use-case-section .item-desc {
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

@media (max-width: 767px) {
  .use-case-section body {
    font-size: 14px;
  }
  .use-case-section h2 {
    margin-bottom: 20px;
  }
  .use-case-section h3 { 
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 40px;
  }
  .use-case-section .line-title {
    width: 250px;
  }

  /* -------- Landing page ------- */
  .use-case-section {
    padding: 30px 15px 20px;
  }
  .use-case-section .item {
    margin: 0 10px 40px;
    width: 200px;
    height: 280px;
  }
  .use-case-section .item.active {
    width: 270px;
    box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
  }
  .use-case-section .item-desc {
    padding: 0 14px 5px;
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}


/* about us section */

    /* General Layout: Scoped to the new ID */
    #syntra-about-us {
        max-width: 1280px;
        margin: 0 auto;
        padding: 48px 20px;
    }
    
    #syntra-about-us .grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Headings */
    #syntra-about-us h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    #syntra-about-us h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 24px;
    }

    #syntra-about-us h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    #syntra-about-us .text-primary {
        background: linear-gradient(135deg, #6366f1, #a78bfa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    #syntra-about-us .text-muted {
        color: #a1a1aa;
        font-size: 1.125rem;
        margin-bottom: 16px;
    }

    /* Left Column */
    #syntra-about-us .left-column {
        display: flex;
        flex-direction: column;
        gap: 32px;
        text-align: left;
    }

    /* Expertise Grid */
    #syntra-about-us .expertise-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #syntra-about-us .expertise-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    #syntra-about-us .check-icon {
        width: 20px;
        height: 20px;
        background: rgba(99, 102, 241, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 4px;
    }

    #syntra-about-us .check-icon svg {
        width: 12px;
        height: 12px;
        stroke: #6366f1;
        stroke-width: 3;
        fill: none;
    }

    #syntra-about-us .expertise-text {
        font-size: 0.875rem;
        color: #fafafa;
    }

    /* Button */
    #syntra-about-us .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #6366f1, #a78bfa);
        color: white;
        padding: 16px 32px;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
    }

    #syntra-about-us .btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(99, 102, 241, 0.5);
    }

    /* Right Column */
    #syntra-about-us .right-column {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    /* Stats Grid */
    #syntra-about-us .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    #syntra-about-us .stat-card {
        background: linear-gradient(180deg, #141419, #0f0f13);
        border: 1px solid #27272a;
        border-radius: 12px;
        padding: 10px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #syntra-about-us .stat-card:hover {
        border-color: rgba(99, 102, 241, 0.5);
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
    }

    #syntra-about-us .stat-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #6366f1, #a78bfa);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
    }

    #syntra-about-us .stat-icon svg {
        width: 24px;
        height: 24px;
        stroke: white;
        stroke-width: 2;
        fill: none;
    }

    #syntra-about-us .stat-value {
        font-size: 2.25rem;
        font-weight: 700;
        color: #6366f1;
        margin-bottom: 8px;
    }

    #syntra-about-us .stat-label {
        font-size: 0.875rem;
        color: #a1a1aa;
    }

    /* Approach Section */
    #syntra-about-us .approach-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 24px;
        justify-content: center;
    }

    #syntra-about-us .approach-header svg {
        width: 24px;
        height: 24px;
        stroke: #6366f1;
        stroke-width: 2;
        fill: none;
    }

    .address-info{
  text-align: left;
}

.about-us-card{
  text-align: left;
}

    #syntra-about-us .approach-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #syntra-about-us .approach-card {
        background: linear-gradient(180deg, #141419, #0f0f13);
        border: 1px solid #27272a;
        border-radius: 12px;
        padding: 15px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #syntra-about-us .approach-card:hover {
        border-color: rgba(99, 102, 241, 0.5);
        box-shadow: 0 4px 24px rgba(10, 10, 15, 0.4);
    }

    #syntra-about-us .approach-content {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    #syntra-about-us .approach-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #6366f1, #a78bfa);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
    }

    #syntra-about-us .approach-icon svg {
        width: 24px;
        height: 24px;
        stroke: white;
        stroke-width: 2;
        fill: none;
    }

    #syntra-about-us .approach-text {
        flex: 1;
    }

    #syntra-about-us .approach-description {
        font-size: 0.875rem;
        color: #a1a1aa;
        line-height: 1.7;
    }

    .our-expertise-section{
      margin-top: 30px;
    }

    /* Responsive Design */
    @media (min-width: 640px) {
        #syntra-about-us .expertise-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        #syntra-about-us.container { /* Use the class and ID for the media query */
            /* padding: 80px 00px; */
              padding: 00px 00px; 
        }

        #syntra-about-us .grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 64px;
        }

        #syntra-about-us h1 {
            font-size: 3rem;
        }

        #syntra-about-us .stat-value {
            font-size: 24px;
        }
    }


    /* location-css */

    
        /* Location Page Container Styles */
        .location-page.container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0px 0px;
        }

        /* Header Styles */
        .location-page .header {
            text-align: center;
            margin-bottom: 48px;
        }

        .location-page .header-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .location-page .header-title h1 {
            font-size: 3rem;
            font-weight: 700;
        }

        .location-page .header-subtitle {
            font-size: 1.25rem;
            color: #94a3b8;
        }

        /* Icon Styles */
        .location-page .icon {
            width: 32px;
            height: 32px;
        }

        .location-page .icon-accent {
            color: #5625a1;
        }

        .location-page .icon-primary {
            color: #a855f7;
        }

        /* Main Grid Layout */
        .location-page .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        @media (min-width: 1024px) {
            .location-page .main-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Map Section Styles */
        .location-page .map-section {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: #1e293b;
            border: 1px solid #334155;
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
            height: 400px;
        }

        .location-page .map-container {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(244, 63, 94, 0.1));
        }

        .location-page .map-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #475569, #334155);
            opacity: 0.5;
            background-image: 
                linear-gradient(to right, #334155 1px, transparent 1px),
                linear-gradient(to bottom, #334155 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .location-page .map-marker {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .location-page .marker-glow {
            position: absolute;
            inset: 0;
            background: #5625a1;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.5;
            animation: pulse 2s infinite;
        }

        /* Keyframe Animation (no parent class needed for @keyframes) */
        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        .location-page .marker-icon {
            position: relative;
            z-index: 10;
            width: 64px;
            height: 64px;
            color: #5625a1;
            filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
            display: none;
        }

        .location-page .map-label {
            position: absolute;
            bottom: 32px;
            left: 32px;
            background: rgba(30, 41, 59, 0.95);
            backdrop-filter: blur(10px);
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #334155;
        }

        .location-page .label-header {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .location-page .pulse-dot {
            width: 8px;
            height: 8px;
            background: #5625a1;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .location-page .label-title {
            font-weight: 700;
            color: #f1f5f9;
            text-align: left;
        }

        .location-page .label-subtitle {
            font-size: 0.875rem;
            color: #94a3b8;
        }

        .location-page .label-distance {
            margin-top: 8px;
            font-size: 0.75rem;
            color: #94a3b8;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .location-page .distance-line {
            width: 32px;
            height: 2px;
            background: #f1f5f9;
        }

        /* Details Section Styles */
        .location-page .details-section {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .location-page .address-card {
            background: #1e293b;
            border: 1px solid #334155;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
        }

        .location-page .address-content {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .location-page .address-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, #6366f1, #a78bfa);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .location-page .address-icon svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        .location-page .address-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .location-page .address-text {
            color: #94a3b8;
            line-height: 1.7;
        }

        .location-page .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .location-page .info-card {
            background: #1e293b;
            border: 1px solid #334155;
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s;
        }

        .location-page .info-card:hover {
            border-color: rgba(168, 85, 247, 0.5);
        }

        .location-page .info-label {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #94a3b8;
            font-size: 0.875rem;
            margin-bottom: 8px;
        }

        .location-page .info-label svg {
            width: 16px;
            height: 16px;
        }

        .location-page .info-value {
            font-size: 1.125rem;
            font-weight: 700;
            text-align: left;
        }

        /* Button Styles */
        .location-page .button-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .location-page .btn {
            height: 56px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .location-page .btn-primary {
            /* background: linear-gradient(135deg, #a855f7, #9333ea); */
                background: linear-gradient(135deg, #6366f1, #a78bfa);
            color: white;
        }

        .location-page .btn-primary:hover {
            box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
        }

        .location-page .btn-outline {
            background: transparent;
            border: 1px solid #334155;
            color: #f1f5f9;
        }

        .location-page .btn-outline:hover {
            background: rgba(30, 41, 59, 0.5);
        }

        .location-page .btn svg {
            width: 20px;
            height: 20px;
        }

        /* Additional Info Cards Grid */
        .location-page .additional-info {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 32px;
        }

        @media (min-width: 768px) {
            .location-page .additional-info {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1024px) {
            .location-page .additional-info {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .location-page .stat-card {
            background: #1e293b;
            border: 1px solid #334155;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s;
        }

        .location-page .stat-card:hover {
            border-color: rgba(168, 85, 247, 0.5);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .location-page .stat-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-page .stat-icon svg {
            width: 24px;
            height: 24px;
        }

        .location-page .stat-icon-primary {
            background: rgba(168, 85, 247, 0.1);
            color: #a855f7;
        }

       .location-page .stat-icon-accent {
    background: rgb(44 46 78);
    color: #a855f7;
}

        .location-page .stat-icon-yellow {
             background: rgb(44 46 78);
    color: #a855f7;
        }

        .location-page .stat-icon-green {
  background: rgb(44 46 78);
    color: #a855f7;
        }

        .location-page .stat-label {
            font-size: 0.875rem;
            color: #94a3b8;
            margin-bottom: 8px;
        }

        .location-page .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* Responsive Overrides (Media Queries) */
        @media (max-width: 768px) {
            .location-page .header-title h1 {
                font-size: 2rem;
            }
            .location-page .icon {
                width: 24px;
                height: 24px;
            }
        }

 .star-icon {
  fill: #a85919; /* Change the icon color */
  color: #000;
  width: 25px;
  height: 25px;
}

.star-icon path {
  stroke: black; /* If you want a border around the icon */
  stroke-width: 1px;
}

/* pop-up-form */

.form-popup-title {
  color: rgb(255, 255, 255);

}



.popup-form-container {
    /* background-color: white; */
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 570px;
    background: rgb(19 19 30);
    /* padding: 1rem; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgb(0 0 0);
    position: relative;
    box-shadow: 0 0 29px rgb(94 95 171 / 30%);
    backdrop-filter: blur(31px);
    border: 2px solid rgb(255 255 255 / 30%);
}

div#popupForm {
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 25%);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}


#contactForm input {
    padding: 10px;
    border: 1px solid #333b4d;
    border-radius: 5px;
    width: 100%;
    background: #2d3443;
    color: #ffe4e4;
}

h2.form-popup-title {
    margin-top: 34px;
    font-size: 23px;
    margin-bottom: 20px !important;
}
form#contactForm button {
    margin-top: 20px;
    font-weight: 600;
}

.popup-form-container .close-from-btn {
    padding: 0px 12px;
    background: rgba(255, 255, 255, 0.05);
    /* border: wheat; */
    border: 1px solid #ffffff1f;
    border-radius: 5px;
    /* margin-bottom: 10px !important; */
    /* width: 2px; */
    /* height: 28px; */
    font-size: 41px;
    color: #ffffff80;
}

.iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: #2d3443 !important;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

/* Hide dropdown list and flag interaction completely */
.iti__country-list,
.iti__flag-container:after {
    display: none !important;
}

.iti__flag-container {
    pointer-events: none !important;
    cursor: default !important;
}


/* diagram section */

#main-workflow-container {
  max-width: 1400px;
  margin: 0 auto;
}


#main-workflow-container .header {
  text-align: center;
  margin-bottom: 40px;
}

#main-workflow-container .header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#main-workflow-container .header p {
  font-size: 1.1rem;
  color: #a0a0b8;
}

.diagram-container h2.features-title {
    margin-bottom: 50px;
}


#main-workflow-container .button-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.workflow-btn {
    padding: 12px 24px;
    color: #dbd6d6;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.workflow-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #6366f1, #a78bfa);
  color: white;
  border-color: #7972f4;
}

.workflow-btn.active {
  background: linear-gradient(135deg, #6366f1, #a78bfa);
  color: #ffffff;
  border-color: rgb(157 134 248);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}


#main-workflow-container .diagram-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(45px);
    box-shadow: 5px 5px 47px rgb(94 114 228 / 4%), -5px -5px 10px rgb(255 126 95 / 7%), 10px 10px 12px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.5);
}

#main-workflow-container .diagram-container-2 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(45px);
}

.diagram-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  
}

.diagram-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

.diagram-info {
  margin-top: 25px;
  padding: 20px;
  background: rgb(76 76 76 / 10%);
  border-left: 1px solid;
  border-radius: 8px;
  text-align: left;
  border-color: #ffffff17;
}

.diagram-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.diagram-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #d0d0e0;
}


@media (max-width: 768px) {
  #main-workflow-container .header h1 {
    font-size: 2rem;
  }

  #main-workflow-container .button-container {
    gap: 10px;
  }

  .workflow-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  #main-workflow-container .diagram-container {
    padding: 20px;
  }
}

.diagram-wrapper {
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
 
}


.diagram-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 4px;
    background: linear-gradient(45deg, #ff5f5f, /* Coral/Orange */ #a07bfe, /* Peach */ #5e72e4, /* Purple-Blue */ #825ee4 /* Lighter Purple */);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, /* Solid white background for the content area */
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.diagram-info {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background: rgb(255 255 255 / 9%);
    backdrop-filter: blur(-6px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* GRADIENT LEFT BORDER STYLES )*/
.diagram-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(
        to bottom, 
        #5e72e4,  /* Purple-Blue start */
        #ff7e5f,  /* Coral/Orange middle */
        #feb47b   /* Peach end */
    );
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 1;
}
