/* RESET & NORMALIZE ================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #222;
  background: #1b2530;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* BRAND FONT IMPORT ================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

/* COLOR CUSTOM PROPERTIES ============================================ */
:root {
  --color-primary: #284B63;
  --color-secondary: #A3C1AD;
  --color-accent: #F5F6FA;
  --color-bg-dark: #111a22;
  --color-bg-light: #232d39;
  --color-bg-gradient: #232d39;
  --color-bg-gradient-end: #314252;
  --color-neon: #55ffe5;
  --color-danger: #fa5252;
  --color-success: #42e08c;
  --color-border: #364655;
  --color-muted: #89abc7;
  --color-shadow: rgba(40,75,99,0.17);
}

/* LAYOUT STRUCTURE ================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: linear-gradient(135deg, var(--color-bg-gradient), var(--color-bg-gradient-end));
  border-radius: 24px;
}

@media (max-width: 768px) {
  section {
    padding: 32px 0;
    margin-bottom: 32px;
  }
  .container {
    padding: 0 12px;
  }
}

/* TYPOGRAPHY ======================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  color: var(--color-neon);
}
h3 {
  font-size: 1.35rem;
  color: var(--color-secondary);
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--color-accent);
}
p {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--color-muted);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
strong, b {
  color: var(--color-neon);
}
ul, ol {
  padding-left: 26px;
  margin-bottom: 16px;
  color: #ccd7e2;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
}
a {
  color: var(--color-neon);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: var(--color-secondary);
  text-shadow: 0 0 4px var(--color-neon);
}

/* MAIN NAVIGATION =================================================== */
header {
  width: 100%;
  background: #151b23;
  border-bottom: 2px solid var(--color-border);
  padding: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 0;
  border-bottom: 2.5px solid transparent;
  position: relative;
  transition: color 0.18s, border 0.13s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-neon);
  border-bottom: 2.5px solid var(--color-neon);
}

/* LOGO  */
header img {
  height: 48px;
  margin-right: 9px;
  transition: filter 0.18s;
  filter: drop-shadow(0 1px 7px #3fffd0a4);
}
header img:hover {
  filter: drop-shadow(0 2px 13px #55ffe5e8);
}

/* CTA BUTTONS ====================================================== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 36px;
  background: var(--color-neon);
  color: #1b2530;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  border-radius: 999px;
  box-shadow: 0 2px 18px #55ffe544, 0 1.5px 4px #0005;
  transition: background 0.16s, box-shadow 0.17s, color 0.17s, transform 0.15s;
  margin-left: 18px;
  outline: none;
  border: none;
  cursor: pointer;
}
.cta.primary {
  background: var(--color-neon);
  color: #1b2530;
}
.cta.secondary {
  background: var(--color-primary);
  color: var(--color-neon);
}
.cta:hover, .cta:focus {
  background: #34efd2;
  color: #06141d;
  transform: translateY(-2px) scale(1.038);
  box-shadow: 0 7px 30px #55ffe570, 0 1.5px 8px #0005;
}

/* BURGER & MOBILE NAVIGATION ======================================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--color-neon);
  font-size: 2.1rem;
  padding: 5px 13px;
  border-radius: 7px;
  border: 2px solid var(--color-neon);
  margin-left: 16px;
  cursor: pointer;
  z-index: 2002;
  box-shadow: 0 2px 8px #55ffe522;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1b2530;
  color: #21f1d9;
  border-color: #21f1d9;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27,37,48,0.98);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: var(--color-neon);
  border: 2px solid var(--color-neon);
  border-radius: 8px;
  font-size: 2.4rem;
  padding: 0 18px;
  margin: 27px 0 0 20px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 2px 8px #55ffe522;
  transition: background 0.12s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #212a38;
  color: #284B63;
  border-color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 48px 0 0 32px;
}
.mobile-nav a {
  color: var(--color-neon) !important;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.035em;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border 0.13s;
  margin-right: 18px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #fff;
  border-bottom: 2px solid var(--color-neon);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  header .cta {
    margin-left: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 11px;
    font-size: 1rem;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTIONS ===================================================== */
section:first-of-type {
  background: linear-gradient(120deg, #232d39 35%, #284B63 90%);
}

/* FLEX GRIDS, CARDS, FEATURES ======================================= */
.feature-grid, .service-list, .benefit-list, .success-stories, .service-highlights, .footer-nav, .contact-short, .contact-details, .categories ul, .inclusions ul, .faq-quicklinks ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-grid {
  list-style: none;
  margin-top: 24px;
  justify-content: space-between;
}
.feature-grid li {
  flex: 1 1 240px;
  background: #202b38;
  color: #e8f6ff;
  border-radius: 14px;
  padding: 32px 20px 27px;
  margin-bottom: 20px;
  box-shadow: 0 4px 40px #28eed1a9, 0 2px 11px #0005;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1.5px solid var(--color-border);
  transition: box-shadow 0.18s, border 0.18s, transform 0.16s;
}
.feature-grid li:hover {
  border-color: var(--color-neon);
  box-shadow: 0 8px 54px #55ffe57a;
  transform: translateY(-3px) scale(1.02);
}
.feature-grid img, .service-highlights img {
  width: 37px;
  margin-bottom: 7px;
}

.service-list, .benefit-list {
  flex-direction: row;
  gap: 24px;
  margin-top: 20px;
  list-style: none;
}
.service-list li, .benefit-list li {
  background: #232f3b;
  padding: 22px 20px 19px;
  border-radius: 12px;
  box-shadow: 0 2px 17px #284b6399, 0 1px 5px #2221;
  margin-bottom: 20px;
  color: #e5fffa;
  flex: 1 1 230px;
  transition: box-shadow 0.13s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li:hover, .benefit-list li:hover {
  box-shadow: 0 8px 48px #55ffe573;
}

.success-stories {
  flex-direction: column;
  gap: 13px;
}
.service-highlights {
  flex-direction: row;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.service-highlights li {
  background: #253445;
  padding: 12px 18px;
  border-radius: 13px;
  color: #e4efe9;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  font-size: 1.04rem;
}

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  position: relative;
  background: #202b38;
  border-radius: 16px;
  box-shadow: 0 1.5px 11px #28eed147, 0 1px 6px #0004;
  margin-bottom: 20px;
  padding: 28px 22px 25px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.13s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 7px 34px #55ffe56c;
  transform: translateY(-2px) scale(1.01);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 1024px) {
  .feature-grid, .service-list, .benefit-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .service-list li, .benefit-list li {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 22px;
  }
  .feature-grid,
  .service-list,
  .benefit-list,
  .content-grid,
  .service-highlights,
  .card-container,
  .faq-quicklinks ul,
  .contact-details {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li,
  .service-list li,
  .benefit-list li,
  .service-highlights li,
  .card {
    padding: 21px 12px 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* TESTIMONIALS ====================================================== */
.testimonials {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px 16px;
  background: #f6fcff;
  color: #222;
  border-radius: 16px;
  min-width: 240px;
  max-width: 350px;
  box-shadow: 0 1.5px 18px #afb3b7cc, 0 1px 8px #284b6333;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-neon);
  border-right: 3px solid var(--color-secondary);
  position: relative;
  z-index: 2;
  transition: box-shadow 0.17s, border 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 41px #21f1d976, 0 1.5px 16px #aec0c770;
  border-left-color: #21f1d9;
  border-right-color: #284B63;
}
.testimonial-card p {
  font-size: 1.14rem;
  line-height: 1.6;
  color: #212e37;
  margin: 0 0 4px 0;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-weight: bold;
}
.testimonial-card img {
  width: 80px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .testimonials {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
  }
}

/* PRICING TABLE ===================================================== */
.pricing-table {
  width: 100%;
  background: #232d39;
  border-radius: 12px;
  box-shadow: 0 1.5px 9px #284b633b;
  margin-bottom: 22px;
  overflow: hidden;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  border-collapse: collapse;
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid #36465538;
}
.pricing-table th {
  background: #284B63;
  color: #fff;
  font-size: 1rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td {
  background: #232d39;
  font-size: 1.09rem;
}
@media (max-width: 700px) {
  .pricing-table th, .pricing-table td {
    padding: 9px 5px;
    font-size: 0.98rem;
  }
}

/* FAQ ACCORDION ===================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #253445;
  border-radius: 12px;
  padding: 15px 22px;
  color: #e8f6ff;
  margin-bottom: 18px;
  cursor: pointer;
  box-shadow: 0 1.5px 10px #284b634c;
  transition: box-shadow 0.13s, background 0.12s;
}
.faq-item:hover {
  background: #232d39;
  box-shadow: 0 6px 20px #21f1d933;
}
.faq-item h3 {
  font-size: 1.08rem;
  margin: 0 0 7px 0;
  color: var(--color-neon);
}
.faq-content {
  color: #b3c9c2 !important;
  font-size: 1rem;
  margin-top: 6px;
  display: block;
}

.faq-quicklinks h3 {
  margin-bottom: 8px;
  color: var(--color-secondary);
}
.faq-quicklinks ul li a {
  color: var(--color-neon);
  font-weight: 600;
  text-decoration: underline dashed 2px;
  padding: 2px 0;
}
.faq-quicklinks ul li a:hover {
  color: var(--color-secondary);
}

/* CONTACT DETAILS & MAP ============================================= */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.contact-details > div {
  background: #212a38;
  border-radius: 14px;
  box-shadow: 0 2px 15px #55ffe510, 0 1.5px 8px #0003;
  color: #e8f6ff;
  padding: 17px 20px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.13rem;
}
.contact-details img {
  width: 29px;
}
.map-embed {
  background: #253445;
  color: #e8f6ff;
  border-radius: 14px;
  padding: 19px;
  margin-top: 17px;
}

.contact-short {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0 0 0;
}
.contact-short img {
  width: 24px;
  margin-right: 5px;
}
.contact-short span {
  color: #fff;
  font-size: 1.14rem;
}

/* FOOTER =========================================================== */
footer {
  background: #1b2530;
  border-top: 2px solid var(--color-border);
  padding: 28px 0 12px 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--color-accent);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
  transition: color 0.13s, text-shadow 0.13s;
}
.footer-nav a:hover {
  color: var(--color-neon);
  text-shadow: 0 1.5px 7px #55ffe560;
}
.footer-contact {
  color: #90a9bc;
  font-size: 0.96rem;
  line-height: 1.6;
}
.footer-contact strong {
  color: var(--color-neon);
}
@media (max-width: 600px) {
  .footer-nav, .footer-contact {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* COOKIES CONSENT BANNER & MODAL ==================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232d39;
  color: #fff;
  z-index: 2999;
  padding: 30px 14px;
  box-shadow: 0 -2px 22px #55ffe52f;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-size: 1.06rem;
  justify-content: center;
  border-radius: 17px 17px 0 0;
  transition: transform 0.36s cubic-bezier(.66,0,.14,1.02), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #232d39;
  background: var(--color-neon);
  border: none;
  border-radius: 8px;
  padding: 10px 23px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 2px 10px #21f1d923;
  transition: background 0.12s, color 0.11s, transform 0.11s;
}
.cookie-banner button.secondary {
  background: #284B63;
  color: var(--color-neon);
}
.cookie-banner button.settings {
  background: var(--color-secondary);
  color: #232d39;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #21f1d9;
  color: #222;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    text-align: center;
    padding: 17px 5px;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3050;
  left: 0; top:0; right: 0; bottom: 0;
  background: rgba(0,16,32,0.63);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #2d3744;
  padding: 34px 26px 30px 26px;
  border-radius: 18px;
  box-shadow: 0 7px 48px #21f1d97e, 0 1.5px 14px #0c182a40;
  min-width: 340px;
  max-width: 98vw;
  color: #e8f6ff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.44rem;
  color: var(--color-neon);
  margin-bottom: 8px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 17px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 10px;
  transition: background 0.11s, color 0.13s;
}
.cookie-modal .modal-close:hover {
  background: #1b2530;
  color: var(--color-neon);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0;
  padding-bottom: 7px;
}
.cookie-modal .cookie-category label {
  font-size: 1.05rem;
  color: var(--color-accent);
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-modal .switch input {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #364655;
  border-radius: 28px;
  transition: background 0.2s;
}
.cookie-modal .switch input:checked + .slider {
  background-color: var(--color-neon);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal .category-desc {
  font-size: 0.93rem;
  color: #a7bed1;
  margin-bottom: 8px;
  margin-left: 13px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  color: #232d39;
  background: var(--color-neon);
  border: none;
  border-radius: 8px;
  padding: 11px 25px;
  cursor: pointer;
  transition: background 0.12s, color 0.11s, transform 0.11s;
}
.cookie-modal .cookie-modal-actions button.reject {
  background: #284B63;
  color: var(--color-neon);
}
.cookie-modal .cookie-modal-actions button:hover, .cookie-modal .cookie-modal-actions button:focus {
  background: #21f1d9;
  color: #222;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: unset;
    padding: 20px 8px;
  }
  .cookie-modal .cookie-modal-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* MODERN ANIMATIONS & MICRO-INTERACTIONS ============================== */
.cta, .cookie-banner button, .cookie-modal .cookie-modal-actions button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.14s, color 0.15s, box-shadow 0.17s, transform 0.13s;
}
.card, .feature-grid li, .service-list li, .benefit-list li, .testimonial-card, .faq-item {
  transition: box-shadow 0.16s, border-color 0.16s, transform 0.13s;
}
a {
  transition: color 0.13s, text-shadow 0.13s;
}

/* UTILITY CLASSES, SPACING & ACCESSIBILITY ============================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.mb-0 {margin-bottom:0;}
.mb-1 {margin-bottom:8px;}
.mb-2 {margin-bottom:16px;}
.mb-3 {margin-bottom:24px;}
.mb-4 {margin-bottom:32px;}
.text-center {text-align:center;}
.text-right {text-align:right;}
.mt-3 {margin-top:24px;}
.bg-primary {background:var(--color-primary)!important;color:#fff!important;}
.bg-secondary {background:var(--color-secondary)!important;color:#1b2530!important;}
.bg-accent {background:var(--color-accent)!important; color:#222!important;}
.rounded {border-radius:18px!important;}
.p-2 {padding:16px!important;}

/* SCROLLBAR STYLING ==================================*/
::-webkit-scrollbar {
  width: 8px;
  background: #212a38;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #284B6396;
  border-radius: 8px;
}

/* SELECTION COLOURS ================================== */
::selection {
  background: #55ffe5;
  color: #1b2530;
}

/* END OF CSS ========================================================= */
