  :root {
    --primary-color: #00C9FF;
    --secondary-color: #92FE9D;
    --text-color: #FFFFFF;
    --bg-color: #0F172A;
    --accent-color: #FF6B6B;
  }

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

  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
  }

  .container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.2px;
  }

  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 20px 0;
  }

  .header-content {
    position: relative;
    z-index: 1;
  }

  h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s ease infinite;
  }

  @keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .stat-item {
    text-align: center;
    flex: 1 1 150px;
    max-width: 200px;
    transition: transform 0.3s ease;
  }

  .stat-item:hover {
    transform: translateY(-5px);
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
  }

  .stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-color);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 201, 255, 0.3);
  }

  .expert-section {
    padding: 60px 0 100px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    text-align: center;
  }

  .expert-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    margin-bottom: 30px;
  }

  .expert-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .expert-content h2 {
    margin-bottom: 20px;
  }

  .expert-content p {
    margin-bottom: 15px;
  }

.portfolio {
  position: relative;
  padding: 60px 30px; /* Added horizontal padding */
  text-align: center;
  background-color: rgba(15, 23, 42, 0.9);
  max-width: 60%; /* Limit the maximum width */
  height: 100%;
  margin: 0 auto; /* Center the section */
  border-radius: 15px; /* Optional: add rounded corners */
}

.portfolio-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Assets/PORTFOLIO-BACKGROUND.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  border-radius: 15px; /* Match the border-radius of the parent */
}

.portfolio-overlay {
  position: relative;
  z-index: 1;
  padding: 20px; /* Add some inner padding */
}

  .contact {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  }

  .social-links {
    margin-top: 30px;
  }

  .social-links a {
    display: inline-block;
    margin: 0 10px;
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }

  .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
  }

  .company-footer {
    background-color: var(--bg-color);
    padding: 20px 0;
    text-align: center;
  }

  .company-footer h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .company-footer p {
    font-size: 0.8rem;
  }

  @media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .btn { padding: 10px 25px; font-size: 0.8rem; }
    .expert-image img { width: 150px; height: 150px; }
  }

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 20px 0;
  background-color: var(--bg-color); /* Add this line */
}

.header-content {
  position: relative;
  z-index: 2; /* Change this from 1 to 2 */
}

.profile-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-element {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.animated-shape {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 10s infinite;
}

@keyframes morphing {
  0% {
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
      border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
      border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
      border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

.test-design-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-color);
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  z-index: 10;
}

.test-design-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 201, 255, 0.3);
}

@media (max-width: 768px) {
  .test-design-btn {
      top: 10px;
      right: 10px;
      padding: 6px 12px;
      font-size: 0.7rem;
  }
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  color: var(--text-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-5px);
}

.back-to-top {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.back-to-top:hover {
  color: var(--primary-color);
}