:where([class^="ri-"])::before { content: "\f3c2"; }
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #1A1B2E;
  color: white;
}
.gradient-text {
  background: linear-gradient(to right, #7FDBDA, #A4E666);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-bg {
  background: linear-gradient(to right, #7FDBDA, #A4E666);
}
.active-nav::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #7FDBDA, #A4E666);
  border-radius: 3px;
}
.service-card {
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
}
.skill-bar {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.skill-progress {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(to right, #7FDBDA, #A4E666);
  width: 0;
  transition: width 1.5s ease-in-out;
}
.floating-triangle {
  animation: float 6s ease-in-out infinite;
}
.dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* New styles for logo and navigation */
nav, footer {
  background-color: rgba(10, 12, 28, 0.98);
  backdrop-filter: blur(10px);
}
nav {
  border-bottom: 1px solid rgba(127, 219, 218, 0.2);
}
footer {
  border-top: 1px solid rgba(127, 219, 218, 0.2);
}
.logo-container {
  background: white;
  padding: 4px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.logo-container:hover {
  transform: scale(1.05);
}
.logo-container img {
  height: 40px;
  width: auto;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
.triangle-1 {
  animation-delay: 0s;
}
.triangle-2 {
  animation-delay: 1s;
}
.triangle-3 {
  animation-delay: 2s;
}
.triangle-4 {
  animation-delay: 3s;
}
.triangle-5 {
  animation-delay: 4s;
}
.triangle-6 {
  animation-delay: 5s;
}
input, textarea {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}
input:focus, textarea:focus {
  border-color: #7FDBDA;
  outline: none;
}
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-label {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  pointer-events: none;
}
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: -0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: #7FDBDA;
  background-color: #1A1B2E;
  padding: 0 0.25rem;
}