:root {
  --page-padding: 128px;
  --circle-size: 140px;
  --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --card-radius: 24px;
  --card-spacing: 60px;
}

@font-face {
  font-family: "Satoshi";
  src: url("fonts/Satoshi-Regular.woff2") format("woff2"),
    url("fonts/Satoshi-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("fonts/Satoshi-Bold.woff2") format("woff2"),
    url("fonts/Satoshi-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html { scroll-behavior: smooth; }

/* Card Stack Container */
.cards-container {
  display: flex;
  flex-direction: column;
  gap: var(--card-spacing);
  padding: 80px var(--page-padding);
  background: transparent;
  position: relative;
  z-index: 1;
}

.card-item {
  background: white;
  border-radius: var(--card-radius);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

/* Hero Card Styling */
.hero-card {
  background: linear-gradient(184deg, rgba(0, 0, 0, 0.95) 3.58%, rgba(137, 137, 137, 0.8) 415.15%);
}

/* About Card Styling */
.about-card {
  background: linear-gradient(184deg, rgba(0, 0, 0, 0.95) 3.58%, rgba(137, 137, 137, 0.8) 415.15%);
}

/* Projects Card Styling */
.projects-card {
  background: linear-gradient(184deg, rgba(0, 0, 0, 0.95) 3.58%, rgba(137, 137, 137, 0.8) 415.15%);
}

/* Contact Card Styling */
.contact-card {
  background: linear-gradient(184deg, rgba(0, 0, 0, 0.95) 3.58%, rgba(137, 137, 137, 0.8) 415.15%);
}

.hero-card .section-box {
  background-color: transparent;
  padding: 100px var(--page-padding) 80px var(--page-padding);
  margin-top: 0;
}

.hero-section {
  color: #ffffff !important;
}

.hero-section h1,
.hero-section .title {
  color: #ffffff !important;
}

.hero-section .text-24 {
  color: #ffffff !important;
}

.hero-section .gap-hero {
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-section p {
  color: #ffffff !important;
}

.hero-meta {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: baseline;
  column-gap: 12px;
  margin: 8px 0;
  color: #dfe7f3;
}

.hero-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  display: inline-block;
}

.hero-value {
  color: #ffffff;
  font-weight: 700;
}

/* Reveal Container for Cards */
.reveal-container {
  will-change: transform, opacity;
  perspective: 1000px;
}

/* Initial state - hidden and below */
.card-item.reveal-container {
  opacity: 0;
  transform: translateY(150px) rotateX(20deg) scale(0.9);
  transition: opacity 1s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Visible state - animate up */
.card-item.reveal-container.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg) scale(1) !important;
}

/* Staggered delays for cascade effect */
.card-item.hero-card.reveal-container {
  transition-delay: 0ms;
}

.card-item.about-card.reveal-container {
  transition-delay: 150ms;
}

.card-item.projects-card.reveal-container {
  transition-delay: 300ms;
}

.card-item.contact-card.reveal-container {
  transition-delay: 450ms;
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 1s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1) !important;
}

.reveal--stagger {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 1s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal--stagger.visible {
  opacity: 1;
  transform: translateY(0) scale(1) !important;
}

.project-card.reveal--stagger {
  opacity: 0 !important;
  transform: translateY(60px) scale(0.95) !important;
  transition: opacity 1s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.project-card.reveal--stagger.visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.project-card.reveal--stagger:nth-child(1) { transition-delay: 0ms !important; }
.project-card.reveal--stagger:nth-child(2) { transition-delay: 150ms !important; }
.project-card.reveal--stagger:nth-child(3) { transition-delay: 300ms !important; }
.project-card.reveal--stagger:nth-child(4) { transition-delay: 450ms !important; }
.project-card.reveal--stagger:nth-child(5) { transition-delay: 600ms !important; }
.project-card.reveal--stagger:nth-child(n+6) { transition-delay: 750ms !important; }

.project-card:hover {
  transition: transform 0.3s ease, box-shadow 0.25s ease;
}

.project-card:hover.visible {
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.reveal--fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.reveal--fade-in.visible {
  opacity: 1;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--stagger,
  .reveal--fade-in,
  .reveal-container {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg) !important;
    transition: none;
  }
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  font-family: "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  color: #141414;
  background: linear-gradient(140deg, #1f2c3a 0%, #3a4b63 45%, #0f2338 100%);
  background-size: 250% 250%;
  background-position: 0% 50%;
  animation: softDiagonalDrift 90s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
    background-position: 50% 50%;
  }
}

/* TEXT STYLES */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", "Satoshi", sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

p,
span,
small,
a,
li {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
}

.icon-32 {
  font-size: clamp(1rem, 2vw + 0.5rem, 24px);
}

.title {
  font-size: clamp(32px, 6vw + 4px, 96px);
  font-weight: 700;
}

.text-24 {
  font-size: clamp(12px, 1vw + 8px, 24px);
  font-weight: 500;
}

/* NAVBAR */

.custom-navbar {
  background: linear-gradient(184deg, rgba(0, 0, 0, 0.95) 3.58%, rgba(137, 137, 137, 0.8) 415.15%);
  backdrop-filter: blur(10px);
  padding: 20px 0px;
  transition: all 0.3s ease;
  border-radius: var(--card-radius);
}

/* Header Navbar Container */
header .container-fluid {
  padding-left: var(--page-padding) !important;
  padding-right: var(--page-padding) !important;
}

.logo-circle {
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}

.logo-img {
  width: 68%;
  height: 68%;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-size: 16px;
  padding: 8px 12px !important;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #5094ee !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #5094ee;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mx-56 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* HERO SECTION */

.section-box {
  padding: 80px var(--page-padding) 120px var(--page-padding);
}

.gap-hero {
  margin-bottom: clamp(40px, 8vw, 94px);
}

.mb-title {
  margin-bottom: clamp(64px, 12vw, 145px);
}

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 8px;
  background: #ffffff;
  vertical-align: bottom;
  animation: blink 1s steps(2, start) infinite;
}

#typed-text {
  display: inline-block;
  transform-origin: left bottom;
  transition: transform .18s ease;
  font-family: "Satoshi", "DM Sans", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#typed-text:hover { 
  transform: translateY(-2px); 
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* ABOUT SECTION - Inside Card */
.about-card .about-section {
  background-color: transparent;
  padding: 80px var(--page-padding) 120px var(--page-padding);
  margin-top: 0;
}

.about-content {
  gap: 32px !important;
}

.about-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
  margin-top: 28px;
}

.toolkit-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
}

.logo-card {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-card:hover {
  transform: translateY(-4px);
  background: #252525;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% auto;
}

.logo-name {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Brand-colored logos using official marks */
.figma-icon { background-color: transparent; background-image: url('https://upload.wikimedia.org/wikipedia/commons/3/33/Figma-logo.svg'); background-size: 44% auto; }
.ps-icon { background-color: transparent; background-image: url('https://upload.wikimedia.org/wikipedia/commons/a/af/Adobe_Photoshop_CC_icon.svg'); background-size: 64% auto; }
.lr-icon { background-color: transparent; background-image: url('https://commons.wikimedia.org/wiki/Special:FilePath/Adobe_Photoshop_Lightroom_CC_logo.svg'); background-size: 60% auto; }
.resolve-icon { background-color: transparent; background-image: url('https://commons.wikimedia.org/wiki/Special:FilePath/DaVinci_Resolve_Studio.png'); background-size: 60% auto; }
.uiux-icon { background-color: transparent; background-image: url('https://cdn.simpleicons.org/materialdesign/7C4DFF'); background-size: 60% auto; }

.php-icon { background-color: transparent; background-image: url('https://cdn.simpleicons.org/php/777BB4'); background-size: 70% auto; }
.mysql-icon { background-color: transparent; background-image: url('https://cdn.simpleicons.org/mysql/00618A'); background-size: 68% auto; }
.js-icon { background-color: transparent; background-image: url('https://cdn.simpleicons.org/javascript/F7DF1E'); background-size: 60% auto; }
.html-icon { background-color: transparent; background-image: url('https://cdn.simpleicons.org/html5/E34F26'); background-size: 60% auto; }
.css-icon { background-color: transparent; background-image: url('https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original.svg'); background-size: 64% auto; }

/* PROJECTS SECTION - Inside Card */
.projects-card .project-intro-section {
  background-color: transparent;
  padding: 80px var(--page-padding) 0 var(--page-padding);
  position: relative;
}

.projects-card .project-selection {
  padding: 80px var(--page-padding) 120px var(--page-padding);
  margin-top: 0;
  background-color: transparent;
}

.projects-line {
  position: relative;
  width: 100%;
  border-top: 1px solid #555;
  margin-top: 60px;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects-line h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.small-text {
  color: #999;
  font-size: 0.9rem;
}

.project-line {
  position: relative;
  padding: 24px 0 56px 0;
}

.project-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.project-line>.text-start {
  z-index: 2;
  margin-top: 28px;
}

.project-line .text-start h3,
.project-line .text-start p {
  color: #ffffff;
}

.circle-btn {
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  background: #5094ee;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 500;
  z-index: 3;
  border: none;
  box-shadow: 0 6px 18px rgba(80, 148, 238, 0.25);
  position: absolute;
  right: 10%;
  top: 28px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.circle-btn:hover {
  background: #3b73d9;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(80, 148, 238, 0.4);
}

/* PROJECT SELECTION / CARDS */
.project-card {
  background: #e6e6e6;
  position: relative;
  height: 340px;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  will-change: transform;
  border-radius: 12px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card:hover .project-overlay {
  background: linear-gradient(180deg, rgba(80, 148, 238, 0.95) 0%, rgba(40, 40, 40, 0.6) 100%);
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease;
}

.project-card.selected .project-overlay {
  background: linear-gradient(180deg, #5094ee 0%, #2d6fc6 100%);
  color: #fff;
}

.project-overlay {
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.95) 0%, rgba(50, 50, 50, 0.95) 50%, rgba(80, 80, 80, 0.95) 100%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 40; 
  pointer-events: none; 
}

.project-link { 
  display: block; 
  color: inherit; 
  text-decoration: none; 
  position: relative; 
}

.project-link, 
.project-link:focus, 
.project-link:active {
  background: transparent;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.project-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  opacity: 1;
  transform: none;
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none; 
  z-index: 20;
  background: transparent;
}

.project-preview .preview-frame { 
  position: relative; 
  width: 100%; 
  height: 100%; 
}

.project-preview iframe { 
  width: 100%; 
  height: 100%; 
  border: 0; 
  display: block; 
}

.project-preview .preview-overlay { 
  position: absolute; 
  inset: 0; 
  background: rgba(20,20,20,0.28); 
  pointer-events: none; 
}

/* CONTACT SECTION - Inside Card */
.contact-card .contact-section {
  background-color: transparent;
  padding: 80px var(--page-padding) 120px var(--page-padding);
  margin-top: 0;
}

.contact-box {
  color: #ffffff;
}

.contact-box h4 {
  color: #ffffff;
}

.contact-box p {
  color: #d0d0d0;
}

.contact-info {
  padding: 20px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  gap: 18px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.info-button {
  position: relative;          
  display: inline-flex;
  align-items: center;
  justify-content: center;     
  flex: 0 0 360px;              
  min-width: 350px;           
  gap: 12px;
  background: #5094ee;
  color: #ffffff;
  border: none;
  padding: 16px 24px;        
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(80, 148, 238, 0.4);
  text-decoration: none;
  overflow: hidden;
}

.info-button .icon {
  position: absolute;
  left: 14px;                  
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  pointer-events: none;       
}

.info-button img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.info-button .info-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  line-height: 1;
  padding-left: 12px;           
  padding-right: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-button:hover,
.info-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(80,148,238,0.28);
}

.message-box {  
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-label{
  font-family: "Satoshi", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  color: #ffffff;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1rem;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #5094ee;
  box-shadow: 0 0 0 0.2rem rgba(80, 148, 238, 0.35);
  color: #ffffff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-message{
  margin-top: 50px;
  height: 69px;
  color: #ffffff;
  background: linear-gradient(135deg, #5094ee 0%, #3b73d9 100%);
  padding: 0 40px;
  gap: 10px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 25px rgba(80,148,238,0.4);
  font-family: "Satoshi", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-message:hover,
.btn-message:focus {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #7fc6ff 0%, #5aa6f2 45%, #3b73d9 100%);
  box-shadow:
    0 30px 60px rgba(59,115,217,0.32), 
    0 10px 30px rgba(80,148,238,0.22), 
    inset 0 -2px 6px rgba(255,255,255,0.06); 
  outline: none;
  filter: saturate(1.05) brightness(1.03);
  transition: all 200ms ease;
  color: #ffffff; 
  text-shadow: 0 1px 2px rgba(0,0,0,0.22);
}

/* FOOTER */
.footer-section{
  padding: 60px var(--page-padding);
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
  color: #cccccc;
  text-align: center;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Extra Small Devices (≤576px) */
@media (max-width: 576px) {
  :root {
    --card-spacing: 40px;
  }

  header .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-top: 16px !important;
  }
  
  .custom-navbar {
    padding: 10px 16px;
  }
  
  .logo-circle {
    width: 44px;
    height: 44px;
  }
  
  .navbar-nav .nav-link {
    font-size: 16px;
  }
  
  .mx-56 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  
  .navbar {
    padding: 12px 16px !important;
    border-radius: 24px !important;
  }
  
  .navbar-brand .rounded-circle {
    width: 48px !important;
    height: 48px !important;
  }

  .cards-container {
    padding: 40px 16px;
    gap: 30px;
  }

  .hero-card .section-box {
    padding: 40px 16px;
  }
}

/* Small Devices (≤720px) */
@media (max-width: 720px) {
  /* Contact */
  .info-button {
    flex: 1 1 100%;
    min-width: 0;
    justify-content: flex-start;
    padding-left: 64px;
  }

  .info-button .info-text {
    justify-content: flex-start;
    white-space: normal;
  }

  .info-button .icon { 
    left: 18px; 
  }
}

/* Tablets and Small Desktops (≤768px) */
@media (max-width: 768px) {
  :root {
    --page-padding: 32px;
    --circle-size: 100px;
    --card-spacing: 40px;
  }
  
  /* Hero */
  .section-box {
    max-width: calc(100% - 48px);
    padding: 48px 32px;
  }

  .hero-card .section-box {
    padding: 48px 32px;
  }
  
  /* Projects */
  .circle-btn {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }

  .project-line::before {
    left: 6%;
    right: 30%;
  }

  .cards-container {
    padding: 40px 32px;
    gap: 40px;
  }

  .about-card .about-section,
  .projects-card .project-intro-section,
  .projects-card .project-selection,
  .contact-card .contact-section {
    padding: 60px 32px;
  }
}

/* Hide Project Preview (≤900px) */
@media (max-width: 900px) {
  .project-preview { 
    display: none; 
  }
}

/* Medium Devices (≤991px) */
@media (max-width: 991px) {
  /* Navbar */
  .custom-navbar {
    padding: 12px 20px;
    border-radius: 16px !important;
  }
  
  .logo-circle {
    width: 48px;
    height: 48px;
  }
  
  .navbar-collapse {
    margin-top: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-nav {
    gap: 8px !important;
  }
  
  .navbar-nav .nav-item {
    padding: 4px 0;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 16px !important;
    border-radius: 8px;
    font-size: 18px;
    transition: background-color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    background: rgba(80, 148, 238, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
}
