:root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --secondary: #8b5cf6;
      --accent: #10b981;
      --dark: #0f172a;
      --light: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-400: #94a3b8;
      --gray-600: #475569;
      --gray-700: #334155;
      --gray-800: #1e293b;
      --shadow: 0 4px 6px rgba(0,0,0,0.1);
      --radius: 0.5rem;
      --radius-lg: 0.75rem;
      --radius-xl: 1rem;
      --radius-2xl: 1.5rem;
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      color: var(--gray-800);
      background-color: var(--light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    h1, h2, h3, h4 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: var(--dark);
    }

    h1 {
      font-size: clamp(2.25rem, 6vw, 3rem);
    }

    h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    h3 {
      font-size: clamp(1.25rem, 3vw, 1.75rem);
    }

    p {
      margin-bottom: 1rem;
      color: var(--gray-600);
      line-height: 1.8;
    }

    a {
      text-decoration: none;
      color: var(--primary);
      transition: var(--transition);
    }

    a:hover {
      color: var(--primary-dark);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      border-radius: var(--radius);
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      font-size: 1rem;
      gap: 0.5rem;
    }
    .xcimg{ box-shadow: var(--shadow); margin:5px;}
    .btn-primary {
      background-color: var(--primary);
      color: white;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    }

    .btn-primary:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
	  color: white;
    }

    .btn-secondary {
      background-color: white;
      color: var(--primary);
      border: 1px solid var(--primary);
    }

    .btn-secondary:hover {
      background-color: var(--primary);
      color: white;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      transition: var(--transition);
      padding: 1rem 0;
      background-color: white;
      box-shadow: var(--shadow);
	  background: linear-gradient(45deg, #e0f2fe, #fff);
    }
	 

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--dark);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
    }

    .nav-links a {
      color: var(--gray-700);
      font-weight: 800;
	  font-size:1.2rem;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: white;
      box-shadow: var(--shadow);
      padding: 1.5rem 1rem;
      flex-direction: column;
      gap: 1rem;
    }

    .mobile-menu.active {
      display: flex;
    }

    .hero {
      padding: 10rem 0 8rem;
      background-color: var(--gray-100);
      position: relative;
    }

    .hero-content {
      
      margin: 0 auto;
      text-align: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      background-color: rgba(37, 99, 235, 0.1);
      color: var(--primary);
    }

    .hero h1 {
      margin-bottom: 1.5rem;
    }

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .hero-image {
      margin-top: 2rem;
      border-radius: var(--radius-2xl);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .hero-image-content {
      background: linear-gradient(135deg, #e0f2fe, #f0e6ff);
      padding: 3rem 2rem;
      text-align: center;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3rem;
      margin-top: 4rem;
      flex-wrap: wrap;
      background-color: white;
      padding: 1.5rem 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .stat-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(37, 99, 235, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    .stat-value {
      font-weight: 700;
      color: var(--dark);
    }

    .stat-label {
      color: var(--gray-500);
      font-size: 0.875rem;
    }

    .section {
      padding: 8rem 0;
      position: relative;
    }

    .section-header {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 6rem;
    }

    .section-header::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      border-radius: 2px;
      margin: 1.5rem auto 0;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
    }

    .feature-card {
      background-color: white;
      border-radius: var(--radius-xl);
      padding: 2rem;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .feature-icon {
      width: 72px;
      height: 72px;
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.75rem;
      margin-bottom: 1.75rem;
    }

    .feature-icon.color-1 {
      background: linear-gradient(135deg, var(--primary), #3b82f6);
    }

    .feature-icon.color-2 {
      background: linear-gradient(135deg, var(--secondary), #a78bfa);
    }

    .feature-icon.color-3 {
      background: linear-gradient(135deg, var(--accent), rgba(16, 185, 129, 0.7));
    }

    .projects {
      background-color: var(--gray-100);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
    }

    .project-card {
      background-color: white;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .project-card:hover {
      transform: translateY(-8px);
    }

    .project-image {
      height: 220px;
      position: relative;
    }

    .project-image-content {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      color: var(--primary);
      background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    }

    .project-tag {
      position: absolute;
      top: 1rem;
      left: 1rem;
      padding: 0.25rem 0.75rem;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .tag-active {
      background-color: rgba(16, 185, 129, 0.1);
      color: var(--accent);
    }

    .tag-recruiting {
      background-color: rgba(37, 99, 235, 0.1);
      color: var(--primary);
    }

    .tag-planned {
      background-color: rgba(139, 92, 246, 0.1);
      color: var(--secondary);
    }

    .project-content {
      padding: 2rem;
    }

    .project-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.875rem;
      color: var(--gray-500);
    }

    .project-users {
      display: flex;
    }

    .user-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      margin-left: -8px;
      border: 2px solid white;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 0.75rem;
    }

    .user-avatar:first-child {
      margin-left: 0;
    }

    .avatar-1 {
      background-color: var(--primary);
    }

    .avatar-2 {
      background-color: var(--secondary);
    }

    .avatar-3 {
      background-color: var(--accent);
    }

    .avatar-more {
      background-color: var(--gray-300);
      color: var(--gray-700);
    }

    .process-steps {
      display: flex;
      justify-content: space-between;
      position: relative;
    }

    .process-step {
      flex: 1;
      max-width: 250px;
      text-align: center;
      padding: 0 1rem;
    }

    .step-number {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.25rem;
      margin: 0 auto 1.75rem;
      box-shadow: 0 6px 16px rgba(37, 99, 235, 0.2);
    }

    .pricing {
      background-color: var(--gray-100);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .pricing-card {
      background-color: white;
      border-radius: var(--radius-xl);
      padding: 2rem;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .pricing-card:hover {
      transform: translateY(-8px);
    }

    .pricing-card.popular {
      border: 2px solid var(--primary);
      transform: scale(1.05);
      z-index: 2;
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: white;
      padding: 0.375rem 1.75rem;
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 600;
    }

    .pricing-price {
      font-size: 2.75rem;
      font-weight: 700;
      margin-bottom: 2.5rem;
      color: var(--dark);
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }

    .pricing-price span {
      font-size: 1rem;
      font-weight: normal;
      color: var(--gray-500);
    }

    .pricing-features {
      margin-bottom: 3rem;
    }

    .pricing-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }

    .pricing-feature i {
      color: var(--accent);
      margin-top: 0.25rem;
    }

    .pricing-feature.disabled {
      opacity: 0.5;
    }

    .pricing-feature.disabled i {
      color: var(--gray-400);
    }

    .pricing-card .btn {
      width: 100%;
    }

    .faq-item {
      max-width: 1000px;
      margin: 0 auto 1.5rem;
      border-radius: var(--radius);
      background-color: white;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }

    .faq-question {
      width: 100%;
      padding: 1.5rem 1.75rem;
      text-align: left;
      background: none;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 1.125rem;
      cursor: pointer;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--primary);
    }

    .faq-question.active::after {
      content: '✕';
    }

    .faq-answer {
      padding: 0 1.75rem 1.5rem;
      color: var(--gray-600);
      display: none;
      border-top: 1px solid var(--gray-100);
    }

    .faq-answer.active {
      display: block;
    }

    .cta {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      padding: 6rem 0;
      text-align: center;
      border-radius: var(--radius-2xl);
      margin: 6rem auto;
      max-width: 1100px;
      box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    }

    .cta-content {
      max-width: 750px;
      margin: 0 auto;
    }

    .cta h2 {
      color: white;
      margin-bottom: 1.75rem;
    }

    .cta p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.25rem;
      margin-bottom: 3rem;
    }

    .cta .btn {
      background-color: white;
      color: var(--primary);
    }

    footer {
      background-color: var(--dark);
      color: var(--gray-400);
      padding: 8rem 0 4rem;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 4rem;
      margin-bottom: 6rem;
    }

    .footer-logo {
      color: white;
      font-weight: 800;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .footer-logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
    }

    .footer-col h4 {
      color: white;
      margin-bottom: 1.75rem;
      font-size: 1.25rem;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer-links a {
      color: var(--gray-400);
    }

    .footer-links a:hover {
      color: white;
    }

    .footer-social {
      display: flex;
      gap: 1.25rem;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--gray-800);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-400);
    }

    .footer-social a:hover {
      background-color: var(--primary);
      color: white;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 3rem;
      border-top: 1px solid var(--gray-800);
      flex-wrap: wrap;
      gap: 2rem;
    }

    .copyright {
      color: var(--gray-500);
    }

    .footer-bottom-links {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-bottom-links a {
      color: var(--gray-500);
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 992px) {
      .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
      }
      
      .process-step {
        max-width: 300px;
      }
    }

    @media (max-width: 768px) {
      .nav-links a {
        display: none;
      }
       
	  .nav-actions a {
        display: none;
      }
	  .logo img{width:300px;}
	  .hero-image-content img{width:100%;}
	  .hero-buttons a{margin-bottom:20px;}
	  
      .menu-toggle {
        display: block;
      }

      .hero {
        padding: 12rem 0 8rem;
      }

      .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        width: 100%;
      }

      .stat-item {
        width: 100%;
        justify-content: center;
      }

      .section {
        padding: 6rem 0;
      }

      .cta {
        padding: 4rem 0;
        margin: 4rem 1rem;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: clamp(2rem, 5vw, 2.5rem);
      }

      .btn {
        width: 100%;
      }
    }