  .footer-link {
      position: relative;
      transition: all 0.3s ease;
    }
  
    .footer-link:hover {
      transform: translateY(-4px);
      text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
      letter-spacing: 0.5px;
    }

    .social-icon {
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    
    .social-icon:active {
      transform: scale(0.85) rotate(15deg);
      box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
    }
    
    .social-icon:hover {
      transform: scale(1.1);
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

    
    .tool-card {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .tool-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Modal animations */
    .modal {
      animation: fadeIn 0.3s ease-out;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Form message styles */
    .form-message {
      padding: 10px;
      margin: 10px 0;
      border-radius: 5px;
      text-align: center;
    }
    .form-error {
      background-color: #f44336;
      color: white;
    }
    .form-success {
      background-color: #4CAF50;
      color: white;
    }
    
     .circle-image-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 24px;
    }
    

  .circle-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: rotateX(10deg) rotateY(10deg);
  transition: transform 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -70px;
}


    .circle-image:hover {
      transform: rotateX(0deg) rotateY(0deg) scale(1.05);
    }


 .form-message-box {
      padding: 12px;
      margin: 10px 0;
      border-radius: 5px;
      text-align: center;
    }
    .form-error-box {
      background-color: #f44336;
      color: white;
    }
    .form-success-box {
      background-color: #4CAF50;
      color: white;
    }
    
    .typing-effect {
  display: inline-block;
  border-right: 2px solid #dc2626;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 2.5s steps(12, end), blink 0.75s step-end infinite;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}

@keyframes typing {
  0% { width: 0 }
  50% { width: 100% }
  100% { width: 0 }
}

@keyframes blink {
  0%, 100% { border-color: transparent }
  50% { border-color: #dc2626 }
}
.nav-menu {
  display: flex;
  flex-direction: column; /* mobile: vertical menu */
  gap: 16px;
  align-items: flex-start;
  padding: 10px;
}

/* Desktop: horizontal */
@media (min-width: 768px) {
  .nav-menu {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.nav-link:hover {
  color: #dc2626;
}

.dropdown {
  position: relative;
  width: 100%; /* full width on mobile */
}

/* Hide dropdown menu by default */
.dropdown-menu {
  display: none;
  position: static; /* static on mobile */
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: none;
  padding-left: 10px;
  margin-top: 6px;
  width: 100%;
}

/* Dropdown items styling */
.dropdown-item {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #dc2626;
}

/* Show dropdown on desktop hover */
@media (min-width: 768px) {
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 160px;
    padding-left: 0;
    margin-top: 0;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Show dropdown if .open class added */
.dropdown.open .dropdown-menu {
  display: block;
}

/* Mobile menu dropdown - hidden by default */
#mobileMenu .dropdown-menu {
  display: none;
  padding-left: 12px;
  margin-top: 4px;
  border-left: 2px solid #dc2626; /* subtle indicator */
}

/* Show dropdown when open */
#mobileMenu .dropdown.open .dropdown-menu {
  display: block;
}

/* Optional: cursor pointer for toggle */
#mobileMenu .dropdown-toggle {
  cursor: pointer;
}
.nav-btn {
    width: 100px;
    height: 40px;
    font-size: 14px;
    border-radius: 6px;
    text-align: center;
    line-height: 40px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .btn-login {
    background-color: #f3f4f6;
    color: #000;
  }
  .btn-login:hover {
    background-color: #e5e7eb;
  }
  .btn-signup {
    background-color: #dc2626;
    color: white;
  }
  .btn-signup:hover {
    background-color: #b91c1c;
  }
 