:root {
    --primary-color: #ffffff;
    --gradient-start: #22c55e;
    --gradient-end: #16a34a;
    --text-color: #333333;
    --text-light: #666666;
    --background-dark: #0a0a0a;
    --background-light: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
  }
  
  :root.dark-mode {
    --primary-color: #121212;
    --text-color: #f5f5f5;
    --text-light: #cccccc;
    --background-dark: #000000;
    --background-light: #1a1a1a;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.3);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  @media (max-width: 768px) {
    .container {
      padding: 0 15px;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 10px;
    }
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  .section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
  }
  
  .gradient-text {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
  }
  
  .btn:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .btn-primary {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
  }
  
  .btn-primary:hover{
    transform: translateY(-3px);
  }
  
  .btn-primary .fa-arrow-right {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0);
    -webkit-backdrop-filter: 10px;
    backdrop-filter: blur(10px);
  }
  
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    max-width: 45px;
    height: auto;
    margin-top: 5px;
    margin-left: 45px;
  }
  
  nav ul {
    display: flex;
    gap: 30px;
  }
  
  nav a {
    font-weight: 500;
    position: relative;
  }
  
  nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    transition: var(--transition);
  }
  
  nav a:hover::after {
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
  }
  
  .dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    margin-left: 15px;
    transition: var(--transition);
    font-size: 1.5rem;
  }
  
  .dark-mode-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .dark-mode-toggle .fa-sun {
    display: block;
    color: var(--text-color);
  }
  
  .dark-mode-toggle .fa-moon {
    display: none;
    color: var(--text-color);
  }
  
  :root.dark-mode .dark-mode-toggle {
    border-color: var(--border-color);
  }
  
  :root.dark-mode .dark-mode-toggle:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  :root.dark-mode .dark-mode-toggle .fa-sun {
    display: none;
  }
  
  :root.dark-mode .dark-mode-toggle .fa-moon {
    display: block;
  }
  
  :root.dark-mode .feature-card,
  :root.dark-mode .pricing-card,
  :root.dark-mode .mobile-menu {
    background-color: #1e1e1e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  :root.dark-mode .pricing-features li {
    border-bottom: 1px solid #333333;
  }
  
  .hero {
    padding: 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  @media (max-width: 768px) {
    .hero {
      padding-top: 60px;
      min-height: 100vh;
      padding-bottom: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      padding-top: 60px;
      min-height: 0;
      padding-bottom: 30px;
    }
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 182, 247, 0.15), transparent 70%);
    z-index: 0;
    animation: pulse 15s ease-in-out infinite alternate;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(133, 96, 206, 0.1), transparent 70%);
    z-index: 0;
    animation: float 18s ease-in-out infinite alternate;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
    padding: 20px 0;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2.5rem;
  }
  
  .image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, rgba(7, 182, 247, 0.1), rgba(133, 96, 206, 0.1));
    border-radius: 30px;
    z-index: 1;
  }
  
  .stats {
    display: flex;
    gap: 40px;
  }
  
  .stat {
    display: flex;
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .stat-label {
    font-size: 1rem;
    color: var(--text-light);
  }
  
  .about {
    padding: 100px 0;
    text-align: center;
    background-color: var(--background-light);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .feature-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: var(--transition);
  }
  
  .feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(110deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.5rem;
  }
  
  .feature-card h3 {
    margin-bottom: 15px;
  }
  
  .pricing {
    padding: 100px 0;
    background-color: var(--background-light);
    text-align: center;
  }
  
  .pricing-cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    overflow-x: visible;
    padding-bottom: 20px;
  }
  
  .pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 15px;
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
  }
  
  .pricing-header {
    margin-bottom: 30px;
  }
  
  .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0 5px;
  }
  
  .pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
  }
  
  .pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .pricing-features li:last-child {
    border-bottom: none;
  }
  
  footer {
    background-color: var(--background-light);
    color: rgb(0, 0, 0);
    padding: 50px 0;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--text-color);
    gap: 50px;
  }
  
  @media (max-width: 1024px) {
    h2 {
      font-size: 2rem;
    }
    
    .hero-text h2 {
      font-size: 2.75rem;
    }
    
    .hero-content {
      gap: 40px;
    }
  
    .hero {
      min-height: 100vh;
    }
  }
  
  @media (max-width: 768px) {
    header {
      padding: 15px 0;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: transparent;
      z-index: 1000;
    }
    
    nav {
      display: none;
    }
    
    .mobile-menu-toggle {
      display: flex;
    }
      .hero {
      padding: 80px 0 20px;
      min-height: 100vh;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
      .hero-content {
      flex-direction: column;
      gap: 30px;
      padding-top: 60px;
      padding-bottom: 30px;
      margin-top: 0;
      width: 100%;
    }
    
    .hero-text {
      text-align: center;
      width: 100%;
      padding: 0 15px;
    }
    
    .hero-text h2 {
      font-size: 2.5rem !important;
      margin-top: 0;
      line-height: 1.2;
    }
    
    .hero-text p {
      font-size: 1.1rem;
      padding: 0 10px;
    }
    
    .hero-buttons {
      justify-content: center;
    }
    
    .stats {
      justify-content: center;
      flex-direction: row !important;
      gap: 25px;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 40px;
      text-align: center;
      align-items: center;
    }
    
    .pricing-cards {
      flex-wrap: wrap;
    }
    
    .pricing-card {
      max-width: 100%;
      width: 100%;
    }
    .code-snippet,
    .code-snippet-1,
    .code-snippet-2,
    .code-snippet-3 {
      display: none;
    }
    
    .hero-3d-container {
      width: 100%;
      max-width: 350px;
      height: auto;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .stat-number {
      font-size: 2.4rem;
    }
    
    .stat-label {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-text h2 {
      font-size: 2rem !important;
    }
    
    .hero-text p {
      font-size: 1rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }
    
    .hero-buttons .btn {
      width: 80%;
      margin: 0 auto;
    }
    
    .stats {
      flex-direction: column !important;
      justify-content: center;
      gap: 20px;
      padding: 0 10px;
    }
    
    .stat {
      align-items: center;
    }
    
    .pricing-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .pricing-card {
      max-width: 100%;
    }
  
    .dark-mode-toggle {
      margin-right: 15px;
    }
      .hero-3d-container {
      width: 100%;
      max-width: 280px;
      height: auto;
      margin: 0 auto;
      overflow: visible;
    }
  }
  
  .mobile-dark-mode {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
  }
  
  .mobile-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .mobile-toggle .fa-sun {
    display: block;
  }
  
  .mobile-toggle .fa-moon {
    display: none;
  }
  
  :root.dark-mode .mobile-toggle .fa-sun {
    display: none;
  }
  
  :root.dark-mode .mobile-toggle .fa-moon {
    display: block;
  }
  
  :root.dark-mode .mobile-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .hero-3d-container {
    position: relative;
    width: 500px;
    height: 420px;
    perspective: 1000px;
  }
  
  .code-snippet, .code-snippet-1 {
    position: absolute;
    right: -40px;
    top: 50px;
    width: 220px;
    background: #e2e2e2;
    border-radius: 12px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--background-dark);
    transform: perspective(800px) rotateX(10deg) rotateY(-10deg);
    box-shadow: 0 15px 35px var(--shadow-color);
    z-index: 3;
    animation: float3D 5s ease-in-out infinite alternate;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .code-snippet-2 {
    position: absolute;
    left: -30px;
    top: 170px;
    width: 220px;
    background: #e2e2e2;
    border-radius: 12px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--background-dark);
    transform: perspective(800px) rotateX(-5deg) rotateY(15deg);
    box-shadow: 0 15px 35px var(--shadow-color);
    z-index: 2;
    animation: float3D 7s ease-in-out infinite alternate-reverse;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .code-snippet-3 {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 260px;
    background: #e9e9e9;
    border-radius: 12px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--background-dark);
    transform: perspective(800px) rotateX(15deg) rotateY(-5deg);
    box-shadow: 0 15px 35px var(--shadow-color);
    z-index: 2;
    animation: float3D 6s ease-in-out 1s infinite alternate;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .code-snippet pre,
  .code-snippet-2 pre,
  .code-snippet-3 pre {
    margin: 0;
    white-space: pre-wrap;
  }
  
  .code-snippet:hover,
  .code-snippet-2:hover {
    box-shadow: 0 20px 40px rgba(7, 182, 247, 0.3);
    z-index: 10;
    cursor: pointer;
  }
  
  .code-snippet-3:hover {
    box-shadow: 0 20px 40px rgba(7, 182, 247, 0.3);
    z-index: 10;
    cursor: pointer;
  }
  
  :root.dark-mode .code-snippet:hover,
  :root.dark-mode .code-snippet-2:hover,
  :root.dark-mode .code-snippet-3:hover {
    box-shadow: 0 20px 40px rgba(77, 214, 72, 0.3);
    z-index: 10;
    cursor: pointer;
  }
  
  :root.dark-mode .code-snippet,
  :root.dark-mode .code-snippet-1,
  :root.dark-mode .code-snippet-2,
  :root.dark-mode .code-snippet-3 {
    background: rgb(27, 27, 27);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    color: rgb(77, 214, 72);
  }
  
  @keyframes float3D {
    0% {
      transform: perspective(800px) rotateX(10deg) rotateY(-10deg) translateY(0);
    }
    100% {
      transform: perspective(800px) rotateX(15deg) rotateY(-5deg) translateY(-15px);
    }
  }
  
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes spin {
    from {
      transform: perspective(800px) rotateX(60deg) rotateY(10deg) rotateZ(0deg);
    }
    to {
      transform: perspective(800px) rotateX(60deg) rotateY(10deg) rotateZ(360deg);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1) rotate(0deg);
      opacity: 0.5;
    }
    100% {
      transform: scale(1.2) rotate(10deg);
      opacity: 0.7;
    }
  }
  
  @media (max-width: 1024px) {
    .hero-3d-container {
      width: 380px;
      height: 380px;
    }
    
    .code-snippet, .code-snippet-1 {
      right: -30px;
      width: 200px;
    }
    
    .code-snippet-2 {
      left: -20px;
      width: 200px;
    }
    
    .code-snippet-3 {
      right: 30px;
      width: 230px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-3d-container {
      width: 100%;
      max-width: 350px;
      height: auto;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .hero-content {
      flex-direction: column;
      gap: 40px;
    }
    
    .code-snippet,
    .code-snippet-1,
    .code-snippet-2,
    .code-snippet-3 {
      display: none;
    }
    
    .pricing-card {
      max-width: 100%;
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .hero-3d-container {
      width: 100%;
      max-width: 280px;
      height: auto;
      margin: 0 auto;
      overflow: visible;
    }
    
    .pricing-card {
      max-width: 100%;
      width: 100%;
    }
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
    cursor: pointer;
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
  }
  
  .portfolio-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
  }
  
  .portfolio-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: white;
    padding: 15px;
    font-weight: 600;
  }
  
  .image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--border-radius);
  }
  
  .close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1001;
  }
  
  .modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 30px;
  }
  
  @media (max-width: 768px) {
    .portfolio-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .modal-content {
      max-width: 95%;
    }
  }
  
  @media (max-width: 480px) {
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .privacy-section {
    padding: 150px 0 80px;
    background-color: var(--background-light);
  }
  
  .privacy-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .profile-picture {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .profile-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
  }
  
  .portfolio-description{
    font-size: 0.7rem;
    color: #ffffff;
    transform: translate(65%, -140%);
    margin-bottom: -1.1rem;
  }
  
  .circular-pfp {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    background-clip: border-box;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: var(--transition);
  }
  
  .circular-pfp:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-color);
  }
  
  .privacy-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
  }
  
  .privacy-card {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
  }
  
  .privacy-card h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  
  .privacy-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
  }
  
  .privacy-card a {
    color: var(--gradient-start);
    text-decoration: underline;
    transition: var(--transition);
  }
  
  .privacy-card a:hover {
    color: var(--gradient-end);
  }
  
  .back-to-home {
    text-align: center;
    margin-top: 40px;
    color: #ffffff;
    text-decoration: none;
  }
  
  .back-to-home .btn .fa-arrow-left {
    margin-left: 8px;
    color: #ffffff;
    text-decoration: none;
  }
  
  footer a {
    color: var(--gradient-start);
    margin-left: 10px;
    transition: var(--transition);
  }
  
  footer a:hover {
    color: var(--gradient-end);
  }
  
  @media (max-width: 768px) {
    .privacy-section {
      padding: 120px 0 60px;
    }
    
    .privacy-card {
      padding: 20px;
    }
    
    .privacy-card h2 {
      font-size: 1.5rem;
    }
    
    .privacy-card p {
      font-size: 1rem;
    }
  }
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
  }
  
  .skills-list {
    padding: 10px 0;
  }
  
  .skills-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
  }
  
  .skills-list li i {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  .privacy-card .feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  
  }
  
  .privacy-card .feature-card p {
    flex-grow: 1;
  }
  
  .privacy-card, .feature-card, .pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover, .pricing-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .scroll-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .scroll-animation.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .scroll-animation:hover {
    transform: scale(1.05) translateY(-5px) !important;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2) !important;
  }
  
  .website-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
  }
  
  .website-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 16/9;
  }
  
  .website-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .website-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transition: opacity 0.3s ease;
  }
  
  .website-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
  }
  
  .website-item:hover img {
    transform: scale(1.05);
  }
  
  .website-overlay h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
  
  @media (max-width: 768px) {
    .website-showcase {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .project-grid {
      grid-template-columns: 1fr;
    }
    
    .privacy-card .feature-card {
      margin-bottom: 20px;
    }
  }
  
  :root.dark-mode .logo img {
    filter: none;
  }