:root {
      --primary: #9B4A9B;
      --primary-dark: #A14DA1;
      --secondary: #222222;
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
      --white: #ffffff;
      --success: #28a745;
      --navy: #1a237e;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      line-height: 1.7;
      overflow-x: hidden;
      font-size: 17px;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-weight: 600;
      line-height: 1.3;
    }
    
    a {
      color: var(--primary);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    a:hover {
      color: var(--primary-dark);
    }
    
    .btn {
      display: inline-block;
      padding: 14px 32px;
      border-radius: 50px;
      text-align: center;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
    }
    
    .btn-primary {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .btn-primary:hover {
      background-color: var(--primary-dark);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(123, 77, 255, 0.3);
    }
    
    .btn-outline {
      background-color: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    /* Trust Bar */
    .trust-bar {
      background: var(--navy);
      color: var(--white);
      padding: 12px 0;
      text-align: center;
      font-size: 14px;
    }
    
    .trust-bar i {
      margin: 0 8px;
      color: var(--success);
    }
    
    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.3s ease;
      background-color: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .logo {
      font-size: 26px;
      font-weight: 700;
      color: var(--secondary);
    }
    
    .logo span {
      color: var(--primary);
    }
    
    .nav-links {
      display: flex;
      list-style: none;
      align-items: center;
    }
    
    .nav-links li {
      margin-left: 30px;
    }
    
    .nav-links a {
      color: var(--secondary);
      font-weight: 500;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary);
    }
    
    .nav-cta {
      margin-left: 15px;
    }
    
    .hamburger {
      display: none;
      cursor: pointer;
      font-size: 24px;
      color: var(--secondary);
    }
    
    /* Hero Section */
    .hero {
      padding: 180px 0 100px;
      background: linear-gradient(135deg, rgba(123, 77, 255, 0.05) 0%, rgba(34, 34, 34, 0.02) 100%);
    }
    
    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
    }
    
    .hero-text {
      flex: 1;
    }
    
    .hero-badge {
      display: inline-block;
      background: rgba(123, 77, 255, 0.1);
      color: var(--primary);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    
    .hero-text h1 {
      font-size: 52px;
      line-height: 1.2;
      margin-bottom: 20px;
      color: var(--secondary);
    }
    
    .hero-text p {
      font-size: 19px;
      margin-bottom: 30px;
      color: var(--gray);
      line-height: 1.6;
    }
    
    .hero-stats {
      display: flex;
      gap: 40px;
      margin: 30px 0;
    }
    
    .stat-item strong {
      display: block;
      font-size: 32px;
      color: var(--primary);
      font-weight: 700;
    }
    
    .stat-item span {
      font-size: 14px;
      color: var(--gray);
    }
    
    .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .hero-image {
      flex: 1;
    }
    
    .hero-image img {
      width: 100%;
      height: auto;
      animation: float 4s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }
    
    /* Client Logos Section */
    .clients {
      padding: 60px 0;
      background: var(--white);
      border-bottom: 1px solid #eee;
    }
    
    .clients h3 {
      text-align: center;
      color: var(--gray);
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .client-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;
    }
    
    .client-item {
      font-size: 18px;
      color: var(--gray);
      font-weight: 600;
      opacity: 0.7;
    }
    
    /* Features Section */
    .features {
      padding: 100px 0;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-header h2 {
      font-size: 40px;
      margin-bottom: 15px;
      color: var(--secondary);
    }
    
    .section-header p {
      font-size: 18px;
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }
    
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }
    
    .feature-card {
      background: var(--white);
      border-radius: 10px;
      padding: 35px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 1px solid #f0f0f0;
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(123, 77, 255, 0.15);
    }
    
    .feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(123, 77, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    
    .feature-icon i {
      font-size: 24px;
      color: var(--primary);
    }
    
    .feature-card h3 {
      font-size: 22px;
      margin-bottom: 15px;
    }
    
    .feature-card p {
      color: var(--gray);
      margin-bottom: 10px;
      line-height: 1.7;
    }
    
    .tech-stack {
      font-size: 14px;
      color: var(--primary);
      margin-top: 15px;
      font-weight: 500;
    }
    
    /* Process Section */
    .process {
      padding: 100px 0;
      background: var(--light);
    }
    
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .process-step {
      background: var(--white);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      position: relative;
    }
    
    .process-number {
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      margin: 0 auto 20px;
    }
    
    .process-step h4 {
      font-size: 18px;
      margin-bottom: 10px;
    }
    
    .process-step p {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.6;
    }
    
    /* Testimonials Section */
    .testimonials {
      padding: 100px 0;
      background: var(--white);
    }
    
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .testimonial-card {
      background: var(--light);
      padding: 35px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .testimonial-stars {
      color: #ffc107;
      margin-bottom: 15px;
      font-size: 18px;
    }
    
    .testimonial-text {
      font-size: 16px;
      line-height: 1.7;
      color: var(--dark);
      margin-bottom: 20px;
      font-style: italic;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #ddd;
    }
    
    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 18px;
      flex-shrink: 0;
    }
    
    .author-info h5 {
      font-size: 16px;
      margin-bottom: 3px;
    }
    
    .author-info p {
      font-size: 13px;
      color: var(--gray);
    }
    
    /* Pricing Section */
    .pricing {
      padding: 100px 0;
      background: linear-gradient(135deg, rgba(123, 77, 255, 0.05) 0%, rgba(34, 34, 34, 0.02) 100%);
    }
    
    .pricing-intro {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px;
      padding: 30px;
      background: var(--white);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .pricing-intro h3 {
      font-size: 24px;
      margin-bottom: 15px;
      color: var(--secondary);
    }
    
    .pricing-intro p {
      color: var(--gray);
      font-size: 17px;
      line-height: 1.7;
    }
    
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .pricing-plan {
      background: var(--white);
      border-radius: 10px;
      padding: 40px 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .pricing-plan:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(123, 77, 255, 0.2);
      border-color: var(--primary);
    }
    
    .plan-name {
      font-size: 24px;
      margin-bottom: 15px;
      color: var(--secondary);
    }
    
    .plan-price {
      font-size: 18px;
      margin-bottom: 20px;
      color: var(--gray);
      line-height: 1.6;
    }
    
    .plan-features {
      list-style: none;
      margin-bottom: 30px;
    }
    
    .plan-features li {
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
      line-height: 1.6;
    }
    
    .plan-features i {
      color: var(--success);
      margin-right: 10px;
      margin-top: 4px;
      font-size: 14px;
    }
    
    /* FAQ Section */
    .faq {
      padding: 100px 0;
      background: var(--white);
    }
    
    .faq-grid {
      max-width: 900px;
      margin: 0 auto;
      margin-top: 50px;
    }
    
    .faq-item {
      background: var(--light);
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden;
    }
    
    .faq-question {
      padding: 25px;
      cursor: pointer;
      font-weight: 600;
      font-size: 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }
    
    .faq-question:hover {
      background: #e8e8e8;
    }
    
    .faq-question i {
      color: var(--primary);
      transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 25px;
      color: var(--gray);
      line-height: 1.7;
    }
    
    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 25px 25px;
    }
    
    /* About Section */
    .about {
      padding: 100px 0;
      background: var(--light);
    }
    
    .about-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
    }
    
    .about-image {
      flex: 1;
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }
    
    .about-text {
      flex: 1;
    }
    
    .about-text h2 {
      font-size: 38px;
      margin-bottom: 20px;
      color: var(--secondary);
    }
    
    .about-text p {
      margin-bottom: 20px;
      color: var(--gray);
      line-height: 1.7;
    }
    
    .about-highlights {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin: 30px 0;
    }
    
    .highlight-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .highlight-item i {
      color: var(--success);
      font-size: 20px;
    }
    
    /* Team Section */
    .team {
      margin-top: 60px;
      text-align: center;
    }
    
    .team-member {
      display: inline-block;
      margin-top: 40px;
    }
    
    .team-image {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 20px;
      border: 4px solid var(--primary);
    }
    
    .team-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .team-name {
      font-size: 20px;
      margin-bottom: 5px;
      color: var(--secondary);
    }
    
    .team-role {
      color: var(--gray);
      font-size: 16px;
    }

    /* ============================================
       CONTACT SECTION — FIXED
       ============================================ */
    .contact {
      padding: 100px 0;
      background: linear-gradient(135deg, rgba(155, 74, 155, 0.95) 0%, rgba(34, 34, 34, 0.95) 100%);
      color: var(--white);
    }
    
    .contact .section-header h2,
    .contact .section-header p {
      color: var(--white);
    }
    
    .contact-form {
      background: var(--white);
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .contact-form h3 {
      color: var(--secondary);
      margin-bottom: 30px;
      font-size: 22px;
    }
    
    .form-group {
      margin-bottom: 20px;
    }

    /* Fix: labels styled consistently */
    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      font-size: 14px;
      color: var(--secondary);
    }

    /* Required asterisk */
    .form-group label .required {
      color: #e53e3e;
      margin-left: 3px;
    }
    
    .form-control {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      transition: border-color 0.3s ease;
      color: var(--dark);
      background: var(--white);
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(155, 74, 155, 0.12);
    }

    .form-control.error {
      border-color: #e53e3e;
    }

    .field-error {
      display: block;
      margin-top: 5px;
      font-size: 13px;
      color: #e53e3e;
    }
    
    .form-row {
      display: flex;
      gap: 15px;
    }
    
    .form-row .form-group {
      flex: 1;
    }
    
    textarea.form-control {
      resize: vertical;
      min-height: 120px;
    }

    /* Form status messages */
    .form-status {
      margin-top: 16px;
      padding: 12px 16px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 500;
      display: none;
    }

    .form-status.success {
      background: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
      display: block;
    }

    .form-status.error {
      background: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
      display: block;
    }
    
    /* Footer */
    .footer {
      padding: 60px 0 30px;
      background-color: var(--secondary);
      color: var(--white);
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .footer-col h4 {
      margin-bottom: 20px;
      font-size: 18px;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--primary);
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
      margin-top: 20px;
      margin-bottom: 20px;
    }
    
    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .hero-content,
      .about-content {
        flex-direction: column;
      }
      
      .hero-text h1 {
        font-size: 40px;
      }
      
      .hero-stats {
        justify-content: center;
      }
      
      .team {
        margin-top: 50px;
      }
      
      .team-member {
        margin-top: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: all 0.3s ease;
      }
      
      .nav-links.active {
        left: 0;
      }
      
      .nav-links li {
        margin: 15px 0;
      }
      
      .hamburger {
        display: block;
      }
      
      .hero-text h1 {
        font-size: 32px;
      }
      
      .section-header h2 {
        font-size: 32px;
      }
      
      .about-highlights {
        grid-template-columns: 1fr;
      }
      
      .about-text .btn {
        margin-bottom: 40px;
      }
      
      .team {
        margin-top: 40px;
      }
      
      .team-member {
        margin-top: 0;
      }

      .form-row {
        flex-direction: column;
        gap: 0;
      }

      .contact-form {
        padding: 28px 20px;
      }
    }

/* ============================================
   SERVICE PAGE ADDITIONS
   ============================================ */
.breadcrumb {
  padding: 140px 0 20px;
  font-size: 14px;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--gray);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  margin: 0 8px;
}

.service-hero {
  padding: 20px 0 60px;
}

.service-hero h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary);
}

.service-hero .lead {
  font-size: 19px;
  color: var(--gray);
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.service-content {
  padding: 20px 0 80px;
}

.service-content h2 {
  font-size: 30px;
  margin: 50px 0 20px;
  color: var(--secondary);
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content h3 {
  font-size: 20px;
  margin: 25px 0 10px;
  color: var(--secondary);
}

.service-content p {
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.8;
  max-width: 850px;
}

.service-content ul {
  margin: 0 0 25px 20px;
  color: var(--gray);
  line-height: 1.9;
}

.service-content ul li {
  margin-bottom: 6px;
}

.service-content ul li strong {
  color: var(--dark);
}

.two-col-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px 40px;
  max-width: 850px;
}

.service-cta-band {
  background: linear-gradient(135deg, rgba(155, 74, 155, 0.08) 0%, rgba(34, 34, 34, 0.03) 100%);
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
}

.service-cta-band h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.service-cta-band p {
  margin: 0 auto 20px;
  max-width: 600px;
}

.related-services {
  padding: 60px 0 100px;
  background: var(--light);
}

.related-services h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--secondary);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.related-card {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.related-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--secondary);
}

.related-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
}

.related-card a {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 30px;
  }
  .breadcrumb {
    padding-top: 110px;
  }
}
