:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary: #1E293B;
    --dark: #0F172A;
    --darker: #0B1120;
    --light: #f8fafc;
    --gray: #e2e8f0;
    --success: #10b981;
    --text: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --gradient-text: linear-gradient(90deg, #7C3AED, #8B5CF6, #A78BFA);
    --gradient-bg: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    --accent: #8B5CF6;
    --accent-light: #A78BFA;
    --accent-dark: #7C3AED;
    --accent-gradient: linear-gradient(135deg, #7C3AED, #8B5CF6, #A78BFA);
    --accent-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
    --gold: #8B5CF6;
    --gold-light: #A78BFA;
    --gold-dark: #7C3AED;
    --gold-gradient: linear-gradient(135deg, #7C3AED, #8B5CF6, #A78BFA);
    --gold-shadow: 0 4px 10px rgba(139, 92, 246, 0.5);
    --gold-sparkle: radial-gradient(circle at 50% 50%, #C4B5FD 0%, transparent 25%);
    --dark-blue: #0F172A;
    --accent-color: #A78BFA;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--dark);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header & Navigation */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 17, 32, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    backdrop-filter: blur(5px);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  
  .logo-text {
    color: var(--text);
    font-weight: 700;
  }
  
  .favicon-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--text);
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
  }
  
  /* Overlay for mobile menu */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(to bottom, rgba(11, 17, 32, 0.95) 0%, rgba(11, 17, 32, 0.8) 40%, rgba(11, 17, 32, 0.6) 100%);
    z-index: 999;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  /* Hero Section */
  .hero {
    padding: 160px 0 100px;
    background: var(--gradient-bg);
    text-align: center;
  }
  
  .hero-header {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  
  .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .header-text {
    text-align: center;
    flex: 1;
  }
  
  /* Animert element */
  .animated-element {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .pulse-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
  }
  
  .icon-container {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    animation: float 4s ease-in-out infinite;
    transform: rotate(180deg);
  }
  
  .icon-container i {
    color: white;
    font-size: 1.5rem;
    animation: glow 3s ease-in-out infinite;
    transform: scaleY(1.3);
    transform-origin: bottom;
  }
  
  .funnel-drop {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    bottom: -4px;
    opacity: 0;
    animation: drop-animation 3s ease-in-out infinite;
  }
  
  @keyframes drop-animation {
    0%, 30% { opacity: 0; transform: translateY(-5px) scale(0.5); }
    40% { opacity: 1; transform: translateY(0) scale(1); }
    50% { opacity: 1; transform: translateY(10px) scale(0.8); }
    60% { opacity: 0; transform: translateY(20px) scale(0.5); }
    100% { opacity: 0; transform: translateY(20px) scale(0.5); }
  }
  
  .particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    z-index: 1;
  }
  
  .p1 {
    top: 0;
    left: 20%;
    animation: particle-to-center 3s ease-in-out infinite;
  }
  
  .p2 {
    top: 10%;
    left: 70%;
    animation: particle-to-center 2.5s ease-in-out infinite 0.3s;
  }
  
  .p3 {
    top: 20%;
    right: 20%;
    animation: particle-to-center 3.2s ease-in-out infinite 0.7s;
  }
  
  .p4 {
    top: 15%;
    left: 30%;
    animation: particle-to-center 2.8s ease-in-out infinite 1s;
  }
  
  .p5 {
    top: 5%;
    left: 50%;
    animation: particle-to-center 3.5s ease-in-out infinite 1.5s;
  }
  
  .p6 {
    top: 25%;
    right: 30%;
    animation: particle-to-center 3s ease-in-out infinite 2s;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(180deg); }
    50% { transform: translateY(-5px) rotate(180deg); }
  }
  
  @keyframes glow {
    0%, 100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 20px rgba(139, 92, 246, 0.7); }
  }
  
  @keyframes particle-to-center {
    0% { opacity: 0; transform: scale(0.3); }
    40% { opacity: 0.8; transform: scale(1); }
    80% { opacity: 0.8; transform: scale(0.8) translate(0, 20px); }
    100% { opacity: 0; transform: scale(0.3) translate(0, 40px); }
  }
  
  /* Hero header styles */
  .hero-header h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
    white-space: nowrap;
    position: relative;
    display: inline-block;
  }
  
  .hero-header h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
  }
  
  .hero-header h2::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7) 20%, rgba(255, 255, 255, 0.7) 80%, transparent);
    border-radius: 2px;
    transform: translateX(-50%);
    opacity: 0.6;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text);
    line-height: 1.2;
  }
  
  .subtitle {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 40px;
    font-weight: 400;
  }
  
  .hero-content {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .hero-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
  }
  
  .hero-card p {
    font-size: 1.1rem;
    color: var(--text);
  }
  
  .cta-container {
    display: flex;
    justify-content: center;
    margin-top: 0;
  }
  
  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient-text);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
  }
  
  .cta-button:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 92, 246, 0.4);
  }
  
  /* Services Section */
  .services {
    padding: 100px 0;
    background-color: var(--darker);
  }
  
  .services h2,
  .about h2,
  .contact h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text);
    position: relative;
  }
  
  .services h2::after,
  .about h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--text);
  }
  
  .contact h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--text);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
  }
  
  .service-card:hover .service-icon {
    transform: translateY(-5px);
  }
  
  .service-icon {
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .service-icon i {
    font-size: 3.5rem;
    color: white;
    background: var(--primary);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-dark);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .service-icon i::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.3) 0%, transparent 25%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .service-card:hover .service-icon i::after {
    opacity: 0.6;
    animation: sparkle 2s infinite;
  }
  
  @keyframes sparkle {
    0% { transform: rotate(0deg); opacity: 0; }
    25% { opacity: 0.5; }
    50% { opacity: 0.2; }
    75% { opacity: 0.5; }
    100% { transform: rotate(360deg); opacity: 0; }
  }
  
  .service-content {
    text-align: center;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .service-card p {
    color: var(--text);
  }
  
  /* About Section */
  .about {
    padding: 100px 0;
    background-color: var(--dark);
  }
  
  .profile-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .profile-silhouette {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  
  .profile-silhouette i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.5);
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  .about-content {
    display: flex;
    gap: 30px;
  }
  
  .about-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
  }
  
  .about-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
  }
  
  .experience-list,
  .philosophy-list {
    list-style: none;
  }
  
  .experience-list li,
  .philosophy-list li {
    display: flex;
    margin-bottom: 15px;
  }
  
  .experience-list li i,
  .philosophy-list li i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.5rem;
    margin-top: 10px;
    margin-right: 15px;
  }
  
  /* Contact Section */
  .contact {
    padding: 100px 0;
    background-color: var(--darker);
  }
  
  .contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: var(--text);
  }
  
  .contact-card {
    max-width: 500px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .linkedin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient-text);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
  }
  
  .linkedin-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 92, 246, 0.6);
  }
  
  .linkedin-button i {
    font-size: 1.5rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .contact-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .contact-item p {
    font-size: 1.1rem;
    color: var(--text);
  }
  
  .services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: var(--text);
  }
  
  /* Chat Bubble Animation */
  .heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    position: relative;
  }
  
  .heading-container h2 {
    margin-bottom: 0;
    position: relative;
  }
  
  .heading-container h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--text);
  }
  
  .chat-bubble {
    position: relative;
    background-color: var(--primary);
    border-radius: 20px;
    padding: 10px 15px;
    width: 70px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
    animation: pulse-bubble 2s infinite;
  }
  
  .chat-bubble:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 15px;
    height: 15px;
    background-color: var(--primary);
    border-bottom-right-radius: 15px;
    transform: translate(-10px, 5px) rotate(45deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  @keyframes pulse-bubble {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  .typing-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100%;
  }
  
  .typing-indicator span {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    animation: typing 1.5s infinite ease-in-out;
  }
  
  .typing-indicator span:nth-child(1) {
    animation-delay: 0s;
  }
  
  .typing-indicator span:nth-child(2) {
    animation-delay: 0.3s;
  }
  
  .typing-indicator span:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  @keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-5px); opacity: 1; }
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .hero-content,
    .about-content {
      flex-direction: column;
    }
  
    .services-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: var(--darker);
      flex-direction: column;
      padding: 20px;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
      gap: 15px;
      z-index: 1000;
      align-items: center;
      text-align: center;
    }
  
    .nav-links a {
      font-size: 1.2rem;
      padding: 12px 20px;
      width: 80%;
      border-radius: var(--border-radius);
      transition: background-color 0.3s ease, color 0.3s ease;
      background-color: var(--dark);
      color: var(--text);
    }
    
    .nav-links a:hover,
    .nav-links a.active {
      background-color: var(--primary);
      color: white;
    }
    
    .nav-links a::after {
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }

    .mobile-menu-overlay.active {
      display: block;
      opacity: 1;
      pointer-events: auto;
    }
  
    .menu-toggle {
      display: block;
      cursor: pointer;
      z-index: 1001;
      padding: 10px;
    }
    
    .menu-toggle i {
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }
    
    .menu-toggle:hover i {
      transform: scale(1.1);
    }
  
    .header-content {
      flex-direction: column;
      gap: 8px;
    }
  
    .header-text {
      text-align: left;
    }
  
    .hero-header h1 {
      font-size: 2.5rem;
    }
  
    .hero-header h2 {
      font-size: 1.6rem;
    }
  
    .hero-header h2::after {
      height: 1.5px;
      bottom: -3px;
      width: 70%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7) 20%, rgba(255, 255, 255, 0.7) 80%, transparent);
    }
  
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .services h2,
    .about h2,
    .contact h2 {
      font-size: 1.8rem;
    }
  
    .animated-element {
      width: 60px;
      height: 60px;
    }
    
    .pulse-circle {
      width: 100%;
      height: 100%;
    }
    
    .icon-container {
      width: 40px;
      height: 40px;
    }
    
    .icon-container i {
      font-size: 1.5rem;
    }
    
    .particle {
      width: 4px;
      height: 4px;
    }
    
    .p1, .p2, .p3, .p4, .p5, .p6 {
      animation-duration: 2s;
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      padding: 130px 0 70px;
    }
  
    .header-content {
      flex-direction: column;
      gap: 5px;
    }
  
    .header-text {
      text-align: center;
    }
  
    .hero-header h1 {
      font-size: 2rem;
    }
  
    .hero-header h2 {
      font-size: 1.4rem;
    }
  
    .hero-header h2::after {
      height: 1px;
      bottom: -2px;
      width: 60%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7) 20%, rgba(255, 255, 255, 0.7) 80%, transparent);
    }
  
    .services,
    .about,
    .contact {
      padding: 70px 0;
    }
  
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .hero-card,
    .service-card,
    .about-card,
    .contact-card {
      padding: 20px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .heading-container {
      flex-direction: row;
      justify-content: center;
      gap: 15px;
      position: relative;
    }
    
    .chat-bubble {
      margin-top: 0;
      position: relative;
      top: 0;
    }
  
    .animated-element {
      width: 60px;
      height: 60px;
    }
  }
  
  .custom-wand-icon {
    width: 60px;
    height: 60px;
    color: white;
    background: var(--primary-dark);
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .custom-wand-icon::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.3) 0%, transparent 25%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .service-card:hover .custom-wand-icon::after {
    opacity: 0.6;
    animation: sparkle 2s infinite;
  }
  
  .coming-soon {
    margin: 30px 0 50px;
  }
  
  .coming-soon h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 3px;
  }
  
  .coming-soon h2::before,
  .coming-soon h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--gradient-text);
  }
  
  .coming-soon h2::before {
    left: -60px;
  }
  
  .coming-soon h2::after {
    right: -60px;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  /* Accessibility Improvements */
  a:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    text-decoration: underline;
  }
  
  .contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-item a:hover,
  .contact-item a:focus {
    color: var(--primary);
    text-decoration: underline;
  }
  
  /* Skip to content link for keyboard users */
  .skip-to-content {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-decoration: none;
  }
  
  .skip-to-content:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    overflow: visible;
  }
  
  /* Redusert bevegelse for brukere som foretrekker mindre animasjoner */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    
    .pulse-circle,
    .icon-container,
    .funnel-drop,
    .particle,
    .star {
      animation: none !important;
    }
    
    html {
      scroll-behavior: auto;
    }
  }
  
  /* Høyere kontrast for tekst */
  .service-card p,
  .about-card p,
  .experience-list p,
  .philosophy-list p {
    color: var(--text-light);
  }
  
  /* Forbedret fokus for navigasjonslenker */
  .nav-links a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }
  
  /* Forbedret fokus for knapper */
  .cta-button:focus,
  .linkedin-button:focus {
    outline: 3px solid white;
    outline-offset: 3px;
  }
  
  /* Forbedret hover-tilstand for bedre visuell tilbakemelding */
  .service-card:hover,
  .about-card:hover {
    border-color: var(--primary);
  }
  
  /* Forbedret kontrast for ikoner */
  .service-icon i,
  .contact-item i {
    color: white;
  }
  
  