:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --dark: #212529;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    min-width: 320px;
    padding-top: 56px;
}

img {
    max-width: 100%;
    height: auto;
}

.top-menu li a::after {
    content: '';
    display: block;
    width: 100%;
    background-color: var(--secondary);
    height: 1px;
    transition: all .3s;
    transform: scale(0);
}

.top-menu li a:hover:after {
    transform: scale(1);
}

/*.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0b5ed7 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}*/


.list-group-item {
    font-size: 20px;
    margin-right: auto; 
    margin-left: -15px; 
}

.row.align-items-start {
    align-items: flex-start;
}

.card.h-100 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-body {
    flex-grow: 1;
}

.tech-card {
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card {
    transition: transform 0.3s;
    border: none;
}

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

.btn {
    transition: all 0.3s;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}


.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
  }
  
  .hero-image-container {
    width: 45%;
    height: 100%;
    position: absolute;
    right: 5%;
    top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .hero-image-container img {
    max-height: 90%;
    width: auto;
    object-fit: contain;
    object-position: right center;
  }
  
  .hero-image-container::before {
    display: none;
  }
  
  
  #particles-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0a1a3a;
  }
  
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
  }
  
  @media (max-width: 991.98px) {
    .hero-image-container {
      position: relative;
      width: 100%;
      height: 350px;
      right: auto;
      margin: 2rem 5% 0 5%;
      justify-content: center;
    }
    
    .hero-image-container img {
      max-height: 100%;
      max-width: 90%;
    }
  }



#particles-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #000116;
  }
  
  .hero-section {
    background: transparent !important;
  }
  
  .hero-image-container::before {
    display: none !important;
  }

  
.hero-image-container img {
    margin-right: auto; 
    margin-left: +60px; 
  }
  
  
  @media (max-width: 767.98px) {
  
    .hero-section {
      position: relative;
      min-height: 50vh;
      padding: 0;
      overflow: hidden;
    }
    
    .hero-image-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      margin: 0;
    }
    
    .hero-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.3;
      max-width: 100%;
      margin-right: auto; 
      margin-left: 0px;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      color: white;
      padding: 2rem 1rem;
      max-width: 100%;
      box-sizing: border-box;
      text-align: center;
    }
    
    
    .hero-section h1 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    
    .hero-section .lead {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
    
    
    .hero-section .d-flex {
      flex-direction: column;
      gap: 1rem !important;
      max-width: 100%;
    }
    
    .hero-section .btn {
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
      box-sizing: border-box;
    }
    
    
    body {
      overflow-x: hidden;
      width: 100%;
    }
  }

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");