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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #000;
      color: #fff;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 1.5rem 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid #1a1a1a;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
    }
    

    nav ul {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    nav a {
      color: #888;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    nav a i {
      font-size: 0.85rem;
    }

    nav a:hover {
      color: #fff;
    }

    .menu-btn {
      display: none;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .hero {
      padding: 12rem 0 8rem;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 7vw, 5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -0.03em;
      position: relative;
    }

    .hero p {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      color: #888;
      max-width: 600px;
      margin-bottom: 2rem;
      position: relative;
    }

    .meta {
      display: flex;
      gap: 2rem;
      font-size: 0.95rem;
      color: #666;
      position: relative;
    }

    .meta span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .meta i {
      color: #6366f1;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin: 6rem 0;
    }

    .stat {
      background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
      padding: 3rem 2rem;
      text-align: center;
      border: 1px solid #1a1a1a;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }

    .stat:hover {
      border-color: #6366f1;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    }

    .stat::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, #6366f1, transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .stat:hover::before {
      opacity: 1;
    }

    .stat-num {
      font-size: 3rem;
      font-weight: 800;
      display: block;
      margin-bottom: 0.8rem;
      background: linear-gradient(135deg, #fff 0%, #6366f1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: transform 0.3s;
    }

    .stat:hover .stat-num {
      transform: scale(1.1);
    }

    .stat-label {
      color: #888;
      font-size: 0.95rem;
      font-weight: 500;
    }

    section {
      padding: 6rem 0;
    }

    .section-tag {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: #666;
      margin-bottom: 2rem;
      font-weight: 600;
    }

    .about-text {
      font-size: 1.4rem;
      line-height: 1.7;
      color: #999;
      max-width: 750px;
    }

    .tech-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .tech-col {
      background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
      border: 1px solid #1a1a1a;
      padding: 2.5rem;
      position: relative;
      transition: all 0.3s;
    }

    .tech-col:hover {
      border-color: #333;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .tech-col::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, #6366f1, transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .tech-col:hover::before {
      opacity: 1;
    }

    .tech-col h3 {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      color: #fff;
    }

    .tech-col h3 i {
      font-size: 1.5rem;
      color: #6366f1;
    }

    .tech-list {
      list-style: none;
      display: grid;
      gap: 1rem;
    }

    .tech-list li {
      color: #999;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.6rem 0;
      transition: all 0.2s;
      cursor: default;
    }

    .tech-list li:hover {
      color: #fff;
      transform: translateX(8px);
    }

    .tech-list li i {
      font-size: 1.6rem;
      width: 24px;
      text-align: center;
      transition: transform 0.3s;
    }

    .tech-list li:hover i {
      transform: scale(1.2) rotate(5deg);
    }

    .tech-note {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid #1a1a1a;
      font-size: 0.85rem;
      color: #666;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .tech-note i {
      color: #6366f1;
      font-size: 0.8rem;
    }

    .skills-section {
      margin-top: 4rem;
    }

    .skill-item {
      margin-bottom: 2rem;
    }

    .skill-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.8rem;
    }

    .skill-name {
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
    }

    .skill-level {
      font-size: 0.9rem;
      color: #888;
    }

    .skill-bar {
      width: 100%;
      height: 8px;
      background: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .skill-progress {
      height: 100%;
      background: linear-gradient(90deg, #6366f1, #8b5cf6);
      border-radius: 10px;
      transition: width 1s ease;
      position: relative;
    }

    .skill-progress::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .fade-in {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in:not(.visible) {
      opacity: 0;
      transform: translateY(30px);
    }

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

    .fade-in-delay-1 {
      transition-delay: 0.1s;
    }

    .fade-in-delay-2 {
      transition-delay: 0.2s;
    }

    .fade-in-delay-3 {
      transition-delay: 0.3s;
    }

    .timeline {
      position: relative;
      padding-left: 3rem;
      margin-top: 3rem;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, transparent, #6366f1, transparent);
    }

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

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -3.5rem;
      top: 0;
      width: 12px;
      height: 12px;
      background: #6366f1;
      border-radius: 50%;
      border: 3px solid #000;
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    }

    .timeline-year {
      font-size: 0.85rem;
      color: #6366f1;
      font-weight: 700;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .timeline-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .timeline-desc {
      color: #888;
      line-height: 1.6;
    }

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

    .service-card {
      background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
      border: 1px solid #1a1a1a;
      padding: 2.5rem;
      position: relative;
      transition: all 0.3s;
      text-align: center;
    }

    .service-card:hover {
      border-color: #6366f1;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, #6366f1, transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

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

    .service-icon {
      font-size: 3rem;
      color: #6366f1;
      margin-bottom: 1.5rem;
      display: inline-block;
      transition: transform 0.3s;
    }

    .service-card:hover .service-icon {
      transform: scale(1.1) rotateY(180deg);
    }

    .service-title {
      font-size: 1.3rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
    }

    .service-desc {
      color: #888;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .availability {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.3);
      padding: 0.8rem 1.5rem;
      border-radius: 50px;
      margin-top: 2rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: #6366f1;
    }
i.textb {
  color: #6366f1;
}
p.footer-tagline  {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  font-weight: 500;
}
    .availability::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #0ada4f;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

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

    .contact-content {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-text {
      font-size: 1.2rem;
      color: #888;
      margin-bottom: 2rem;
      line-height: 1.7;
      text-align: left;
    }

    .social-links-large {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .social-links-large a {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: #0a0a0a;
      border: 1px solid #1a1a1a;
      padding: 1rem 1.5rem;
      border-radius: 8px;
      color: #888;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: all 0.3s;
    }

    .social-links-large a:hover {
      border-color: #6366f1;
      color: #fff;
      transform: translateY(-2px);
    }

    .social-links-large a i {
      font-size: 1.3rem;
      color: #6366f1;
    }

    footer {
      border-top: 1px solid #1a1a1a;
      padding: 3rem 0;
      margin-top: 6rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-text {
      color: #666;
      font-size: 0.9rem;
    }

    .social {
      display: flex;
      gap: 1.5rem;
    }

    .social a {
      color: #666;
      font-size: 1.2rem;
      transition: color 0.2s;
    }

    .social a:hover {
      color: #fff;
    }

    .contact-form {
      max-width: 600px;
      margin: 3rem auto 4rem;
      background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
      border: 1px solid #1a1a1a;
      border-radius: 6px;
      padding: 3rem;
    }

    .contact-form label {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 1.5rem;
    }

    .contact-form input[type="email"],
    .contact-form input[type="text"],
    .contact-form textarea {
      display: block;
      width: 100%;
      padding: 0.9rem 1rem;
      margin-top: 0.5rem;
      background: #000;
      border: 1px solid #1a1a1a;
      border-radius: 6px;
      color: #fff;
      font-size: 0.95rem;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s;
    }

    .contact-form input[type="email"]:focus,
    .contact-form input[type="text"]:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #6366f1;
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    .contact-form textarea {
      min-height: 150px;
      resize: vertical;
    }

    .contact-form button {
      width: 100%;
      padding: 1rem;
      background: #6366f1;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 1rem;
    }

    .contact-form button:hover {
      background: #4f46e5;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    }

    .contact-form button:active {
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      header {
        padding: 1rem 0;
      }

      nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
      }

      nav ul.active {
        transform: translateX(0);
      }

      nav a {
        font-size: 1.2rem;
      }

      .menu-btn {
        display: block;
      }

      .hero {
        padding: 8rem 0 5rem;
      }

      .meta {
        flex-direction: column;
        gap: 0.8rem;
      }

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

      .stat {
        padding: 2.5rem 1.5rem;
      }

      .stat-num {
        font-size: 2.5rem;
      }

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

      .tech-col {
        padding: 2rem;
      }

      .tech-col h3 {
        font-size: 1.2rem;
      }

      .tech-list li {
        font-size: 0.95rem;
      }

      .tech-list li i {
        font-size: 1.4rem;
      }

      .timeline {
        padding-left: 2rem;
      }

      .timeline-item {
        padding-left: 1.5rem;
      }

      .timeline-item::before {
        left: -2.3rem;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

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

      .social-links-large {
        flex-direction: column;
      }

      .social-links-large a {
        justify-content: center;
      }

      .contact-form {
        padding: 2rem;
      }

      section {
        padding: 4rem 0;
      }

      .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 1rem;
      }

      .stat-num {
        font-size: 2.2rem;
      }

      .about-text {
        font-size: 1.2rem;
      }
    }