
    /* =========================== */
    /* 1. RESET & BASE             */
    /* =========================== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-purple: #7825CF;
      --dark-bg: #0a0a0a;
      --dark-card: #1a1a1a;
      --dark-secondary: #252525;
      --purple-glow: rgba(120, 37, 207, 0.3);
      --purple-light: #9d5ce8;
      --purple-dark: #5a1a9e;
      --text-primary: #ffffff;
      --text-secondary: #b8b8b8;
      --text-muted: #808080;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      color: var(--text-primary);
      background: var(--dark-bg);
      overflow-x: hidden;
    }
    html, body {
  width: 100%;
  overflow-x: hidden;
}

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* =========================== */
    /* 2. HERO SECTION             */
    /* =========================== */
    .hero {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      animation: glow-pulse 4s ease-in-out infinite;
    }

    @keyframes glow-pulse {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.1); }
    }

    .hero-content {
      flex: 1;
      z-index: 2;
      max-width: 600px;
      margin-left: 5%;
      animation: fadeInLeft 1s ease-out;
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hero-title {
      font-size: 40px;
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      background: linear-gradient(135deg, #ffffff 0%, var(--primary-purple) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero h3 {
      font-size: 1.5rem;
      color: var(--text-secondary);
      margin-bottom: 1rem;
      font-weight: 500;
    }

    .hero-tagline {
      font-size: 1.2rem;
      margin-bottom: 2.5rem;
      color: var(--text-secondary);
      max-width: 500px;
    }

    .cta-button {
      background: linear-gradient(135deg, var(--primary-purple), var(--purple-dark));
      color: white;
      border: none;
      padding: 16px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.4s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 8px 30px var(--purple-glow);
      position: relative;
      overflow: hidden;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.6s;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px var(--purple-glow);
    }

    .hero-visual {
      flex: 1;
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-image {
      max-width: 90%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(120, 37, 207, 0.4);
      animation: float 6s ease-in-out infinite;
      z-index: 2;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    .floating-elements {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .float-1, .float-2, .float-3 {
      position: absolute;
      background: var(--purple-glow);
      border-radius: 50%;
      filter: blur(40px);
      animation: float-element 8s ease-in-out infinite;
    }

    .float-1 {
      width: 200px;
      height: 200px;
      top: 20%;
      right: 20%;
      animation-delay: 0s;
    }

    .float-2 {
      width: 150px;
      height: 150px;
      top: 60%;
      right: 40%;
      animation-delay: 2s;
    }

    .float-3 {
      width: 100px;
      height: 100px;
      top: 80%;
      right: 10%;
      animation-delay: 4s;
    }

    @keyframes float-element {
      0%, 100% { transform: translate(0, 0); }
      33% { transform: translate(30px, -30px); }
      66% { transform: translate(-20px, 20px); }
    }

    /* =========================== */
    /* 3. SECTION STYLES           */
    /* =========================== */
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      text-align: center;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #ffffff 0%, var(--primary-purple) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-titlee {
      color: var(--text-primary);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      text-align: center;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.2rem;
      text-align: center;
      margin-bottom: 3rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* =========================== */
    /* 4. SERVICES SECTION         */
    /* =========================== */
    .services {
      padding: 100px 0;
      background: var(--dark-bg);
      position: relative;
    }

    .services::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
      top: 50%;
      left: -150px;
      animation: glow-pulse 5s ease-in-out infinite;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      position: relative;
      z-index: 1;
    }

    .service-card {
      background: var(--dark-card);
      padding: 2.5rem;
      border-radius: 20px;
      text-align: center;
      border: 1px solid rgba(120, 37, 207, 0.2);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
      transition: left 0.6s ease;
    }

    .service-card:hover::before {
      left: 100%;
    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary-purple);
      box-shadow: 0 20px 60px var(--purple-glow);
    }

    .service-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(15deg, #7825CF, #ae7dee );
      box-shadow: 0 10px 30px var(--purple-glow);
    }

    .service-icon i {
      font-size: 2.5rem;
      color: white;
    }

    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }

    .service-card p {
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* =========================== */
    /* 5. WEB DESIGN SECTION       */
    /* =========================== */
    .web-design {
      padding: 100px 0;
      background: var(--dark-secondary);
    }

    .design-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .design-text h2 {
      font-size: 2.5rem;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
    }

    .design-text p {
      font-size: 1.2rem;
      color: var(--text-secondary);
      margin-bottom: 2rem;
    }

    .design-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--dark-card);
      border-radius: 15px;
      border: 1px solid rgba(120, 37, 207, 0.2);
      transition: all 0.3s ease;
    }

    .feature-item:hover {
      border-color: var(--primary-purple);
      transform: translateX(10px);
      box-shadow: 0 5px 20px var(--purple-glow);
    }

    .feature-icon {
      font-size: 2rem;
    }

    .design-mockup {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--purple-dark), var(--primary-purple));
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 60px var(--purple-glow);
    }

    .design-mockup img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    /* =========================== */
    /* 6. WEB DEVELOPMENT SECTION  */
    /* =========================== */
    .web-development {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a2e 50%, var(--dark-bg) 100%);
      position: relative;
    }

    .dev-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .dev-card {
      background: var(--dark-card);
      padding: 2.5rem;
      border-radius: 20px;
      border: 1px solid rgba(120, 37, 207, 0.3);
      backdrop-filter: blur(10px);
      transition: all 0.4s ease;
    }

    .dev-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary-purple);
      box-shadow: 0 20px 60px var(--purple-glow);
    }

    .dev-card h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--primary-purple);
    }

    .dev-card p {
      margin-bottom: 1.5rem;
      color: var(--text-secondary);
    }

    .tech-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .tech-stack span {
      background:linear-gradient(135deg, #7825CF, #a37ad9);
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.9rem;
      border: 1px solid rgba(120, 37, 207, 0.4);
      transition: all 0.3s ease;
    }

    .tech-stack span:hover {
      background: var(--primary-purple);
      color: white;
      transform: translateY(-2px);
    }

    /* =========================== */
    /* 7. SEO SECTION              */
    /* =========================== */
    .seo-section {
      padding: 100px 0;
      background: var(--dark-secondary);
    }

    .seo-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .seo-text h2 {
      font-size: 2.5rem;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
    }

    .seo-text p {
      font-size: 1.2rem;
      color: var(--text-secondary);
      margin-bottom: 2rem;
    }

    .seo-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
    }

    .stat-item {
      text-align: center;
      padding: 1.5rem;
      background: var(--dark-card);
      border-radius: 15px;
      border: 1px solid rgba(120, 37, 207, 0.2);
      transition: all 0.3s ease;
    }

    .stat-item:hover {
      border-color: var(--primary-purple);
      transform: scale(1.05);
      box-shadow: 0 10px 30px var(--purple-glow);
    }

    .stat-number {
      display: block;
      font-size: 2.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--purple-light), var(--primary-purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .seo-features {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .seo-feature {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 1.5rem;
      background: var(--dark-card);
      border-radius: 15px;
      border: 1px solid rgba(120, 37, 207, 0.2);
      transition: all 0.4s ease;
    }

    .seo-feature:hover {
      transform: translateX(10px);
      border-color: var(--primary-purple);
      box-shadow: 0 10px 30px var(--purple-glow);
    }

    .seo-icon {
      font-size: 2rem;
      color: var(--primary-purple);
    }

    .seo-feature h4 {
      color: var(--text-primary);
      margin-bottom: 0.5rem;
    }

    .seo-feature p {
      color: var(--text-secondary);
    }

    /* =========================== */
    /* 8. WHY CHOOSE US            */
    /* =========================== */
    .why-choose {
      background: var(--dark-bg);
      padding: 100px 0;
      position: relative;
    }

    .why-choose::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
      bottom: -200px;
      right: -200px;
      animation: glow-pulse 6s ease-in-out infinite;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      position: relative;
      z-index: 1;
    }

    .choose-card {
      background: var(--dark-card);
      border-radius: 15px;
      padding: 2rem;
      text-align: center;
      border: 1px solid rgba(120, 37, 207, 0.2);
      transition: all 0.4s ease;
    }

    .choose-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary-purple);
      box-shadow: 0 20px 60px var(--purple-glow);
    }

    .choose-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
      display: inline-block;
    }

    .choose-card h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      font-weight: 600;
      color: var(--text-primary);
    }

    .choose-card p {
      font-size: 1rem;
      line-height: 1.5;
      color: var(--text-secondary);
    }

    /* =========================== */
    /* 9. POWERFUL WEBSITE         */
    /* =========================== */
    .powerful-website {
      background: linear-gradient(135deg, #1a0a2e 0%, var(--dark-bg) 100%);
      padding: 100px 0;
    }

    .intro-text {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 50px;
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-secondary);
    }

    .website-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .website-card {
      background: var(--dark-card);
      border-radius: 15px;
      padding: 2rem;
      text-align: left;
      border: 1px solid rgba(120, 37, 207, 0.2);
      transition: all 0.4s ease;
    }

    .website-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary-purple);
      box-shadow: 0 20px 60px var(--purple-glow);
    }

    .website-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
      display: inline-block;
    }

    .website-card h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      font-weight: 600;
      color: var(--text-primary);
    }

    .website-card p,
    .website-card ul {
      font-size: 1rem;
      line-height: 1.5;
      color: var(--text-secondary);
    }

    .website-card ul {
      list-style: none;
      margin-top: 10px;
      padding-left: 0;
    }

    .website-card ul li {
      padding-left: 1.5rem;
      position: relative;
      margin-bottom: 0.5rem;
    }

    .website-card ul li::before {
      content: '▹';
      position: absolute;
      left: 0;
      color: var(--primary-purple);
      font-size: 1.2rem;
    }

    .website-card .fact {
      font-style: italic;
      color: var(--purple-light);
      margin-top: 10px;
    }

    /* =========================== */
    /* 10. FINAL CTA               */
    /* =========================== */
    .final-cta {
      padding: 100px 0;
      background: linear-gradient(135deg, #7825CF, #c39cf7);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      top: -250px;
      left: -250px;
      animation: glow-pulse 8s ease-in-out infinite;
    }

    .cta-content {
      position: relative;
      z-index: 1;
    }

    .cta-content h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1.5rem;
    }

    .cta-content p {
      font-size: 1.2rem;
      margin-bottom: 2.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-button.primary {
      background: white;
      color: var(--primary-purple);
    }

    .cta-button.secondary {
      background: transparent;
      border: 2px solid white;
      color: white;
    }

    .cta-button.secondary:hover {
      background: white;
      color: var(--primary-purple);
    }

    /* =========================== */
    /* 11. RESPONSIVE              */
    /* =========================== */
    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
      }

      .hero-content {
        margin-left: 0;
        margin-bottom: 2rem;
      }

      .hero-visual {
        height: 400px;
        width: 100%;
      }

      .hero-image {
        max-width: 100%;
      }

      .design-content,
      .seo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .services-grid,
      .dev-grid,
      .choose-grid,
      .website-grid {
        grid-template-columns: 1fr;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .cta-button {
        width: 100%;
        max-width: 300px;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 2rem;
      }

      .service-card,
      .dev-card,
      .choose-card,
      .website-card {
        padding: 1.5rem;
      }
    }

    /* Scroll animations */
    .fade-in {
      opacity: 0;
      animation: fadeIn 1s ease-out forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
