:root {
  /* color */
  --abbey: #4d4d4d;
  --azure: #405da7;
  --black: #000000;
  --chambray: #394f89;
  --chambray-2: #3a4f89;
  --coconut: #fefefe;
  --cornflower: #99d8e6;
  --curious-blue: #3a98d1;
  --dove-gray: #707070;
  --firefly: #0d1f38;
  --indigo: #4b5fc2;
  --jaguar: #010012;
  --midnight-blue: #1f4179;
  --mine-shaft: #333333;
  --polar: #e4f4f8;
  --shakespeare: #57a7d9;
  --slate-blue: #5972b2;
  --sonic-silver: #737373;
  --tangaroa: #0f1b39;
  --turquoise-blue: #45e3ff;
  --white: #ffffff;
  --wistful: #9aa6dd;
  --wistful-o: #9aa6dd4b;
  --card: #d2d9fdc9;
  --line-colour: #4a4c6b;


  

  
  /* === Colors - Named for clarity === */
  --color-celtic-blue: #004080;
  /* Dark blue used in headings */
  --color-firefly: #0d1f38;
  /* Deep navy blue */
  --color-cornflower: #99d8e6;
  /* Light blue divider lines */
  --color-dark-charcoal: #333;
  /* General text color */
  --color-white: #ffffff;
  /* White background/text */
  --color-silver: #f9f9f9;
  --colour-dark-silver: #ebebeb;
  /* Light gray background */
  --color-gallery: #f3f3f3;
  /* Light gray for form fields */
  --color-curious-blue: #0078d7;
  /* Bright blue for buttons */
  --color-dove-gray: #707070;
  /* Gray for secondary text */
  --color-powder-blue: #cce0ff;
  /* Light blue border or background */
  --color-light-silver: #ccc;
  /* Light gray for borders */

  /* === Added for consistency === */
  --color-hover-blue: #00a0df;
  /* Footer link hover, accents */
  --color-button-hover: #005fa3;
  /* font */
  --font-size-xs: 10px;
  --font-size-s: 15px;
  --font-size-m: 20px;
  --font-size-l: 30px;
  --font-size-xl: 40px;
  --font-size-xxl: 50px;
  --font-size-xxxl: 60px;
}

/* === Local Font - Poppins (TTF) === */
@font-face {
  font-family: 'Poppins';
  src: url('Font/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('Font/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('Font/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === Global Styles === */
html {
  height: 100%; 
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%; 
  height: auto;
  font-family: 'Poppins', sans-serif;
  
  background-image: url("./Vector/background.svg");
  background-size: cover;
  background-position: center top; 
  background-repeat: repeat;
  /* if you want to make it fixed change the botton value to fixed */
  background-attachment: scroll; 
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-light {
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}


.text-medium {
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.text-bold {
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* Logo inside loader — subtle entrance */
/* Full-screen loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: var(--coconut);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  animation: fadeOutLoader 1.8s forwards;
  animation-delay: 1.2s;
}

/* Subtle logo entrance */
.loader-logo {
  width: 40vw;
  max-width: 100vwx;
  height: auto;
  opacity: 0;
  transform: scale(0.92);
  animation: subtleIntro 1.0s ease-out forwards;
}

@keyframes subtleIntro {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Fade out (keep your original) */
@keyframes fadeOutLoader {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/*-----decoration images----------*/
.decoration.largeC {
  position: absolute;
  top: 23%;
  left: 0%;
  opacity: 0.6;
  z-index: 1;
  max-width: 20%;
  height: auto;
}
.topRight{
  position: absolute;
  top: 10%;
  right: 0%;
  opacity: 0.6;
  z-index: 1;
  max-width: 15%;
  height: auto;
}
.bottomRight{
  position: absolute;
  top: 50%;
  right: 0%;
  opacity: 0.6;
  z-index: 1;
  max-width: 15%;
  height: auto;
}

/* ====================================== Navigation ================================== */
/* #region Nav */
.navbar {
  background-color:var(--white);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 4px solid var(--slate-blue);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

/* Logo Section */
.nav-logo {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  margin-right: 0.5rem;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--chambray);
  text-decoration: none;
  font-size: var(--font-size-s);
  transition: opacity 0.3s;
}

.nav-links li a:hover {
  opacity: 0.8;
}

/* Hamburger Button (Mobile Only) */
.hamburger {
  display: none;
  background: none;
  border: none;

  font-size: 1.5rem;
  cursor: pointer;
}
/* #endregion */

/*----------------------------Hero------------------------*/
/* #region hero */

.hero-cpas {
  /*background-color: var(--white);*/ /* or a light background */
  padding: 125px 0px;
  position: relative;
  overflow: hidden; /* Prevent decorative images from causing scroll */
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Hero Image */
.hero-image {
  margin: 20px 0;
}

.hero-image img {
  max-width: 90%;
  height: auto;
}

/* Hero Text */
.hero-text {
  max-width: 700px;
  margin: 20px auto;
  color: var(--slate-blue);
}

.hero-text h1 {
  font-size: var(--font-size-m);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--chambray);
}

.highlight {
  color: var(--slate-blue);
  font-weight: bold;
  font-size: var(--font-size-l);
}

.hero-text p {
  font-size: var(--font-size-s);
  line-height: 1.6;
  color: var(--slate-blue);
}

/* #endregion */

/*------------------------ Key Feature------------------*/
/* #region Key Features */
.features {
  padding: 4rem 0;
  background-color: var(--polar);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card, .feature-card2 {
  background-color: var(--coconut);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333;
}

.feature-card img {
  width: 45%;
}

.feature-card2 img {
  width: 65%;
}

.feature-card h3 ,.feature-card2 h3 {
  font-size: var(--font-size-s);
  color: var(--chambray);
  margin-top: 0.5rem;
}

/* #endregion */
/*-------------------details (about us)----------------------*/
/* #region About Us Section */
.aboutus {
  padding: 60px 0;
  background-color: #f9f9f959;
}

.aboutus-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center; /* Centers the whole block if screen is wide */
  align-items: center;     /* Vertically centers both boxes */
  text-align: center;      /* Fallback for inline alignment */
}

.aboutus-text,
.aboutus-cta {
  text-align: left; /* This centers the text inside */
  flex: 1;
}

.aboutus-text p {
  font-size: 2rem;
  line-height: 1.4;
  color: var(--chambray);
  padding: 10px;
}

.aboutus-cta {
  flex: 1;
  
}

.aboutus-cta p {
  font-size: var(--font-size-s);
  line-height: 1.6;
  color: var(--azure);
  margin-bottom: 20px;
}

.readmore {
  padding: 12px 24px;
  font-size: 1rem;
  color: var(--turquoise-blue);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.readmore:hover {
  background-color: #0056b3;
}

/* #endregion */

/*-----------------doc image-----------------------*/

/* #region Doc imgage*/

.full-width-image {
  width: 100%;
  overflow: hidden; /* Prevents layout overflow */
}

.full-width-image img {
  width: 100%;
  height: 400px; /* Fixed height */
  object-fit: cover; /* Keeps image looking good, crops if needed */
  display: block;
}

/* #endregion */

/*---------------- Reporting/Modules Section ----------------*/
/* #region Report & Modules */

.reportModules {
  padding: 4rem 0;
  background-color: var(--chambray);
  position: relative;
}

.reportModules-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .reportModules-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .reporting,
  .modules {
    text-align: center;
  }

  .more {
    align-self: center;
  }

  .reporting-header .line-container {
    align-items: center;
  }

  .reporting-header h3,
  .modules h3,
  .modules p {
    text-align: center;
  }
}

/* --- Reporting Header: Lines Above Heading, Right-Aligned --- */
.reporting-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* This aligns everything to the right */
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* Horizontal line container — above the heading */
.line-container {
  display: flex;
  gap: 4px;
  align-items: end;
  flex-direction: column;

}

/* Individual lines: short horizontal bars */
.line-container div {
  height: 10px;
}

.line1 { width: 100px; background-color: var(--indigo); }
.line2 { width: 80px; background-color: var(--shakespeare); }
.line3 { width: 100px; background-color: var(--cornflower); }
.line4 { width: 65px; background-color: var(--white); }

/* Heading below the lines, also right-aligned */
.reporting-header h3 {
  font-size: 2.4rem;
  color: var(--coconut);
  margin: 0;
  text-align: right;
}
/* --- Reporting Card (Right-Aligned) --- */
.reporting {
  flex: 1;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--coconut);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  text-align: right;
}

.reporting h3 {
  font-size: var(--font-size-m);
  color: var(--coconut);
  white-space: nowrap;
}

.reporting p {
  font-size: var(--font-size-s);
  color: var(--coconut);
  opacity: 0.9;
}

/* --- Modules Card (Left-Aligned) --- */
.modules {
  flex: 1;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--coconut);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  text-align: left;
}

.modules h3 {
  font-size: var(--font-size-m);
  color: var(--coconut);
  line-height: 1.1;
  
}

.modules p {
  color: var(--cornflower);
  font-size: 3rem;
  margin: 0.5rem 0;
  opacity: 0.9;
}

/* --- Shared Button Styling --- */
.more {
  background-color: var(--slate-blue);
  color: var(--white);
  border: solid 2px var(--chambray);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  margin-top: auto;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.reporting .more {
  align-self: flex-end;
}

.modules .more {
  align-self: flex-start;
}

.more:hover {
  background-color: var(--indigo);
  transform: translateY(-2px);
  border: solid 2px var(--shakespeare);
}

/* #endregion */

/*--------------------- Meet DAVE----------------------------*/

/* #region Meet Dave */
.dave-section {
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
  /* background-color: #fff; */
}

.dave-content {
  display: flex;
  align-items: flex-start; /* Ensures text starts at the top */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Image container */
.dave-image-wrapper {
  flex: 0 0 40%; /* Takes 40% width, doesn't grow/shrink */
}

.daveimg {
  max-width: 50%;
  height: auto;
  display: block;
}

/* Text content */
.dave-text {
  flex: 0 0 60%; /* Takes 60% width */
}

.dave-text .title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 20px;
 
}

.dave-text .meet {
  color: #333;
  margin-right: 10px;
}

.meet, .a, .e { color: var(--chambray); 
font-size: var(--font-size-xxl);
}
.d { color: var(--cornflower);
  font-size: var(--font-size-xxl); }
.v { color:var(--shakespeare);
  font-size: var(--font-size-xxl) }

.subtitleDave{
  color: var(--chambray);
  font-family: var(--font-family-poppins);
  font-size: var(--font-size-m);
}

.dave-content p {
  font-size: var(--font-size-s);
  margin-bottom: 1rem;
  color: var(--azure);
}

/* Responsive: Stack on small screens */
@media (max-width: 768px) {
  .dave-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
  }

  .dave-image-wrapper,
  .dave-text {
    flex: none;
    width: 100%;
  }
  .daveimg {
    max-width: 70%;
    margin: 0 auto;
  }

  .dave-text .meet {
    display: block;
    margin-bottom: 8px;
  }
}

/* #endregion */
/*--------------------------Modules-------------------------*/
/* #region Modules */
/* Modules Container */

.modules-content {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

/* Module Cards */
.connect, .istk, .cdispense {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
/* .feature-card:hover,.feature-card2:hover,, */
.modules:hover,
.connect:hover, .istk:hover, .cdispense:hover, 
.reporting:hover{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(-5px);
}

/* Image */
 .istk img {
  width: 50%;
  object-fit: contain;
  margin-bottom: 1.5rem;
}
.connect img, .cdispense img {
  width: 90%;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

/* Heading */
.modules-content p {
  font-size: var(--font-size-m);
  color: var(--chambray);
  margin: 0 0 1rem;
}

/* Button */
.readmore {
  background-color: var(--slate-blue);
  color: var(--white);
  border: solid 2px var(--chambray);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  margin-top: auto;
  transition: background-color 0.3s ease, transform 0.2s ease;
}


.readmore:hover {
  background-color: var(--indigo);
  transform: translateY(-2px);
  border: solid 2px var(--shakespeare);
}

/* #endregion */

/*--------------------------How Can We Help-------------------*/
/* #region How Can we help */
.help-section {
  padding: 4rem 0;
  background-color: var(--chambray);
}

.help-content {
  display: flex;
  gap: 1rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left column: Heading */
.help-text-left {
  display: flex;
  justify-content: center; /* ✅ Vertically centers the h2 */
  text-align: left; /* ✅ Ensures text inside is left-aligned */
  flex: 1;
}

.help-text-left h2 {
  font-size: var(--font-size-xxl);
  -webkit-text-stroke: 2px var(--cornflower);
  color: transparent;
  margin: 0;

}

.help-text-right {
  flex: 1;
}

.help-text-right p {
  font-size: 1.1rem;
  color: var(--coconut);
  margin: 0;
  line-height: 1.6;
}

.email {
  display: inline-block;
  margin: 0.5rem 0;
  font-size: var(--font-size-s);
  color: var(--cornflower);
  text-decoration: none;
  font-weight: bold;
}

.email:hover {
  text-decoration: underline;
  color: var(--indigo);
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .help-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .help-text-left,
  .help-text-right {
    text-align: center;
  }

  .email {
    font-size: 1.1rem;
  }
}
/* #endregion */

footer.footer {
  background-color: var(--color-firefly);
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.6;
}

footer.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  min-width: 300px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-text {
  max-width: 400px;
  margin-bottom: 30px;
  color: #aaa;
}

.footer-contact h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 8px 0;
  color: #ddd;
  font-weight: bold;
}

.footer-contact p {
  margin: 0 0 15px;
}

.footer-contact a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-contact a:hover {
  color: var(--color-hover-blue);
}

.phone-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.phone-item h4 {
  margin: 0 0 5px 0;
}

@media (max-width: 600px) {
  .phone-container {
    flex-direction: row;
    gap: 10px;
  }
}
.message-box {
  width: 100%;
  padding: 15px;
  margin-bottom: 1rem;
  /* border: 1px solid var(--color-light-silver); */
  border-radius: 4px;
}
.socialMedia {
  margin-top: 20px;
}

.socialMedia a {
  display: inline-block;
}

.socialMedia img {
  height: 24px;
  transition: transform 0.2s ease;
}

.socialMediaIcon:hover{
  transform: translateY(-3px);
}

.socialMedia a:hover img {
  transform: translateY(-2px);
}

.footer-center {
  flex: 0 0 auto;
  text-align: center;
  min-width: 220px;
}

.footer-center h3 {
  font-size: 16px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.product-links-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.product-links-vertical a img {
  height: 30px;
  width: auto;
  transition: transform 0.2s ease;
  filter: none;
  border: none;
  box-shadow: none;
}

.product-links-vertical a:hover img {
  transform: translateY(-3px);
}

.footer-right {
  flex: 0 0 auto;
  text-align: center;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-right .award img {
  max-height: 180px;
  width: auto;
}


/* === MOBILE PERFECT FIX — PASTE THIS AT BOTTOM OF CSS === */

/* Force desktop nav on mobile — no hamburger */
.hamburger { display: none !important; }
.nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1rem !important;
}
.nav-links li a { font-size: 14px !important; padding: 0.25rem 0.5rem !important; }

/* Stack all sections vertically */
@media (max-width: 768px) {
    /* Hero */
    .hero-content { padding: 1rem; }
    .hero-text h1 { font-size: 1.5rem !important; }
    .hero-text p { font-size: 1rem !important; }

    /* Features */
    .feature-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .feature-card img, .feature-card2 img { margin: 0 auto; }

    /* About Us */
    .aboutus-content { flex-direction: column !important; }
    .aboutus-text, .aboutus-cta { width: 100% !important; text-align: center !important; }
    .aboutus-text p { font-size: 1.2rem !important; }

    /* Reporting/Modules */
    .reportModules-content { flex-direction: column !important; }
    .reporting, .modules { text-align: center !important; padding: 1.5rem !important; }
    .reporting-header { align-items: center !important; }
    .reporting-header h3 { text-align: center !important; }

    /* Meet Dave */
    .dave-content { flex-direction: column !important; text-align: center !important; }
    .dave-image-wrapper, .dave-text { width: 100% !important; }
    .dave-text .title { font-size: 1.8rem !important; }

    /* Modules */
    .modules-content { flex-direction: column !important; }
    .connect, .istk, .cdispense { width: 90% !important; margin: 0 auto !important; }

    /* Help Section */
    .help-content { flex-direction: column !important; text-align: center !important; }
    .help-text-left h2 { -webkit-text-stroke: 1px var(--cornflower) !important; font-size: 2rem !important; }

    /* Footer */
    footer.footer .container { flex-direction: column !important; }
    .footer-left, .footer-center, .footer-right { width: 100% !important; text-align: center !important; }
}

/* === DECORATIVE SHAPES — MOBILE ONLY === */
@media (max-width: 768px) {
    .decoration {
        z-index: -1; /* Send behind text */
        pointer-events: none; /* Prevent interaction */
    }

    .top-circle {
        left: -150px !important; /* Push to left edge */
        top: 0 !important;
        transform: none !important;
    }

    .bottom-circle {
        right: -150px !important; /* Push to right edge */
        bottom: 0 !important;
        transform: none !important;
    }
}

/* === MOBILE HAMBURGER MENU — TOP-ALIGNED SLIDE DOWN === */
@media (max-width: 768px) {
    .hamburger {
        display: block !important;
        background: none;
        border: none;
        color: var(--chambray);
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 1001;
        position: absolute;
        top: 1rem; /* Align to top */
        right: 1rem;
    }

    .nav-links {
        position: absolute;
        top: 100%; /* Directly below navbar */
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start; /* Left-align links */
        padding: 1rem 0;
        gap: 0.5rem;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-bottom: 4px solid var(--slate-blue);
    }

    .nav-links.mobile-active {
        transform: scaleY(1) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-links li a {
        font-size: 1.1rem !important;
        color: var(--chambray) !important;
        padding: 0.75rem 1.5rem !important;
        text-align: left;
        width: 100%;
        border-left: 4px solid transparent;
        transition: all 0.2s ease;
    }

    .nav-links li a:hover {
        background-color: rgba(0,0,0,0.03);
        border-left: 4px solid var(--cornflower);
    }
}

/* === HIDE DECORATIVE CIRCLES ON MOBILE & TABLET === */
@media (max-width: 1024px) {
    .decoration,
    .top-circle,
    .bottom-circle {
        display: none !important;
    }
}