

:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  
  --footer-bg-color: #7292b5;
  --link-color: #fbfcfe;
  --box-color: #7292b5;
  --header-bg-color: #ffffff;
  --font-family: 'Century Gothic', Arial, sans-serif;
  --nav-link-color: #141414;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}

html {
  overflow-x: hidden;
}

body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

  
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2, h3 {
  color: var(--heading-color);
}



.content-area section {
  margin: 15px 0;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.content-area section.main-section-style-h3-list .main-section-h3-list {
  margin-top: 1rem;
}

.content-area section.main-section-style-h3-list .box {
  padding: 1.35rem 1.5rem;
  border-radius: 8px;
  background: var(--box-color);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  color: #ffffff;
}

.content-area section.main-section-style-h3-list .box h3 {
  margin-bottom: 0.65rem;
}

.content-area section.main-section-style-h3-list .box h3,
.content-area section.main-section-style-h3-list .box a {
  color: #ffffff !important;
}


.content-area section.main-section-style-centered {
  text-align: center;
}


.content-area section.main-section-style-image-bg {
  position: relative;
  overflow: hidden;
  padding: 3.125rem 1.5rem;
  border-radius: 17px;
  background-image: url('/images/workspace-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.content-area section.main-section-style-image-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: color-mix(in srgb, #00000091, transparent 30%);
}

.content-area section.main-section-style-image-bg > :not(.section-style-toolbar) {
  position: relative;
  z-index: 2;
}

.content-area section.main-section-style-image-bg h2,
.content-area section.main-section-style-image-bg h3,
.content-area section.main-section-style-image-bg a {
  color: #ffffff !important;
}


.content-area section.main-section-style-h3-grid .main-section-h3-grid {
  margin-top: 1rem;
}

.content-area section.main-section-style-h3-grid .box {
  height: 100%;
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--body-text-color) 18%, transparent);
  background: var(--box-color);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  color: #ffffff;
}

.content-area section.main-section-style-h3-grid .box h3,
.content-area section.main-section-style-h3-grid .box a {
  margin-bottom: 0.75rem;
  color: #ffffff !important;
}


.content-area section.main-section-style-soft {
  padding: 1.5rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--body-bg-color) 84%, #ffffff);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}


.content-area section.main-section-style-contrast {
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--box-color);
  color: #ffffff;
}

.content-area section.main-section-style-contrast h2,
.content-area section.main-section-style-contrast h3,
.content-area section.main-section-style-contrast a {
  color: #ffffff !important;
}



.content-area a {
  color: orange;
  text-decoration: underline;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

  
  
.sidebar-search-box {
  width: 279px;
  background: var(--header-bg-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 21px 11px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.04);
  margin-bottom: 15px;
}

.sidebar-search-box h3 {
  margin: 0 0 20px;
  font-weight: 700;
  color: var(--nav-link-color) !important;
}

.sidebar-search-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-search-box input[type="search"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  color: var(--body-text-color);
  font-size: 0.95rem;
  font-family: var(--font-family);
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sidebar-search-box input[type="search"]:focus {
  border-color: var(--link-color);
  box-shadow: 0 0 0 4px rgba(176, 54, 54, 0.12);
}

.sidebar-search-box input[type="search"]::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.sidebar-search-box button {
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--box-color);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(59, 104, 91, 0.25);
}

      .sidebar-links {
  width: 279px;
  background: var(--header-bg-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 21px 11px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.04);
  margin-bottom: 15px;
}
.sidebar-links h3 {
  margin: 0 0 20px;
  font-weight: 700;
  color: var(--nav-link-color) !important;
}

.sidebar-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-page-list li {
  list-style: none;
}

.sidebar-page-list a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--nav-link-color);
  background: transparent;
  font-size: 0.98rem;
  font-weight: 500;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.sidebar-page-list a:hover {
  background: rgba(176, 54, 54, 0.08);
  color: var(--link-color);
  transform: translateX(4px);
}

.sidebar-page-list a.active {
  background: var(--box-color);
  color: white;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(59, 104, 91, 0.25);
}
      .twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}


.error_page {
  min-height: 70vh;
}

.footer {
  background: var(--footer-bg-color);
  color: var(--footer-text-color);
  border-top: 1px solid var(--link-color);
}
.footer a {
  text-decoration: none;
  color: var(--footer-text-color) !important;
}
.footer-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  position: relative;
  color: var(--footer-text-color) !important;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  padding-left: 6px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  border: 0;
  outline: 0;
  background: color-mix(in srgb, var(--footer-bg-color) 80%, white 20%);
  color: var(--footer-text-color);
}
.newsletter-form input::placeholder {
  color: var(--footer-text-color);
}
.newsletter-form button {
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  border: 0;
  font-weight: 600;
  background: var(--link-color);
  color: var(--footer-text-color);
  transition: all 0.3s ease;
}
.newsletter-form button:hover {
  background: color-mix(in srgb, var(--link-color) 80%, white 20%);
}
.footer-divider {
  margin: 1.5rem 0;
  border-color: var(--link-color);
}
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 17px;
}
.social-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--footer-text-color);
  background-color: color-mix(in srgb, var(--footer-bg-color), white 20%);
  font-size: 1.2rem;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}
.social-icons span:hover {
  background: linear-gradient(
    135deg,
    var(--link-color),
    var(--footer-text-color)
  );
  transform: translateY(-2px);
} 
.footer img {
        filter: brightness(0) invert(1);
      }

 .navbar {
  background-color: var(--header-bg-color) !important;
  position: sticky; top: 0; z-index: 1020;
}

.hero-section {
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url('/images/workspace-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.555));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

  
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
}
  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }

  .navbar-light .navbar-nav .nav-link.active {
  color: rgb(24, 24, 82);
  font-weight: bold;
}
  /* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}


            

.contact-form{max-width:520px;margin:0 auto;padding:21px;background:#fff;border-radius:18px;border:1px solid rgba(0,0,0,.08);box-shadow:0 24px 48px rgba(0,0,0,.08)}.contact-form h2{font-weight:750;letter-spacing:-.02em}.contact-form .intro{margin-bottom:1.75rem;font-size:1rem;color:#475569}.field{margin-bottom:1.25rem}.field label{display:block;margin-bottom:.35rem;font-size:.9rem;font-weight:600;color:#334155}.field input,.field textarea{width:100%;padding:.85rem .95rem;border-radius:12px;border:1px solid rgba(0,0,0,.14);background:#f8fafc;font-size:.95rem;color:#0f172a;transition:border-color .2s ease,box-shadow .2s ease,background .2s ease}.field input::placeholder,.field textarea::placeholder{color:#94a3b8}.field input:focus,.field textarea:focus{outline:0;background:#fff;border-color:var(--link-color);box-shadow:0 0 0 4px rgba(220,38,38,.15)}.contact-form button{width:100%;margin-top:.5rem;padding:.9rem 1rem;border:0;border-radius:14px;background:var(--link-color);color:#fff;font-size:.95rem;font-weight:700;letter-spacing:-.01em;cursor:pointer;transition:transform .15s ease,box-shadow .2s ease,opacity .2s ease}.contact-form button:hover{transform:translateY(-1px);box-shadow:0 14px 30px var(--link-color, rgba(204, 145, 63, 0.25))}.contact-form .note{display:block;margin-top:1rem;font-size:.82rem;text-align:center;color:#64748b}



.econometric-glass-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(116, 151, 184, 0.38), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(23, 58, 91, 0.32), transparent 34%),
    linear-gradient(135deg, #eef3f8 0%, #dfeaf4 48%, #f7fbff 100%);
  isolation: isolate;
}

.econometric-glass-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(117, 151, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 151, 184, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  opacity: 0.55;
  z-index: -3;
  animation: gridFloat 18s linear infinite;
}

.econometric-glass-section::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -220px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(117, 151, 184, 0.36), transparent 68%);
  filter: blur(8px);
  z-index: -3;
  animation: softPulse 8s ease-in-out infinite;
}

.glass-orb {
  position: absolute;
  border-radius: 999px;
  z-index: -2;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    inset 0 0 35px rgba(255, 255, 255, 0.35),
    0 25px 70px rgba(23, 58, 91, 0.12);
  backdrop-filter: blur(10px);
}

.glass-orb-one {
  width: 190px;
  height: 190px;
  top: 75px;
  left: 5%;
  animation: orbMoveOne 12s ease-in-out infinite;
}

.glass-orb-two {
  width: 130px;
  height: 130px;
  top: 42%;
  right: 9%;
  animation: orbMoveTwo 14s ease-in-out infinite;
}

.glass-orb-three {
  width: 90px;
  height: 90px;
  bottom: 12%;
  left: 16%;
  animation: orbMoveThree 10s ease-in-out infinite;
}

.glass-intro {
  position: relative;
  margin-bottom: 34px;
  padding: 36px 38px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 24px 70px rgba(23, 58, 91, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
}

.glass-intro::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(117, 151, 184, 0.2);
  pointer-events: none;
}

.econometric-glass-section h2 {
  position: relative;
  margin-bottom: 18px;
  color: #0f1720;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.econometric-glass-section h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #173a5b, #7497b8, rgba(116, 151, 184, 0));
}

.econometric-glass-section p {
  color: #263645;
  font-size: 16px;
  line-height: 1.78;
}

.box-one {
  position: relative;
  height: 100%;
  padding: 38px 34px 34px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at top right, rgba(116, 151, 184, 0.22), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 26px 70px rgba(23, 58, 91, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  animation: cardReveal 0.8s ease both;
}

.box-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.55) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.box-one::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -65px;
  top: -65px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 151, 184, 0.34), transparent 68%);
  z-index: -1;
}

.box-one:hover {
  transform: translateY(-10px);
  border-color: rgba(116, 151, 184, 0.62);
  box-shadow:
    0 34px 90px rgba(23, 58, 91, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.box-one:hover::before {
  transform: translateX(120%);
}

.box-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #173a5b 0%, #7497b8 100%);
  box-shadow:
    0 18px 38px rgba(23, 58, 91, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: iconFloat 4.5s ease-in-out infinite;
}

.box-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(116, 151, 184, 0.3);
  animation: iconRing 2.8s ease-in-out infinite;
}

.box-icon i {
  font-size: 34px;
  line-height: 1;
}

.box-one h3 {
  margin-bottom: 18px;
  color: #0f1720;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.box-one h4 {
  position: relative;
  display: inline-block;
  margin-top: 22px;
  margin-bottom: 12px;
  padding: 8px 15px;
  border-radius: 999px;
  color: #173a5b;
  font-size: 1.12rem;
  font-weight: 700;
  background: rgba(116, 151, 184, 0.14);
  border: 1px solid rgba(116, 151, 184, 0.22);
}

.box-one h4::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7497b8, transparent);
}

.box-one p {
  margin-bottom: 14px;
}

@keyframes gridFloat {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 42px 42px, 42px 42px;
  }
}

@keyframes softPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes orbMoveOne {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(34px, 22px, 0);
  }
}

@keyframes orbMoveTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-28px, 35px, 0);
  }
}

@keyframes orbMoveThree {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(24px, -28px, 0);
  }
}

@keyframes cardReveal {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-7px) rotate(2deg);
  }
}

@keyframes iconRing {
  0%, 100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.3;
  }
}

@media (max-width: 991.98px) {
  .econometric-glass-section {
    padding: 70px 0;
  }

  .glass-intro,
  .box-one {
    padding: 30px 24px;
  }
}

@media (max-width: 575.98px) {
  .econometric-glass-section {
    padding: 55px 0;
  }

  .glass-intro,
  .box-one {
    border-radius: 22px;
  }

  .box-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .box-icon i {
    font-size: 28px;
  }
}
  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }
  