:root {
    --primary: #ff4c60;
    --primary-dark: #e84351;
    --secondary: #6c63ff;
    --dark: #0f0f0f;
    --darker: #0a0a0a;
    --light: #f1f1f1;
    --gray: #888;
    --neon-glow: 0 0 10px rgba(255, 76, 96, 0.7), 0 0 20px rgba(255, 76, 96, 0.5);
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--darker);
    color: var(--light);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  /* Particles container */
  #particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
  }
  
  /* Glass morphism effect */
  .glass {
    background: rgba(31, 31, 31, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  }
  
  /* Animated gradient border */
  .gradient-border {
    position: relative;
    border-radius: 20px;
  }
  
  .gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, #ff4c60, #6c63ff, #4cc9f0);
    background-size: 200% 200%;
    border-radius: 22px;
    animation: gradient 3s ease infinite;
    opacity: 0.7;
  }
  
  @keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* Floating animation */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }
  
  .floating {
    animation: float 6s ease-in-out infinite;
  }
  
  /* Hero section */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085') center/cover no-repeat;
    position: relative;
    overflow: hidden;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(28, 28, 28, 0.7));
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
  }
  
  .hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 76, 96, 0.5);
    background: linear-gradient(45deg, #ff4c60, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #dddddd;
    font-weight: 300;
  }
  
  /* CTA button with hover effect */
  .cta-btn {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: var(--primary);
    border: none;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--neon-glow);
  }
  
  .cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 76, 96, 0.8);
  }
  
  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .cta-btn:hover::before {
    opacity: 1;
  }
  
  /* Section styling */
  section {
    padding: 5rem 1rem;
    position: relative;
  }
  
  section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
   
    transform: translateX(-50%);
  }
  
  section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
  }
  
  .services {
    background: var(--dark);
  }
  
  /* Service cards */
  .service-card {
    background-color: rgba(31, 31, 31, 0.7);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 76, 96, 0.3);
  }
  
  .service-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .service-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  /* Pricing cards */
  .pricing-card {
    background-color: rgba(31, 31, 31, 0.7);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 76, 96, 0.3);
  }
  
  .pricing-card h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
  }
  
  .pricing-card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
  }
  
  .pricing-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
  }
  
  /* Portfolio section */
  .portfolio {
    background: var(--darker);
  }
  
  .portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
  }
  
  .portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
  }
  
  .portfolio-item:hover img {
    transform: scale(1.1);
  }
  
  .portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
  }
  
  .portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
  }
  
  /* Floating shapes */
  .shape {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
  }
  
  .shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(30px);
    animation: float 8s ease-in-out infinite;
  }
  
  .shape-2 {
    top: 60%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 10s ease-in-out infinite 2s;
  }
  
  .shape-3 {
    bottom: 10%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: #4cc9f0;
    border-radius: 50%;
    filter: blur(25px);
    animation: float 7s ease-in-out infinite 1s;
  }
  
  /* Footer */
  footer {
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem 1rem;
    text-align: center;
    color: var(--gray);
    position: relative;
  }
  
  footer p {
    margin-bottom: 1rem;
  }
  
  footer a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: var(--primary);
  }
  
  .social-links {
    margin-top: 1.5rem;
  }
  
  .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 0.5rem;
    color: white;
    line-height: 40px;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
  }
  
  /* Scroll indicator */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 1000;
    transition: width 0.1s ease;
  }
  
  /* Back to top button */
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 0 15px rgba(255, 76, 96, 0.5);
  }
  
  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
  }
  
  /* Animated cursor */
  .cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 76, 96, 0.5);
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
  }
  
  .cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 76, 96, 0.5);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 3rem;
    }
    
    .hero p {
      font-size: 1.3rem;
    }
    
    section {
      padding: 4rem 1rem;
    }
    
    section h2 {
      font-size: 2.2rem;
    }
    
    .service-card, .pricing-card {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero p {
      font-size: 1.1rem;
    }
    
    section h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    
    .price {
      font-size: 2rem;
    }
    
    .portfolio-item img {
      height: 200px;
    }
  }
  
  @media (max-width: 576px) {
    .hero h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    section {
      padding: 3rem 1rem;
    }
    
    section h2 {
      font-size: 1.8rem;
    }
    
    .cta-btn {
      padding: 0.8rem 1.8rem;
      font-size: 1rem;
    }
    
    .service-card i {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    
    .price {
      font-size: 1.8rem;
      margin: 1rem 0;
    }
    
    .shape-1, .shape-2, .shape-3 {
      display: none;
    }
    
    .back-to-top {
      width: 40px;
      height: 40px;
      font-size: 1rem;
      bottom: 15px;
      right: 15px;
    }
  }
  
  /* 3D card effect */
  .card-3d {
    transform-style: preserve-3d;
    transition: all 0.5s ease;
  }
  
  .card-3d:hover {
    transform: rotateY(10deg) rotateX(5deg);
  }
  
  /* Glitch effect */
  .glitch {
    position: relative;
  }
  
  .glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  
  .glitch::before {
    color: #0ff;
    z-index: -1;
    animation: glitch-effect 3s infinite;
  }
  
  .glitch::after {
    color: #f0f;
    z-index: -2;
    animation: glitch-effect 2s infinite reverse;
  }
  
  @keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
  }
  
  /* Bounce animation for scroll down arrow */
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
  }

  /* Reset base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* Navbar container */
.navbar {
position: fixed;
top: 0;
width: 100%;
height: 70px;
background-color: #111;
color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 40px;
z-index: 1000;
box-shadow: 0 2px 8px rgba(0,0,0,0.6);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo */
.logo {
font-size: 1.6rem;
font-weight: bold;
background: linear-gradient(90deg, #00c3ff, #7c5fff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* Nav links */
.nav-links {
list-style: none;
display: flex;
gap: 30px;
}

.nav-links li a {
text-decoration: none;
color: #fff;
font-size: 1rem;
position: relative;
transition: color 0.3s ease;
}

.nav-links li a::after {
content: '';
position: absolute;
width: 0%;
height: 2px;
background: #00c3ff;
left: 0;
bottom: -5px;
transition: 0.3s;
}

.nav-links li a:hover::after {
width: 100%;
}

.nav-links li a:hover {
color: #00c3ff;
}

/* Burger menu per mobile */
.burger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 6px;
}

.burger div {
width: 25px;
height: 3px;
background-color: #fff;
transition: all 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
.nav-links {
  position: absolute;
  top: 70px;
  right: 0;
  height: calc(100vh - 70px);
  width: 200px;
  background-color: #111;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.nav-links.active {
  transform: translateX(0%);
}

.burger {
  display: flex;
}
}
