/* --- CSS RESET & NORMALIZE --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit;
  vertical-align: baseline; box-sizing: border-box;
}
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { line-height: 1.5; background: #131C29; color: #F1EDED; min-height: 100vh; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { display: inline-block; max-width: 100%; height: auto; }
button, input, select, textarea { font-family: inherit; font-size: 100%; }

/* --- BRAND CORE COLORS & FONTS --- */
:root {
  --primary: #16334A;
  --secondary: #18A999;
  --accent: #F1EDED;
  --background-dark: #131C29;
  --neon-green: #18FFA3;
  --neon-cyan: #20E8FA;
  --danger: #E33B64;
  --shadow: 0 4px 24px rgba(24,169,153,0.16);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--background-dark);
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--accent);
}
h1 { font-size: 2.8rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.1rem; }
p, li, address { color: var(--accent); font-size: 1rem; margin-bottom: 12px; line-height: 1.7; }
small, .footer-legal { font-size: 0.9rem; color: #adbfc7; }
strong { color: var(--neon-cyan); }

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section, section {
  margin-bottom: 60px; padding: 40px 20px;
  background: none;
  border-radius: 24px;
}

/* --- HEADER/NAV --- */
header {
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(22,51,74,0.08);
  position: sticky; top: 0; z-index: 80;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.logo img { height: 48px; display: block; transition: filter .2s; }
.logo:hover img { filter: brightness(1.18) drop-shadow(0 0 2px var(--neon-cyan)); }

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 4px 0;
  position: relative;
  transition: color .22s;
}
nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: width .3s;
  position: absolute;
  left: 0; bottom: -2px;
}
nav a:hover, nav a:focus {
  color: var(--neon-cyan);
}
nav a:hover:after, nav a:focus:after {
  width: 100%;
}

.cta-btn {
  background: linear-gradient(92deg,var(--secondary) 70%, var(--neon-green));
  color: #151B29;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  border-radius: 36px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(24,255,163,0.18);
  outline: none;
  transition: background .22s, box-shadow .24s, color .2s;
  margin-left: 16px;
  text-align: center;
  letter-spacing: 0.04em;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover,.cta-btn:focus {
  background: linear-gradient(92deg,var(--neon-green), var(--neon-cyan) 90%);
  color: var(--primary);
  box-shadow: 0 4px 24px var(--neon-cyan);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--neon-cyan);
  border: none;
  margin-left: 18px;
  cursor: pointer;
  transition: color .22s;
  line-height: 1;
  z-index: 101;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--neon-cyan);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background: rgba(30,36,56,0.98);
  display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-start;
  transition: opacity .32s cubic-bezier(.47,1.64,.41,.8);
  transform: translateX(100%);
}
.mobile-menu.open {
  opacity: 1; pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none; border: none; color: var(--neon-cyan);
  font-size: 2rem; margin: 32px 32px 0 0; cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  margin: 48px 0 0 0;
  width: 80vw; max-width: 330px;
  background: #141824;
  border-left: 5px solid var(--neon-cyan);
  border-radius: 24px 0 0 24px;
  box-shadow: 0 6px 32px rgba(16,230,250,0.18);
  padding: 32px 32px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 0px;
  border-radius: 10px;
  transition: color .21s, background .21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--primary);
  background: var(--neon-cyan);
}

@media (max-width: 1080px) {
  nav { gap: 18px; }
  .header-flex { gap: 12px; }
  .cta-btn { padding: 13px 24px; font-size: 1rem; }
}
@media (max-width: 900px) {
  .container { padding: 0 10px; }
  .cta-btn { font-size: 0.95rem; }
  .header-flex { gap: 6px; }
}
@media (max-width: 800px) {
  nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* --- HERO BLOCK --- */
.hero {
  background: linear-gradient(143deg,rgba(24,169,153,0.16) 0%,rgba(22,51,74,0.2) 100%);
  border-radius: 32px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}
.hero .container { padding-top: 36px; padding-bottom: 36px; }
.hero h1 {
  color: var(--neon-cyan);
  text-shadow: 0 2px 28px #16334A90, 0 2px 8px var(--neon-cyan);
}
.hero .cta-btn { margin-top: 30px; }

/* --- FEATURES --- */
.features {
  background: linear-gradient(92deg,rgba(24,169,153,0.09),rgba(22,51,74,0.04) 120%);
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(24,255,163,0.08);
  margin-bottom: 48px;
  padding: 40px 12px;
}
.features h2, .features h3 { color: var(--neon-cyan); }
.features ul, .feature-grid {
  display: flex; flex-wrap: wrap; gap: 28px;
  align-items: flex-start;
  margin: 24px 0 0 0;
}
.features ul li, .feature-grid li {
  background: #182744;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 2px 18px rgba(32,232,250,0.08);
  flex: 1 1 270px;
  min-width: 210px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, background .22s;
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
}
.features ul li:hover, .feature-grid li:hover {
  box-shadow: 0 6px 26px var(--neon-cyan);
  background: #0f182b;
}
.features img { height: 42px; margin-bottom: 7px; }
.features strong, .feature-grid strong { color: var(--neon-cyan); font-size: 1.17em; font-weight: 600; }

/* --- CARDS & TESTIMONIALS --- */
.card-container, .team-member-cards, .article-preview-grid, .course-categories {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card, .team-member-card, .article-preview-grid article, .course-categories li {
  margin-bottom: 20px; position: relative;
  border-radius: 14px;
  background: #162131;
  box-shadow: 0 2px 14px rgba(32,232,250,0.10);
  padding: 24px 20px 20px 20px;
  min-width: 220px;
  flex: 1 1 280px;
  transition: box-shadow .22s, background .21s, transform .23s;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.card:hover, .team-member-card:hover, .article-preview-grid article:hover, .course-categories li:hover {
  box-shadow: 0 8px 38px var(--neon-cyan);
  background: #15202d;
  transform: translateY(-3px) scale(1.015);
}
.team-member-card h3, .article-preview-grid h3, .course-categories h3 { margin-bottom: 13px; color: var(--neon-cyan); }

.testimonial-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px; margin-bottom: 20px;
  background: #F1EDED;
  color: #16334A;
  border-left: 6px solid var(--neon-cyan);
  border-radius: 15px;
  box-shadow: 0 6px 30px #18A99926;
  transition: box-shadow .18s;
  max-width: 600px;
}
.testimonial-card p {
  color: #18334f;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; font-size: 1rem;
  color: #16A899;
}
.testimonial-meta span:last-child {
  color: #FFC21A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

.testimonial-alumni ul {
  margin: 12px 0 0 9px;
  padding-left: 14px;
}
.testimonial-alumni li {
  font-size: 1.01rem;
  color: #F1EDED;
  margin-bottom: 6px;
}

/* --- BLOG ARTICLE LIST --- */
.article-preview-grid {
  gap: 20px;
  margin-top: 18px;
}
.article-preview-grid article {
  min-width: 220px; flex: 1 1 280px;
  display: flex; flex-direction: column;
  border-left: 5px solid var(--neon-cyan);
}
.tags, .expertise-tags {
  font-size: 0.92rem;
  margin-top: 8px;
  color: var(--secondary);
  letter-spacing: 0.045em;
}

.featured-post {
  background: #18A999;
  color: #141824;
  padding: 12px 14px;
  border-radius: 12px;
  margin-top: 26px;
  font-weight: bold;
}
.featured-post a {
  color: #16334A;
  text-decoration: underline;
  font-weight: 600;
  transition: color .17s;
}
.featured-post a:hover { color: var(--neon-cyan); }

/* --- TEAM & MEMBER CARDS --- */
.team-member-cards {
  gap: 24px;
  margin-top: 24px;
  width: 100%;
}
.team-member-card {
  border-left: 5px solid var(--secondary);
}

.expertise-tags {
  color: var(--neon-green);
  margin-top: 6px;
}

/* --- CTA & SERVICES --- */
.cta, .services, .contact-form, .contact-info, .about-short, .case-study-snippet {
  background: linear-gradient(104deg,rgba(24,169,153,0.13),rgba(22,51,74,0.04) 115%);  
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(24,255,163,0.10);
  margin-bottom: 44px;
  padding: 28px 20px;
}
.cta-btn { margin-top: 16px; margin-bottom: 8px; }
.cta ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 0 0;
}
.cta ul li { color: #F1EDED; }

.course-list, .contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 23px 0 22px 0;
}
.course-list li, .contact-details-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--accent);
}
.course-list h3 {
  color: var(--neon-cyan);
  margin-bottom: 9px;
}
.badge {
  background: var(--neon-cyan);
  color: #141824;
  font-size: .83rem;
  border-radius: 9px;
  padding: 4px 10px;
  margin-left: 7px;
  font-weight: 700;
}
.duration-info {
  margin-top: 19px;
  font-size: 1.08rem;
  color: var(--neon-green);
}

.case-study-snippet {
  font-size: 1.07rem;
  background: #0E191D;
  color: #F1EDED;
  border-left: 4px solid var(--neon-cyan);
  margin-top: 13px;
}

/* --- CONTACT & FORMS --- */
.contact-details-list {
  gap: 12px;
}
.contact-details-list li img {
  width: 21px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.privacy-checkbox {
  display: flex; align-items: center; gap: 7px; margin-top: 18px; margin-bottom: 10px;
  color: var(--neon-cyan);
  font-size: 0.99rem;
  font-weight: 500;
}
.privacy-checkbox img {
  width: 23px; height: 23px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  padding: 32px 0 10px 0;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 20px;
}
.footer-row .logo img { height: 38px; }
footer nav {
  display: flex; flex-direction: column; gap: 10px;
}
footer nav a {
  color: #F1EDED; font-size: 1rem; font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 3px;
  transition: color .16s;
}
footer nav a:hover, footer nav a:focus { color: var(--neon-cyan); }
.footer-social {
  display: flex; gap: 18px; margin-bottom: 8px;
}
.footer-social a {
  display: flex;
  width: 34px; height: 34px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  background: #1C2733;
  transition: background .17s;
}
.footer-social a:hover {
  background: var(--neon-cyan);
}
.footer-social img {
  width: 21px; height: 21px;
}
.footer-legal {
  flex-basis: 100%; margin-top: 18px; text-align: left;
}

@media (max-width: 650px) {
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-legal {
    margin-top: 10px;
    text-align: left;
  }
}

/* --- LEGAL SECTIONS --- */
.legal {
  background: #141E2B;
  border-radius: 24px;
  padding: 32px 20px;
  margin-bottom: 48px;
  color: var(--accent);
}
.legal h1, .legal h2 { color: var(--neon-cyan); }
.legal ul { margin: 14px 0 14px 20px; }
.legal li { margin-bottom: 9px; }

/* --- SPACING/UTILITIES --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- RESPONSIVE & MOBILE --- */
@media (max-width: 1080px) {
  .features ul, .feature-grid, .card-container, .team-member-cards, .article-preview-grid, .course-categories {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .footer-social { margin-bottom: 4px; }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.45rem; }
  .section, section, .legal {
    padding: 22px 7px;
    margin-bottom: 32px;
    border-radius: 14px;
  }
  .hero .container {
    padding-top: 18px; padding-bottom: 18px;
  }
  .features ul, .feature-grid, .card-container, .team-member-cards, .article-preview-grid, .course-categories {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section  { flex-direction: column; gap: 18px; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 13px; }
  nav { display:none; }
  .mobile-menu-toggle { display: block; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.11rem; }
  .card,.team-member-card,.article-preview-grid article,.course-categories li {
    padding: 14px 11px 12px 12px;
    min-width: 140px;
    border-radius: 10px;
  }
  .testimonial-card { padding: 12px; border-radius: 8px; }
}

/* --- TRANSITION & MICRO-INTERACTIONS --- */
button, .cta-btn, nav a, footer nav a {
  transition: background .2s, color .16s, box-shadow .16s, border-color .17s;
}
.card, .testimonial-card, .team-member-card, .footer-social a {
  transition: box-shadow .2s, transform .22s, background .19s;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1111;
  background: #1C2733;
  color: var(--accent);
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 -3px 32px rgba(24,255,163,0.14);
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  font-size: 1rem;
  animation: cookieSlideIn .7s cubic-bezier(.45,1.2,.42,0.98);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100px); opacity:0;}
  100%{ transform: translateY(0); opacity:1;}
}
.cookie-banner .cookie-text {
  flex: 1 1 0%; min-width: 160px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 11px 24px;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  margin: 0 2px;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
  cursor: pointer;
}
.cookie-accept {
  background: linear-gradient(92deg,var(--secondary) 86%,var(--neon-green));
  color: #151B29;
  box-shadow: 0 2px 16px #18FFA322;
  transition: background .2s, color .16s;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: linear-gradient(92deg,var(--neon-green),var(--neon-cyan));
  color: var(--primary);
}
.cookie-reject {
  background: #18334A;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F1EDED;
  color: var(--primary);
  border-color: var(--primary);
}
.cookie-settings {
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--neon-cyan);
  color: #16334A;
}
@media (max-width: 720px) {
  .cookie-banner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .cookie-banner .cookie-actions { gap: 9px; }
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal-bg {
  position: fixed; left:0;top:0; right:0;bottom:0;
  width: 100vw; height: 100vh;
  z-index: 1112;
  background: rgba(20,34,55,0.90);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s;
}
.cookie-modal-bg.open {
  pointer-events: auto; opacity: 1;
}
.cookie-modal {
  background: #141824;
  border-radius: 22px;
  min-width: 310px; max-width: 99vw;
  box-shadow: 0 6px 36px #20E8FA27;
  color: var(--accent);
  padding: 34px 34px 24px 34px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookieModalAnim .41s cubic-bezier(.4,1.15,.5,0.96);
}
@keyframes cookieModalAnim {
  0%{ transform: scale(0.92) translateY(48px); opacity: 0; }
  100%{ transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 { color: var(--neon-cyan); margin-bottom: 10px; }
.cookie-modal .cookie-category {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
  padding: 9px 0 7px 0; border-bottom: 1px solid #28354844;
}
.cookie-modal .cookie-category:last-child { border-bottom: none; }
.cookie-modal .cookie-category label {
  font-size: 1.06rem;
  color: var(--accent);
  font-weight: 500;
}
.cookie-modal .cookie-switch {
  appearance: none; width: 40px; height: 20px; background: #1b2a39;
  border-radius: 10px; position: relative; outline: none;
  transition: background .21s; cursor: pointer; border: none;
}
.cookie-modal .cookie-switch:checked {
  background: var(--neon-cyan);
}
.cookie-modal .cookie-switch:before {
  content: '';
  position: absolute; left: 3px; top: 3px;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%; transition: left .21s, background .17s;
}
.cookie-modal .cookie-switch:checked:before {
  left: 23px;
  background: #18334A;
}
.cookie-modal .cookie-category .always-on {
  color: var(--neon-green);
  font-size: 0.97em; font-weight: 700;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 11px 24px;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-modal .modal-accept {
  background: linear-gradient(89deg,var(--secondary),var(--neon-green));
  color: #16334A;
  box-shadow: 0 2px 12px #20E8FA22;
}
.cookie-modal .modal-accept:hover {
  background: linear-gradient(89deg,var(--neon-green) 30%,var(--neon-cyan));
}
.cookie-modal .modal-cancel {
  background: #16334A;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
}
.cookie-modal .modal-cancel:hover {
  background: var(--neon-cyan);
  color: #16334A;
  border-color: var(--primary);
}

/* --- ANIMATIONS/MICROINTERACTIONS --- */
.cta-btn, .cookie-accept, .cookie-modal .modal-accept {
  transition: box-shadow .21s, background .2s, color .15s, transform .14s;
}
.cta-btn:active { transform: scale(0.98); }
.card:active, .team-member-card:active, .footer-social a:active { transform: scale(0.97); }
.mobile-menu { transition: opacity .32s, transform .35s cubic-bezier(.43,1.18,.46,0.86); }
.mobile-menu.open { box-shadow: 0 4px 65px #18A99955; }

/* --- SELECTED ELEMENTS STYLES --- */
::-webkit-scrollbar {
  width: 9px;
  background: #141E2B;
}
::-webkit-scrollbar-thumb {
  background: #18A99977;
  border-radius: 6px;
}
::-webkit-input-placeholder { color: #AFD5CF; }
::-moz-placeholder { color: #AFD5CF; }
:-ms-input-placeholder { color: #AFD5CF; }
::placeholder { color: #AFD5CF; }

/* --- END: GlimSpire Boost TECH FUTURISTIC STYLE --- */
