html {
  scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    margin: 0px;
    background: #f9f9f9;
}
  
#preloader {
    display: none !important;
}

.cvb-LandingStyle {
  	font-family: "Roboto", sans-serif;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
  
.cvb-section-title {
    position: sticky;
    z-index: 999;
    font-size: 24px;
    color: #1c4e80;
    margin: 0px 0px 40px 0px;
}
  
@media (max-width: 768px) {
    .cvb-LandingStyle {
        grid-template-columns: 1fr;
        margin: 0px;
    }

    .cvb-section-title {
        font-size: 1.5rem;
    }
}

.cvb-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 100;
}

/* ===================================== Top Bar ======================================= */
.cvb-topbar {
  width: 100%;
  position: sticky;
  z-index: 999;
}

.cvb-topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cvb-topbar-left {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.cvb-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.cvb-logo img {
  height: 38px;
  width: auto;
}

.cvb-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #1c4e80;
}

.cvb-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
}

#cvb-default-navApp,
#cvb-default-navAppMobile {
  display: none;
}

.cvb-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #1c4e80;
  transition: color 0.3s ease;
}

.cvb-nav a:hover {
  color: #3178d3;
}

.cvb-nav .cvb-btn {
  background: #3178d3;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cvb-nav .cvb-btn:hover {
  background: #28a745;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-actionsRight {
  display: flex;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  gap: 10px;
}

.language-select {
  position: relative;
  display: inline-block;
  width: 130px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1c4e80;
}

.selectedLanguage {
  border: 1px solid #d0d6e1;
  border-radius: 8px;
  padding: 8px 14px;
  background: white;
  display: flex;
  align-items: center;
}

.selectedLanguage .fi {
  margin-right: 8px;
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #d0d6e1;
  border-radius: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: none;
  z-index: 10;
}

.options li {
  padding: 8px 14px;
  display: flex;
  align-items: center;
}

.options li .fi {
  margin-right: 8px;
}

.language-select.open .options {
  display: block;
}

.nav_landing-button,
.nav_flagButton {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav_landing-button {
  background: transparent;
  color: #1c4e80;
  border: 1px solid #1c4e80;
}

.nav_landing-button:hover {
  background: #1c4e80;
  color: #fff;
}

.nav_flagButton {
  background: #3178d3;
  color: #fff;
}

.nav_flagButton:hover {
  background: #28a745;
}

.cvb-menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #1c4e80;
  transition: transform 0.3s ease, color 0.3s ease;
}

.cvb-menu-toggle.active {
  transform: rotate(90deg);
  color: #3178d3;
}

.cvb-topbar-containerMobile {
  display: grid;
  grid-template-columns: 70% 1fr;
  gap: 10px;
  align-items: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  padding: 0 20px;
  transition: 
    max-height 0.45s ease,
    opacity 0.35s ease,
    transform 0.35s ease,
    padding 0.35s ease;
}

.cvb-topbar-containerMobile.active {
  padding: 15px 20px 20px;
  margin: 0px 20px 20px 20px;
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
}

.cvb-nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cvb-nav-mobile a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #1c4e80;
  transition: color 0.3s ease;
}

.cvb-nav-mobile a:hover {
  color: #3178d3;
}

@media (min-width: 768px) {
  .cvb-topbar-containerMobile {
    display: none !important;
  }
}


@media (max-width: 768px) {
  .cvb-topbar-container {
    padding: 10px 20px;
    gap: 5px;
  }

  .cvb-nav ul {
    display: none;
    position: absolute;
    flex-direction: column;
  }

  #loginButton {
    font-size: 0;
  }
  
  #loginButton i {
    font-size: 20px;
  }

  .cvb-menu-toggle {
    display: block;
  }

  .cvb-nav ul {
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  #topBarHelp {
    display: none;
  }
}

/* ================================= Top Bar (USER INFOS) ================================= */

.user-info-container {
  position: relative;
  display: inline-block;
}

.user-info {
  cursor: pointer;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border: 1px solid #e3e9f2;
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 14px;
  color: #1c4e80;
  z-index: 50;
}

.user-dropdown.show {
  display: block;
}

.user-dropdown p {
  margin: 6px 0;
  font-size: 14px;
}

.user-dropdown button {
  margin-top: 10px;
  width: 100%;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fbff;
  border: 1px solid #e3e9f2;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  font-size: 14px;
  color: #1c4e80;
}

.user-avatar {
  background: #3178d3;
  color: #fff;
  font-weight: 600;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.user-info span {
  flex: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav_logout-button {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 6px 7px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav_logout-button:hover {
  background: #c0392b;
}

@media (max-width: 768px) {
  .user-info-container {
    display: flex;
    align-items: center;
  }

  .user-info span {
    display: none !important;
  }
}

/* ============================== Modal Form (Login/Logout) ============================= */

.modal {
  display: none;
  padding: 20px;
  position: fixed;
  inset: 0;
  background: rgba(28, 78, 128, 0.45); /* soft brand overlay */
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 1100;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  display: grid;
  background: #fff;
  padding: 28px 32px;
  border-radius: 16px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  text-align: center;
  animation: slideUp 0.35s ease;
}

.modal-header {
  display: grid;
  grid-template-columns: auto 30px;
  align-items: center;
  margin-bottom: 15px;
}

.modal-header h2 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #1c4e80;
    text-align: left;
}

.close-icon {
  background: transparent;
  border: none;
  font-size: 22px;
  color: #1c4e80;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-icon:hover {
  color: #d34931;
}

.modal-subtitle {
  font-size: 14px;
  color: #555;
  margin: -5px 0 15px;
  text-align: center;
}

.modal input,
.modal textarea {
  font-family: "Roboto", sans-serif;
  padding: 12px 14px;
  min-width: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #d0d7e2;
  background: #f9fbfd;
  font-size: 15px;
  transition: all 0.25s ease;
}

.modal input:focus,
.modal textarea:focus {
  border-color: #3178d3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(49,120,211,0.15);
  outline: none;
}

.modal-dropdown-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.modal-dropdown {
  width: 100%;
  padding: 12px 16px;
  padding-right: 40px;
  border: 1px solid #d9e4f2;
  outline: none;
  border-radius: 12px;
  background: #f4f8fc;
  font-size: 15px;
  font-weight: 500;
  appearance: none;
  cursor: pointer;
  transition: all .25s ease;
}

.modal-dropdown:focus {
  border-color: #3178d3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(49,120,211,.15);
}

.modal-dropdown-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #3178d3;
  pointer-events: none;
}

.modal button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

#loginBtn, #signupBtn, #helpSendBtn {
  background: linear-gradient(90deg, #3178d3, #28a745);
  color: #fff;
}

#loginBtn:hover, #signupBtn:hover, #helpSendBtn:hover {
  background: linear-gradient(90deg, #28a745, #3178d3);
}

.modal .close-btn {
  background: #e9ecef;
  color: #1c4e80;
}

.modal .close-btn:hover {
  background: #dee2e6;
}

.modal-link {
  color: #3178d3;
  font-weight: 500;
  cursor: pointer;
}

.modal-link:hover {
  text-decoration: underline;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.show-password,
.reset-link {
  font-size: 14px;
  color: #007bff;
  cursor: pointer;
  margin: 0;
}

.show-password span:hover,
.reset-link span:hover {
  text-decoration: underline;
}

.login-signup {
  margin: 10px 0px;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #444;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  margin-top: 12px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.google-btn i {
  font-size: 18px;
  color: #DB4437; /* Google red */
}

.google-btn:hover {
  background: #f9f9f9;
  border-color: #ccc;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}

#helpFormContainer {
  display:none;
  text-align:left;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(40px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

/* ============================== Modal Form (USER Infos) ============================= */

.cvb-usertab-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 25px;
  border-bottom: 2px solid #e6ecf5;
}

.cvb-usertab-btn {
  position: relative;
  padding: 10px 2px;
  background: transparent;
  border: none;
  color: #1c4e80;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cvb-usertab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 3px;
  background-color: #3178d3;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cvb-usertab-btn:hover::after {
  width: 100%;
}

.cvb-usertab-btn.active::after {
  width: 100%;
}

.cvb-usertab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.cvb-usertab-content.active {
  display: block;
}

.cvb-usertab-content td {
  text-align:center;
}

.cvb-user-info-container .close-icon {
  float: right;
}

.cvb-user-info-notice {
    font-size: 12px;
    color: #1d1d1d;
}

.cvb-user-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 25px;
}

.cvb-user-subSection {
  display: grid;
  grid-template-columns: 1fr;
}

.cvb-user-section label {
  font-weight: 600;
  color: #1d3656;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.cvb-user-section input {
  padding: 8px 10px;
  border: 1px solid #d6ddeb;
  border-radius: 6px;
  background: #f9fbfd;
  font-size: 14.5px;
  transition: all 0.25s ease;
}

.cvb-user-section input:focus {
  border-color: #3178d3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(49,120,211,0.15);
  outline: none;
}

.cvb-user-section input[type="date"],
.cvb-user-section input[type="tel"] {
  font-family: inherit;
}
.cvb-user-section input::placeholder {
  color: #b0b8c2;
}

.cvb-usertab-tableWrapper {
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #e1e7ef;
  border-radius: 6px;
}

.cvb-usertab-tableWrapper::-webkit-scrollbar {
  width: 6px;
}

.cvb-usertab-tableWrapper::-webkit-scrollbar-thumb {
  background-color: #cfd8e3;
  border-radius: 3px;
}

.cvb-usertab-table {
  width: 100%;
  border-collapse: separate;
}

.cvb-usertab-tableTitle {
  font-size: 13px;
  color: #1c4e80;
  font-weight: 400;
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cvb-usertab-table th {
  background: #f4f7fb;
  color: #1c4e80;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 8px 10px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 2;
}

.cvb-usertab-table td {
  background: #fafafa;
  padding: 6px 10px;
  text-align: center;
  font-size: 14px;
  color: #2d3e50;
}

.cvb-usertab-btn i {
  font-size: 17px;
  vertical-align: middle;
}

.cvb-user-points-display {
  text-align: center;
  margin-bottom: 20px;
}

.cvb-user-points-display h2 {
  font-size: 28px;
  font-weight: 700;
  color: #3178d3;
}

#buyPointsTab select, #buyPointsTab input[type="number"] {
  padding: 8px 10px;
  border: 1px solid #d6ddeb;
  border-radius: 6px;
  background: #f9fbfd;
  font-size: 14.5px;
  transition: all 0.25s ease;
}

#buyPointsTab select:focus, #buyPointsTab input:focus {
  border-color: #3178d3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(49,120,211,0.15);
  outline: none;
}

.cvb-payment-methods {
  border-top: 1px solid #e4e9f1;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
}

.cvb-payment-methods p {
  font-size: 13.5px;
  color: #1d3656;
  margin-bottom: 10px;
  font-weight: 600;
}

.cvb-payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cvb-payment-logos img {
  height: 28px;
  filter: grayscale(40%);
  opacity: 0.9;
  transition: all 0.25s ease;
}

.cvb-payment-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.cvb-user-orders {
  text-align: center;
}

.order-status {
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 13px;
  display: inline-block;
}

.order-status.pending {
  background: #fff5e6;
  color: #a66200;
}

.order-status.completed {
  background: #e6f9ed;
  color: #0f8b2c;
}

.cvb-order-note {
  font-size: 13px;
  color: #4b5563;
  margin-top: 10px;
}

.cvb-order-note i {
  color: #3178d3;
  margin-right: 5px;
}

.cvb-btn-default {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  margin-right: auto;
  padding: 9px 15px;
  background: #3178d3;
  color: white;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.cvb-btn-default i {
  font-size: 15px;
}

.cvb-btn-default:hover {
  background: #1e5bab;
}

.nav_account-button {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  margin-right: auto;
  padding: 7px 10px;
  background: #3178d3;
  color: white;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.nav_account-button i {
  font-size: 13px;
}

.nav_account-button:hover {
  background: #1e5bab;
}

.cvb-user-info-form {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 0px 60px;
}

.cvb-user-info-container {
  background: #fff;
  padding: 30px 35px;
  border-radius: 16px;
  width: 95%;
  max-width: 700px;
  max-height: 420px;
  overflow-y: auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  animation: fadeIn 0.4s ease-in-out;
  backdrop-filter: blur(8px);
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.cvb-user-info-container::-webkit-scrollbar {
  width: 8px;
}

.cvb-user-info-container::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 6px;
}

.cvb-user-info-container::-webkit-scrollbar-thumb:hover {
  background-color: #94a3b8;
}

@media (max-width: 768px) {
  .cvb-user-info-form {
    padding: 0px 10px;
  }

  .cvb-user-info-container {
    padding: 25px 25px;
  }

  .cvb-usertab-btn {
    font-size: 0;
    min-width: 50px;
  }

  .cvb-usertab-btn i {
    font-size: 25px;
  }

  .cvb-user-section {
    grid-template-columns: 1fr;
  }

  .user-info-container {
    display: flex;
    align-items: center;
  }

  .user-info span {
    display: none !important;
  }

  .cvb-usertab-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ================================== General notification =================================== */

.notify-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.notify-content {
  background: #fff;
  border: 3px solid #7acbfd4d;
  padding: 25px 30px;
  border-radius: 14px;
  text-align: center;
  width: 320px;
  max-width: 90%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-out;
  margin: 0px 20px;
}

.notify-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.notify-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.notify-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

.notify-close {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background: #3178d3;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.notify-close:hover {
  background: #245a9c;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.notify-success .notify-icon { color: #28a745; }
.notify-success h3 { color: #28a745; }

.notify-warning .notify-icon { color: #f39c12; }
.notify-warning h3 { color: #f39c12; }

.notify-error .notify-icon { color: #e74c3c; }
.notify-error h3 { color: #e74c3c; }

/* ====================== Top Promo Bar Styles ====================== */
.cvb-top-promo-bar {
  background: linear-gradient(90deg, #3178d3, #28a745);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cvb-top-promo-container {
  text-align: center;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cvb-top-promo-bar p {
    text-align: left;
    margin: 0;
    font-size: 1rem;
    animation: pulseText 2s infinite alternate;
}

.cvb-top-promo-bar strong {
    font-weight: 700;
    text-transform: uppercase;
}

.cvb-top-promo-btn {
    background-color: #fff;
    color: #3178d3;
    font-weight: 600;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.cvb-top-promo-btn:hover {
    transform: translateY(-2px);
    background-color: #28a745;
    color: white;
}

@keyframes pulseText {
    0% { opacity: 1; }
    50% { opacity: 0.85; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .cvb-top-promo-bar {
        flex-direction: column;
        padding: 12px 15px;
    }

    .cvb-top-promo-container {
      grid-template-columns: auto auto;
      gap: 10px;
    }

    .cvb-top-promo-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* =============================== Landing (Hero Section) ============================== */

.cvb-landing-hero-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
    z-index: 100;
}
  
.cvb-landing-hero {
    background: transparent;
    background-size: 200% 200%;
    animation: cvbHeroBgAnim 10s ease infinite;
    color: white;
    text-align: center;
    padding: 0px 40px 30px;
    position: relative;
    overflow: hidden;
	  border-radius: 8px;
}
  
.cvb-landing-hero::after {
  content: "";
  position: absolute;
  right: -210px;
  top: 50%;
  width: 450px;
  height: 450px;
  background: #7acbfd2b;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
  animation: cvbCircleFloat 60s ease-in-out infinite;
}

@keyframes cvbCircleFloat {
  0% {
    transform: translate(0, -50%) scale(1);
  }
  50% {
    transform: translate(-30px, -55%) scale(1.1);
  }
  100% {
    transform: translate(0, -50%) scale(1);
  }
}

@keyframes cvbHeroBgAnim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cvb-hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin: 15px 0px 20px 0px;
    text-shadow: none;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    color: #1d3656 !important;
    line-height: 1.3em;
}

.cvb-hero-subtitle1 {
    font-size: 19px;
    max-width: 700px;
    margin: 0px 0px 20px 0px !important;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
    color: #112033 !important;
    line-height: 30px;
}
  
.cvb-hero-subtitle2 {
    font-size: 14px;
    max-width: 700px;
    margin: 14px 0px 20px 0px !important;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
    color: #112033 !important;
	line-height: 30px;
}
  
.cvb-hero-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: normal;
    align-items: center;
    margin-top: 20px;
}

.cvb-hero-brands img {
    height: 27px !important;
    width: auto;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cvb-hero-brands img:hover {
    transform: scale(1.1);
    opacity: 1;
}
  
.cvb-hero-content {
    position: relative;
  	z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cvb-hero-text {
    flex: 1 1 100px;
    text-align: left;
}

.cvb-hero-image-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.cvb-hero-image-slider {
  display: flex;
  gap: 14px;
  padding: 30px 0px;
  transition: transform 0.3s ease;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cvb-hero-image-slider::-webkit-scrollbar {
  display: none;
}

.cvb-hero-image-slider img {
    width: auto;
    height: 330px !important;
    border-radius: 7px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.cvb-hero-image-slider img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.cvb-scroll-btn {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  padding: 8px 8px;
  font-size: 22px;
  border-radius: 50%;
  color: #1d3656;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 2;
}

.cvb-scroll-btn:hover {
  background-color: rgba(49, 120, 211, 0.9);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.cvb-scroll-btn.left { left: 10px; }
.cvb-scroll-btn.right { right: 10px; }

@media (max-width: 768px) {
  .cvb-scroll-btn.left { left: 0; }
  .cvb-scroll-btn.right { right: 0; }
}


.cvb-cta-button {
    background-color: #3178d3;
    color: white;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: fadeInUp 1.4s ease forwards;
    opacity: 0;
}

.cvb-cta-button:hover {
    animation: backgroundShift 1.5s infinite alternate, fadeInUp 1.4s ease forwards, borderPulse 1.5s infinite alternate;
    transform: translateY(-2px);
    border-color: white;
}

@keyframes backgroundShift {
    0% { background-color: #3178d3; }
    100% { background-color: #28a745; }
}

@keyframes borderPulse {
    0% { box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.6); }
    100% { box-shadow: 0 0 15px 4px rgba(255, 255, 255, 1); }
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  
  .cvb-hero-image-slider img {
    height: 250px !important;
  }
  
  .cvb-container {
    padding: 40px 30px;
  }
  
  .cvb-landing-hero-container {
    padding: 40px 0px 0px 0px;
  }
      
  .cvb-landing-hero {
    padding: 10px 20px 30px;
  }
  
  .cvb-hero-title {
    font-size: 36px !important;
    margin-top: -20px;
  }

  .cvb-hero-subtitle {
    font-size: 1rem;
  }
  
  .cvb-hero-content {
    text-align: center;
    display: grid;
    gap: 10px;
  }
  
  .cvb-hero-image img {
    max-width: 80% !important;
  }

  .cvb-hero-text {
    text-align: center;
  }

  .cvb-hero-image {
    margin-top: 20px;
  }
  
  .cvb-hero-brands {
      justify-content: center;
  }
}

/* ============================ Landing (Features Section) ============================== */
.cvb-feature-container {
    margin: 0px 0px 30px 0px;
    border-radius: 8px;
}
  
.cvb-landing-features {
    padding: 0px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cvb-landing-features::before {
    content: "";
    position: absolute;
    left: -200px;
    top: 50%;
    width: 550px;
    height: 550px;
    background: #7acbfd2b;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 0;
    animation: cvbCircleFloatLeft 60s ease-in-out infinite;
}

@keyframes cvbCircleFloatLeft {
    0% {
        transform: translate(0, -50%) scale(1);
    }
    50% {
        transform: translate(30px, -55%) scale(1.1);
    }
    100% {
        transform: translate(0, -50%) scale(1);
    }
}

.cvb-feature-container h1 {
  font-size: 30px;
  color: #1c4e80;
  margin-bottom: 35px;
  font-weight: 600;
}

.cvb-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cvb-feature-item {
  background: white;
  padding: 20px;
  border: 1px solid #dde4f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}

.cvb-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cvb-feature-item h2 {
  color: #1f497d;
  margin: 10px;
  font-size: 19px;
  z-index: 999;
}

.cvb-feature-item p {
    color: #676767;
    font-size: 15px;
    line-height: 23px;
}
  
.cvb-feature-icon {
  font-size: 40px;
  color: #1f497d;
  margin: 10px 0px 0px 0px;
  display: block;
}
  
@media (max-width: 768px) {
  .cvb-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================ Landing (Landing Expert) ================================ */

.cvb-landing-expert {
    border-radius: 8px;
}

.cvb-expert-container {
    position: relative;
    display: grid;
    grid-template-columns: 50% auto;
    align-items: center;
    gap: 5px;
    padding: 10px 10px 0px 10px;
    z-index: 100;
}

.cvb-expert-title {
	font-size: 26px !important;
    color: #1c4e80 !important;
    margin: 0px 0px 20px 0px !important;
}
  
.cvb-expert-paragraph {
    font-size: 16px;
    color: #173553;
    margin: 0px 0px 20px 0px;
    line-height: 25px;
}

.cvb-expert-text {
    flex: 1 1 400px;
    font-size: 1.1rem;
    color: #333;
}

.cvb-expert-image {
    justify-self: anchor-center;
    min-width: auto;
    width: 350px;
    height: auto;
    transition: transform 0.3s ease;
}

.cvb-expert-image:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .cvb-expert-container {
      grid-template-columns: 1fr;
      padding: 40px 40px 40px 40px;
  }
  .cvb-expert-image {
      width: 100%;
      height: 100%;
  	  margin-top: 15px;
  }
}

/* ============================= Landing (CV Templates Section) =========================== */

.cvb-landing-templates {
  background: #f8fbff;
  padding: 60px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cvb-templates-container {
  max-width: 1100px;
  margin: 0 auto;
}

.cvb-templates-container h1 {
  font-size: 30px;
  color: #1c4e80;
  margin-bottom: 40px;
  font-weight: 600;
}

.cvb-template-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cvb-template-item {
  background: #ffffff;
  border: 1px solid #dde4f0;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cvb-template-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cvb-template-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 16px;
}

.cvb-template-image img {
  width: 100%;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cvb-template-image:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

.cvb-template-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #3178d3;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.cvb-template-image:hover .cvb-template-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.cvb-template-btn:hover {
  background-color: #28a745;
  transform: translate(-50%, -50%) scale(1.1);
}

.cvb-template-title {
  font-size: 1.2rem;
  color: #1f497d;
  margin: 15px 0 8px 0;
}

.cvb-template-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5em;
}

@media (max-width: 900px) {
  .cvb-template-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .cvb-template-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================== Landing (Steps Section) =============================== */

.cvb-landing-steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0px 50px;
  background: #fafafa;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.cvb-landing-steps::before {
  content: "";
  position: absolute;
  right: -210px;
  top: 50%;
  width: 850px;
  height: 850px;
  background: #7acbfd2b;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
  animation: cvbCircleFloat 60s ease-in-out infinite;
}

@keyframes cvbCircleFloat {
  0% {
    transform: translate(0, -50%) scale(1);
  }
  50% {
    transform: translate(-30px, -55%) scale(1.1);
  }
  100% {
    transform: translate(0, -50%) scale(1);
  }
}

.cvb-landing-steps h1 {
  font-size: 28px;
  color: #1c4e80;
  margin-bottom: 0px;
  font-weight: 600;
  text-align: center;
  z-index: 999;
}

.cvb-landing-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 100;
}

#cvb-landing-step1 {
  grid-template-columns: 60% 1fr;
}

#cvb-landing-step2 {
  grid-template-columns: 60% 1fr;
}

#cvb-landing-step3 {
  grid-template-columns: 80% 1fr;
}

.cvb-landing-step.reverse {
  direction: rtl;
}

.cvb-landing-step.reverse .cvb-landing-stepLeft,
.cvb-landing-step.reverse .cvb-landing-stepRight {
  direction: ltr;
}

.cvb-landing-stepLeft {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.cvb-landing-title {
  font-size: 21px;
  font-weight: 600;
  color: #1b2126;
  margin-bottom: 15px;
}

.cvb-landing-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 15px;
}

.cvb-landing-notice {
  display: grid;
  grid-template-columns: min-content 1fr;
  gap: 6px;
}

.cvb-landing-notice i {
  margin-top: 5px;
  color: #707070;
}

.cvb-landing-stepRight img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 5px;
  border: 1px solid #dde4f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

#cvb-landing-stepRightThemes {
  max-height: 450px;
  width: auto;
}

.cvb-landing-stepRight img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .cvb-landing-step {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #cvb-landing-step1,
  #cvb-landing-step2,
  #cvb-landing-step3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cvb-landing-step.reverse {
    direction: ltr;
  }

  .cvb-landing-stepLeft,
  .cvb-landing-stepRight {
    text-align: center;
  }

  .cvb-landing-title {
    font-size: 1.5rem;
  }
}

/* =============================== Landing (Stats Section) ============================== */

.cvb-landing-stats {
  padding: 60px 40px 30px;
}

.cvb-stats-container {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.cvb-stat-item {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  border: 2px solid #7acbfd2b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cvb-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cvb-stat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.cvb-stat-header i {
  font-size: 28px;
  color: #1c4e80;
}

.cvb-stat-item h3 {
  color: #1c4e80;
  font-size: 25px;
  font-weight: 700;
  margin: 0;
}

.cvb-stat-item p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .cvb-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cvb-stat-item {
    padding: 25px 15px;
  }

  .cvb-stat-header i {
    font-size: 24px;
  }

  .cvb-stat-item h3 {
    font-size: 1.5rem;
  }

  .cvb-stat-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .cvb-stats-container {
    grid-template-columns: 1fr;
  }

  .cvb-stat-header i {
    font-size: 22px;
  }

  .cvb-stat-item h3 {
    font-size: 1.4rem;
  }
}

/* ================================ Landing (CTA Section) ================================ */

.cvb-landing-ctaFree {
  text-align: center;
  padding: 30px 30px;
}

.cvb-ctaFree-content {
  max-width: 700px;
  margin: auto;
}

.cvb-ctaFree-content h2 {
  color: #1c4e80;
  font-size: 1.9rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cvb-ctaFree-content p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 35px;
}

/* ================================= Landing (FAQ Section) ============================== */

.cvb-landing-faq {
  background: #fafafa;
  padding: 30px 20px;
}

.cvb-faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.cvb-faq-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #1c4e80;
}

.cvb-faq-content {
  max-height: 300px;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.cvb-faq-content.expanded {
  max-height: 2000px;
}

.cvb-faq-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 20px;
  color: #111;
}

.cvb-faq-content p {
  color: #444;
  line-height: 1.6;
  margin-top: 8px;
}

.cvb-faq-toggle-btn {
  display: block;
  margin: 25px auto 0;
  padding: 12px 28px;
  font-size: 1rem;
  color: #323232;
  background-color: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.cvb-faq-toggle-btn:hover {
  background-color: white;
}

/* ================================= Landing (About Section) ============================== */

.cvb-landing-about {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 40px;
  z-index: 100;
}
  
.cvb-about-title {
    font-size: 32px !important;
    color: #1c4e80 !important;
    margin: 0px 0px 20px 0px !important;
}

.cvb-about-text {
  font-size: 15px;
  max-width: 650px;
  margin: 15px auto 0;
  color: #333;
  line-height: 1.6;
}

.cvb-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}

.cvb-about-left {
  max-width: 600px;
}

.cvb-about-right {
  background: #7acbfd2b;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0px 0px 13px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cvb-about-right:hover {
  transform: translateY(-4px);
  box-shadow: 0px 0px 28px rgba(255, 217, 0, 0.297);
}

.cvb-about-listTitle {
    font-size: 1.3rem !important;
    margin: 0px 0px 18px 0px !important;
    color: #1c4e80 !important;
    font-weight: 700 !important;
}

.cvb-about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cvb-about-list li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cvb-about-list li strong {
  color: #3178d3;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c4e80;
}

@media (max-width: 768px) {
  .cvb-about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cvb-about-right {
    text-align: left;
  }
}

/* =============================== Landing (CTA Section) =============================== */

.cvb-landing-cta {
    border-radius: 12px;
    background: url('https://www.socialpinpoint.com/wp-content/uploads/2022/08/how-diversity-affects-decision-making-in-community-engagement-public-participation.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    margin: 20px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cvb-landing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 134, 221, 0.612), rgba(40, 120, 220, 0.85));
  z-index: 0;
}

.cvb-landing-cta .cvb-container {
  position: relative;
  z-index: 1;
}

.cvb-landing-cta-title {
  font-size: 34px !important;
  font-weight: 900 !important;
  margin-bottom: 24px;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3) !important;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  color: #fff !important;
}
 
@keyframes ctaGlowAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================== Landing (Loading Transition) =========================== */

.cvb-loading-transition {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f8f8f8;
  color: #444;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  animation: fadeIn 0.4s ease-in;
}
  
.cvb-loading-transition::after,
.cvb-loading-transition::before {
  content: "";
  position: absolute;
  top: 60%;
  width: 450px;
  height: 450px;
  background: #c3e6e452;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
  animation: cvbCircleFloat 20s ease-in-out infinite;
}

.cvb-loading-transition::after {
  right: -280px;
}

.cvb-loading-transition::before {
  left: -310px;
  background: #e6c3e452;
  animation-delay: -10s;
  top: 10%;
}

@keyframes cvbCircleFloat {
  0% {
    transform: translate(0, -50%) scale(1);
  }
  50% {
    transform: translate(-30px, -55%) scale(1.1);
  }
  100% {
    transform: translate(0, -50%) scale(1);
  }
}

.cvb-loading-text {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
  max-width: 600px;
  padding: 20px;
  line-height: 1.6;
  z-index: 999;
}

.cvb-loading-text .dots::after {
  content: '...';
  animation: dotsPulse 1.5s infinite steps(3);
}
  
.cvb-loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.cvb-logo-circle {
    width: 110px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 1.8s infinite ease-in-out;
}

.cvb-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 999;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.cvb-progress-bar {
  width: 220px;
  height: 6px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.cvb-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #007BFF, #00BFFF);
  border-radius: 10px;
  animation: progressAnim 1.8s forwards;
}

@keyframes progressAnim {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dotsPulse {
  0% { content: ''; }
  33% { content: '.'; }
  66% { content: '..'; }
  100% { content: '...'; }
}

/* ============================== Landing (Landing Speech) ============================= */

.cvb-landing-speech {
  padding: 20px 20px 30px 20px;
  text-align: center;
  background-color: #f9fbfd;
}

.cvb-landing-speech-text {
	font-size: 14px;
    color: #424242;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================== Landing (Loading Footer) ============================= */

.cvb-footer {
  background-color: #ffffff;
  border-top: 1px solid #e5eaf1;
  padding: 40px 20px 20px 50px;
  font-family: 'Segoe UI', sans-serif;
  color: #1c4e80;
}

.cvb-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.cvb-footer-brand {
  flex: 1 1 200px;
}

.cvb-footer-logo {
  width: 160px;
  margin-bottom: 10px;
}

.cvb-footer-tagline {
  font-size: 0.95rem;
  color: #1c4e80cc;
}

.cvb-footer-nav {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cvb-footer-nav a {
  text-decoration: none;
  color: #1c4e80;
  font-weight: 400;
  transition: color 0.2s ease;
}

.cvb-footer-nav a:hover {
  color: #3b6ba5;
}

.cvb-footer-socials {
  flex: 1 1 150px;
  display: flex;
  gap: 15px;
  font-size: 1.5rem;
}

.cvb-footer-socials a {
  color: #1c4e80;
  transition: color 0.3s ease;
  text-decoration: none;
  border: none;
}

.cvb-footer-socials a:hover {
  color: #3b6ba5;
}

.cvb-footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #888ea2;
}








/* ============================== Privacy Policy ============================= */

.cvb-privacy-policy {
  padding: 60px 20px;
  color: #1c4e80;
  font-family: 'Segoe UI', sans-serif;
}

.cvb-privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0px 35px;
  border-radius: 12px;
}

.cvb-privacy-container h1 {
  font-weight: 700;
  font-size: 2.1rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: #1c4e80;
}

.cvb-privacy-container h2 {
  font-weight: 600;
  margin-top: 30px;
  font-size: 1.4rem;
  color: #1c4e80;
}

.cvb-privacy-container p, 
.cvb-privacy-container ul {
  font-size: 1rem;
  line-height: 1.55;
  margin-top: 10px;
  color: #1c4e80;
}

.cvb-privacy-container ul {
  padding-left: 20px;
}

.updated-date {
  color: #6b7b8c;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.closing-line {
  margin-top: 40px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1c4e80;
  text-align: center;
}
