@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("https://domain.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://domain.com/fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #000000;
  --primary-color: #123453;
  --accent-color: #bc8c62;
  --warning-color: red;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}


/* header */

.elite-nav-bar {
  background: linear-gradient(180deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.85) 100%);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.5s ease-in-out;
}

.elite-nav-bar.scrolled {
  background: linear-gradient(180deg, rgba(10, 25, 47, 1) 0%, rgba(10, 25, 47, 0.95) 100%);
}

.elite-nav-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 5vw, 40px);
  animation: elegantFadeIn 1s ease-out forwards;
}

.prestige-emblem {
  max-width: 60px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.prestige-emblem:hover {
  filter: brightness(1.1) drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
  transform: rotate(5deg) scale(1.05);
}

.prestige-emblem__graphic {
  width: 100%;
  height: auto;
}

.executive-navigation {
  display: none;
}

@media screen and (min-width: 1200px) {
  .executive-navigation {
    display: block;
  }
}

.executive-navigation__entries {
  display: flex;
  align-items: center;
  gap: clamp(25px, 4vw, 35px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.executive-navigation__anchor {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.executive-navigation__anchor::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  transition: width 0.4s ease;
}

.executive-navigation__anchor:hover {
  color: #ffd700;
}

.executive-navigation__anchor:hover::after {
  width: 100%;
}

.elite-nav-controls {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 25px);
}

.prestige-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg, #ffd700 0%, #ffaa00 100%);
  color: #0a192f;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}

.prestige-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  background: linear-gradient(45deg, #ffaa00 0%, #ffd700 100%);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-toggle__line {
  width: 100%;
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.mobile-toggle.active .mobile-toggle__line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-toggle.active .mobile-toggle__line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .mobile-toggle__line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media screen and (min-width: 1200px) {
  .mobile-toggle {
    display: none;
  }
}

.prestige-mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80vw;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.prestige-mobile-panel.active {
  right: 0;
}

.prestige-mobile-panel__entries {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 20px;
}

.prestige-mobile-panel__anchor {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  display: block;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.prestige-mobile-panel__anchor:hover {
  color: #ffd700;
  transform: scale(1.05);
}

.prestige-mobile-panel__anchor.initiate-action,
.prestige-mobile-panel__anchor.locale-selector {
  background: linear-gradient(45deg, #ffd700 0%, #ffaa00 100%);
  color: #0a192f;
  font-weight: 600;
  border-radius: 30px;
  padding: 15px 30px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestige-mobile-panel__anchor.initiate-action:hover,
.prestige-mobile-panel__anchor.locale-selector:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

@keyframes elegantFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .elite-nav-layout {
    gap: 10px;
  }
  .prestige-button {
    padding: 10px 20px;
    font-size: clamp(13px, 1.7vw, 15px);
  }
  .prestige-emblem {
    max-width: 50px;
  }
}

/* --------------------hero---------------------- */

.sovereign-portal {
  padding: clamp(120px, 18vh, 180px) 0;
  background: linear-gradient(160deg, #e8eff7 0%, #c9d6e5 100%);
  color: #0d2842;
  overflow: hidden;
  position: relative;
}

.sovereign-portal::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  opacity: 0.8;
  animation: subtleGlow 5s ease-in-out infinite alternate;
}

.sovereign-framework {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 6vw, 50px);
}

.discourse-compartment {
  max-width: 48%;
  opacity: 0;
  transform: perspective(800px) rotateY(-15deg) translateY(40px);
  animation: elegantUnveil 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.apex-proclamation {
  font-size: clamp(38px, 6.5vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.polished-exposition {
  font-size: clamp(17px, 2.6vw, 21px);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 85%;
}

.commence-expedition {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #0d2842 0%, #1e4b70 100%);
  color: #ffffff;
  border-radius: 40px;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(13, 40, 66, 0.25);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: elegantUnveil 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.commence-expedition::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 50%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  opacity: 0;
}

.commence-expedition:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(13, 40, 66, 0.35);
}

.commence-expedition:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.emblematic-portrait {
  max-width: 48%;
  flex-shrink: 0;
  position: relative;
  opacity: 0;
  transform: perspective(800px) rotateY(15deg) translateY(40px);
  animation: elegantUnveil 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

.emblematic-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.5s ease;
  z-index: -1;
}

.emblematic-portrait:hover::before {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.emblematic-portrait__canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.emblematic-portrait:hover .emblematic-portrait__canvas {
  transform: scale(1.04);
}

@keyframes elegantUnveil {
  to {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg) translateY(0);
  }
}

@keyframes subtleGlow {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 0.4;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .sovereign-framework {
    flex-direction: column;
    gap: 40px;
  }
  .discourse-compartment {
    max-width: 100%;
    text-align: center;
  }
  .polished-exposition {
    max-width: 100%;
  }
  .emblematic-portrait {
    max-width: 100%;
    width: 100%;
  }
  .commence-expedition {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .apex-proclamation {
    font-size: clamp(30px, 8.5vw, 42px);
  }
  .polished-exposition {
    font-size: clamp(15px, 3.2vw, 19px);
  }
  .commence-expedition {
    padding: 12px 28px;
    font-size: clamp(14px, 2.1vw, 16px);
  }
}

/* ------------rating----------------------- */

.imperial-accolade-forum {
  padding: clamp(40px, 8vh, 60px) 0;
  color: #ffffff;
}

.sovereign-commendation-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 4vw, 30px);
  justify-items: center;
}

.paramount-valuation-entity {
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(15px, 4vw, 25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  animation: majesticEmergence 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.paramount-valuation-entity:nth-child(1) {
  animation-delay: 0.2s;
}

.paramount-valuation-entity:nth-child(2) {
  animation-delay: 0.4s;
}

.paramount-valuation-entity:nth-child(3) {
  animation-delay: 0.6s;
}

.paramount-valuation-entity:nth-child(4) {
  animation-delay: 0.8s;
}

.paramount-valuation-entity:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.eminent-endorsement-crown {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.eminent-endorsement-crown__emblem {
  width: 100%;
  height: auto;
  max-height: 30px;
  max-width: 30px;
  object-fit: cover;
  transition: filter 0.4s ease;
}


.eminent-endorsement-crown__emblem.fff {
  width: 100%;
  height: auto;
  max-height: 30px;
  max-width: 120px;
  object-fit: cover;
  transition: filter 0.4s ease;
}

.eminent-endorsement-crown:hover .eminent-endorsement-crown__emblem {
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.eminent-endorsement-crown__descriptor {
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 600;
  color: #ffd700;
}

.regal-appraisal-core {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.regal-appraisal-core__metric {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffd700;
}

.regal-appraisal-core__constellation {
  display: flex;
  gap: 6px;
}

.regal-appraisal-core__accolade {
  width: clamp(16px, 2.2vw, 20px);
  height: clamp(16px, 2.2vw, 20px);
  color: #ffd700;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.regal-appraisal-core__accolade.full-glow {
  fill: #ffd700;
}

.regal-appraisal-core__accolade.half-glow {
  fill: none;
  stroke: #ffd700;
}

.regal-appraisal-core__constellation:hover .regal-appraisal-core__accolade {
  transform: rotate(360deg);
  filter: drop-shadow(0 0 5px #ffd700);
}

@keyframes majesticEmergence {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sovereign-commendation-matrix {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .paramount-valuation-entity {
    max-width: none;
  }
}

@media (max-width: 360px) {
  .sovereign-commendation-matrix {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .regal-appraisal-core__metric {
    font-size: 20px;
  }
  .regal-appraisal-core__accolade {
    width: 14px;
    height: 14px;
  }
}

/* ------------------------about------------------------------ */

.noble-virtue-gallery {
  padding: clamp(80px, 14vh, 120px) 0;
  background: linear-gradient(170deg, #0a192f 0%, #1e3a8a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.noble-virtue-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
  animation: radiantGlow 10s ease-in-out infinite;
}

.exalted-introduction {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.majestic-vision-statement {
  font-size: clamp(32px, 6vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  opacity: 0;
  transform: perspective(800px) rotateX(-20deg);
  animation: grandEntrance 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.2s forwards;
}

.luminous-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  margin: 20px auto 0;
  opacity: 0;
  transform: scaleX(0);
  animation: dividerExpand 1.6s cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

.prestigious-merit-collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: 60px;
}

@media (max-width: 1200px) {
  .prestigious-merit-collection {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .prestigious-merit-collection {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.illustrious-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: clamp(25px, 4vw, 30px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  position: relative;
}

.illustrious-feature-card:nth-child(1) { animation-delay: 0.3s; }
.illustrious-feature-card:nth-child(2) { animation-delay: 0.45s; }
.illustrious-feature-card:nth-child(3) { animation-delay: 0.6s; }
.illustrious-feature-card:nth-child(4) { animation-delay: 0.75s; }
.illustrious-feature-card:nth-child(5) { animation-delay: 0.9s; }
.illustrious-feature-card:nth-child(6) { animation-delay: 1.05s; }

.illustrious-feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.illustrious-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.2)) border-box;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.illustrious-feature-card:hover::before {
  opacity: 1;
}

.illustrious-feature-card__visual {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.illustrious-feature-card__visual__image {
  width: 100%;
  height: clamp(240px, 35vw, 280px);
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.illustrious-feature-card:hover .illustrious-feature-card__visual__image {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.illustrious-feature-card__visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 25, 47, 0.3) 100%);
  transition: opacity 0.5s ease;
}

.illustrious-feature-card:hover .illustrious-feature-card__visual__overlay {
  opacity: 0.7;
}

.illustrious-feature-card__content {
  text-align: center;
}

.illustrious-feature-card__title {
  font-size: clamp(22px, 2.7vw, 26px);
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.illustrious-feature-card__description {
  font-size: clamp(15px, 2.2vw, 17px);
  color: #d1d5db;
  line-height: 1.7;
}

.embark-venture {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  padding: 16px 32px;
  background: linear-gradient(45deg, #ffd700 0%, #ffaa00 100%);
  color: #0a192f;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 1.2s forwards;
}

.embark-venture:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.embark-venture::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
}

.embark-venture:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes grandEntrance {
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
}

@keyframes dividerExpand {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes nobleAscension {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes radiantGlow {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .noble-virtue-gallery {
    padding: clamp(50px, 10vh, 70px) 0;
  }
  .majestic-vision-statement {
    font-size: clamp(28px, 7vw, 36px);
  }
  .luminous-divider {
    width: 60px;
  }
  .illustrious-feature-card__visual__image {
    height: clamp(200px, 40vw, 240px);
  }
  .illustrious-feature-card__title {
    font-size: clamp(20px, 3vw, 24px);
  }
  .illustrious-feature-card__description {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  .embark-venture {
    max-width: 180px;
    padding: 14px 28px;
    font-size: clamp(15px, 2.1vw, 17px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .noble-virtue-gallery {
    padding: clamp(40px, 8vh, 60px) 0;
  }
  .majestic-vision-statement {
    font-size: clamp(24px, 6.5vw, 32px);
  }
  .prestigious-merit-collection {
    gap: 15px;
  }
  .illustrious-feature-card {
    padding: 20px;
  }
  .illustrious-feature-card__visual__image {
    height: 180px;
  }
  .illustrious-feature-card__title {
    font-size: 18px;
  }
  .illustrious-feature-card__description {
    font-size: 13px;
  }
  .embark-venture {
    max-width: 160px;
    padding: 12px 24px;
    font-size: 14px;
  }
}


/* ----------------------services---------------------------- */

.imperial-expertise-realm {
  padding: clamp(80px, 14vh, 120px) 0;
  background: linear-gradient(160deg, #0a192f 0%, #112240 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.imperial-expertise-realm::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 10%, transparent 50%);
  animation: etherealPulse 12s ease-in-out infinite;
}

.exalted-service-prologue {
  text-align: center;
  margin-bottom: 60px;
}

.sovereign-expertise-decree {
  font-size: clamp(32px, 6vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffd700;
  opacity: 0;
  transform: perspective(800px) rotateX(-20deg);
  animation: majesticUnveil 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.2s forwards;
}

.refined-expertise-context {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.7;
  color: #d1d5db;
  max-width: 700px;
  margin: 20px auto 0;
  opacity: 0;
  transform: translateY(30px);
  animation: majesticUnveil 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

.luminous-expertise-divider {
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  margin: 25px auto 0;
  opacity: 0;
  transform: scaleX(0);
  animation: dividerStretch 1.6s cubic-bezier(0.33, 1, 0.68, 1) 0.6s forwards;
}

.opulent-capability-vault {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: 80px;
}

@media (max-width: 1200px) {
  .opulent-capability-vault {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .opulent-capability-vault {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.regal-tool-exhibit {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: clamp(25px, 4vw, 30px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  animation: regalAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.regal-tool-exhibit:nth-child(1) { animation-delay: 0.3s; }
.regal-tool-exhibit:nth-child(2) { animation-delay: 0.45s; }
.regal-tool-exhibit:nth-child(3) { animation-delay: 0.6s; }
.regal-tool-exhibit:nth-child(4) { animation-delay: 0.75s; }

.regal-tool-exhibit:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.regal-tool-exhibit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.15));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.regal-tool-exhibit:hover::before {
  opacity: 1;
}

.regal-tool-exhibit__emblem {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  position: relative;
}

.regal-tool-exhibit__emblem svg {
  width: 100%;
  height: 100%;
  color: #ffd700;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.regal-tool-exhibit:hover .regal-tool-exhibit__emblem svg {
  transform: rotate(360deg);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.regal-tool-exhibit__proclamation {
  font-size: clamp(22px, 2.7vw, 26px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.regal-tool-exhibit__elucidation {
  font-size: clamp(15px, 2.2vw, 17px);
  color: #d1d5db;
  line-height: 1.7;
}

.eminent-transaction-showcase {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 60px);
  opacity: 0;
  transform: translateY(50px);
  animation: regalAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.9s forwards;
}

@media (max-width: 991px) {
  .eminent-transaction-showcase {
    flex-direction: column;
    gap: 30px;
  }
}

.eminent-transaction-showcase__portrait {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.eminent-transaction-showcase__portrait__canvas {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.eminent-transaction-showcase:hover .eminent-transaction-showcase__portrait__canvas {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.eminent-transaction-showcase__portrait__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 25, 47, 0.4) 100%);
  transition: opacity 0.5s ease;
}

.eminent-transaction-showcase:hover .eminent-transaction-showcase__portrait__veil {
  opacity: 0.6;
}

.eminent-transaction-showcase__narrative {
  flex: 1;
}

.eminent-transaction-showcase__edict {
  font-size: clamp(28px, 4.5vw, 38px);
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.eminent-transaction-showcase__edict span {
  display: block;
  color: #ffffff;
}

.eminent-transaction-showcase__chronicle {
  font-size: clamp(16px, 2.3vw, 18px);
  color: #d1d5db;
  line-height: 1.7;
  max-width: 500px;
}

@keyframes majesticUnveil {
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg) translateY(0);
  }
}

@keyframes dividerStretch {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes regalAscension {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes etherealPulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.15);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .imperial-expertise-realm {
    padding: clamp(50px, 10vh, 70px) 0;
  }
  .sovereign-expertise-decree {
    font-size: clamp(28px, 7vw, 36px);
  }
  .refined-expertise-context {
    font-size: clamp(14px, 3vw, 18px);
    max-width: 90%;
  }
  .luminous-expertise-divider {
    width: 80px;
  }
  .regal-tool-exhibit__proclamation {
    font-size: clamp(20px, 3vw, 24px);
  }
  .regal-tool-exhibit__elucidation {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  .eminent-transaction-showcase__edict {
    font-size: clamp(24px, 5vw, 32px);
  }
  .eminent-transaction-showcase__chronicle {
    font-size: clamp(14px, 2.5vw, 16px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .imperial-expertise-realm {
    padding: clamp(40px, 8vh, 60px) 0;
  }
  .sovereign-expertise-decree {
    font-size: clamp(24px, 6.5vw, 32px);
  }
  .refined-expertise-context {
    font-size: 14px;
  }
  .opulent-capability-vault {
    gap: 15px;
  }
  .regal-tool-exhibit {
    padding: 20px;
  }
  .regal-tool-exhibit__emblem {
    width: 40px;
    height: 40px;
  }
  .regal-tool-exhibit__proclamation {
    font-size: 18px;
  }
  .regal-tool-exhibit__elucidation {
    font-size: 13px;
  }
  .eminent-transaction-showcase__edict {
    font-size: 22px;
  }
  .eminent-transaction-showcase__chronicle {
    font-size: 13px;
  }
}

/* -----------------------help------------------------ */

.prime-knowledge-sanctuary {
  padding: clamp(80px, 14vh, 120px) 0;
  background: linear-gradient(165deg, #0a192f 0%, #112240 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.prime-knowledge-sanctuary::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 10%, transparent 50%);
  animation: etherealRadiance 10s ease-in-out infinite;
}

.majestic-learning-gateway {
  text-align: center;
  margin-bottom: 60px;
}

.exalted-wisdom-declaration {
  font-size: clamp(32px, 6vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffd700;
  opacity: 0;
  transform: perspective(800px) rotateX(-20deg);
  animation: grandRevelation 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.2s forwards;
}

.polished-guidance-narrative {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.7;
  color: #d1d5db;
  max-width: 700px;
  margin: 20px auto 0;
  opacity: 0;
  transform: translateY(30px);
  animation: grandRevelation 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

.radiant-wisdom-divider {
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  margin: 25px auto 0;
  opacity: 0;
  transform: scaleX(0);
  animation: dividerUnfurl 1.6s cubic-bezier(0.33, 1, 0.68, 1) 0.6s forwards;
}

.opulent-knowledge-repository {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: 60px;
}

.illustrious-resource-module {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: clamp(25px, 4vw, 30px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  animation: nobleEmergence 1.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.illustrious-resource-module:nth-child(1) { animation-delay: 0.3s; }
.illustrious-resource-module:nth-child(2) { animation-delay: 0.45s; }
.illustrious-resource-module:nth-child(3) { animation-delay: 0.6s; }
.illustrious-resource-module:nth-child(4) { animation-delay: 0.75s; }
.illustrious-resource-module:nth-child(5) { animation-delay: 0.9s; }

.illustrious-resource-module:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.illustrious-resource-module::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.2));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.illustrious-resource-module:hover::before {
  opacity: 1;
}

.illustrious-resource-module__core {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.illustrious-resource-module__edict {
  font-size: clamp(22px, 2.7vw, 26px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.illustrious-resource-module__exposition {
  font-size: clamp(15px, 2.2vw, 17px);
  color: #d1d5db;
  line-height: 1.7;
  flex-grow: 1;
}

.commence-discovery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 180px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #ffd700 0%, #ffaa00 100%);
  color: #0a192f;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.9vw, 16px);
  white-space: nowrap;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-top: 20px;
}

.commence-discovery:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.commence-discovery::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
}

.commence-discovery:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.commence-discovery svg {
  width: 20px;
  height: 20px;
  color: #0a192f;
  transition: transform 0.4s ease;
}

.commence-discovery:hover svg {
  transform: translateX(5px);
}

.embark-quest {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  padding: 16px 32px;
  background: linear-gradient(45deg, #ffd700 0%, #ffaa00 100%);
  color: #0a192f;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: nobleEmergence 1.4s cubic-bezier(0.33, 1, 0.68, 1) 1.1s forwards;
}

.embark-quest:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.embark-quest::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
}

.embark-quest:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes grandRevelation {
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg) translateY(0);
  }
}

@keyframes dividerUnfurl {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes nobleEmergence {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes etherealRadiance {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .opulent-knowledge-repository {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .prime-knowledge-sanctuary {
    padding: clamp(40px, 8vh, 60px) 0;
  }
  .majestic-learning-gateway {
    margin-bottom: 40px;
  }
  .exalted-wisdom-declaration {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.3;
    padding: 0 15px;
  }
  .polished-guidance-narrative {
    font-size: clamp(14px, 3.5vw, 16px);
    max-width: 90%;
    padding: 0 15px;
  }
  .radiant-wisdom-divider {
    width: 70px;
    height: 4px;
  }
  .illustrious-resource-module {
    padding: clamp(20px, 5vw, 25px);
    border-radius: 10px;
  }
  .illustrious-resource-module__edict {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 12px;
  }
  .illustrious-resource-module__exposition {
    font-size: clamp(13px, 3vw, 15px);
    line-height: 1.6;
  }
  .commence-discovery {
    max-width: 160px;
    padding: 10px 20px;
    font-size: clamp(12px, 2.5vw, 14px);
    border-radius: 25px;
    margin: 15px auto 0;
    display: flex;
    justify-content: center;
  }
  .commence-discovery svg {
    width: 18px;
    height: 18px;
  }
  .embark-quest {
    max-width: 180px;
    padding: 12px 24px;
    font-size: clamp(14px, 2.5vw, 16px);
    border-radius: 25px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .prime-knowledge-sanctuary {
    padding: clamp(30px, 6vh, 50px) 0;
  }
  .majestic-learning-gateway {
    margin-bottom: 30px;
  }
  .exalted-wisdom-declaration {
    font-size: clamp(20px, 5.5vw, 28px);
  }
  .polished-guidance-narrative {
    font-size: clamp(12px, 3vw, 14px);
  }
  .radiant-wisdom-divider {
    width: 60px;
    height: 3px;
  }
  .opulent-knowledge-repository {
    gap: 15px;
    margin-bottom: 30px;
  }
  .illustrious-resource-module {
    padding: 15px;
  }
  .illustrious-resource-module__edict {
    font-size: clamp(16px, 3.5vw, 18px);
    margin-bottom: 10px;
  }
  .illustrious-resource-module__exposition {
    font-size: clamp(12px, 2.5vw, 13px);
  }
  .commence-discovery {
    max-width: 140px;
    padding: 8px 16px;
    font-size: clamp(11px, 2vw, 12px);
  }
  .commence-discovery svg {
    width: 16px;
    height: 16px;
  }
  .embark-quest {
    max-width: 160px;
    padding: 10px 20px;
    font-size: clamp(12px, 2vw, 14px);
  }
}

/* ----------------------join, form---------------------------- */

.illustrious-enrollment-chamber {
  padding: clamp(80px, 14vh, 120px) 0;
  background: linear-gradient(145deg, #f0f4f8 0%, #d9e2ec 100%);
  position: relative;
  overflow: hidden;
}

.illustrious-enrollment-chamber::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 10%, transparent 50%);
  animation: luminousPulse 12s ease-in-out infinite;
}

.exalted-invitation-portal {
  text-align: center;
  margin-bottom: 60px;
}

.noble-venture-decree {
  font-size: clamp(32px, 6vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #0d2842;
  opacity: 0;
  transform: perspective(800px) rotateX(-20deg);
  animation: exaltedReveal 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.2s forwards;
}

.refined-venture-context {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.7;
  color: #4a5568;
  max-width: 700px;
  margin: 20px auto 0;
  opacity: 0;
  transform: translateY(30px);
  animation: exaltedReveal 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

.luminous-invitation-divider {
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  margin: 25px auto 0;
  opacity: 0;
  transform: scaleX(0);
  animation: dividerExpand 1.6s cubic-bezier(0.33, 1, 0.68, 1) 0.6s forwards;
}

.opulent-enrollment-manuscript {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: clamp(30px, 5vw, 40px);
  box-shadow: 0 12px 30px rgba(13, 40, 66, 0.1);
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 4vw, 35px);
  opacity: 0;
  transform: translateY(50px);
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.8s forwards;
}

.regal-input-domain {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.regal-input-domain:nth-child(1) { animation-delay: 0.9s; }
.regal-input-domain:nth-child(2) { animation-delay: 1.0s; }
.regal-input-domain:nth-child(3) { animation-delay: 1.1s; }
.regal-input-domain:nth-child(4) { animation-delay: 1.2s; }
.regal-input-domain:nth-child(5) { animation-delay: 1.3s; }

.regal-input-domain__inscription {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  color: #0d2842;
  position: relative;
  z-index: 2;
}

.regal-input-domain__entry,
.regal-input-domain__parchment {
  padding: 14px 18px;
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(45deg, #ffd700, #ffaa00) border-box;
  font-size: clamp(15px, 2vw, 17px);
  color: #0d2842;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.regal-input-domain__entry:focus,
.regal-input-domain__parchment:focus {
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
  transform: scale(1.02);
  outline: none;
}

.regal-input-domain__parchment {
  resize: vertical;
  min-height: 140px;
}

.regal-input-domain__codicil {
  font-size: clamp(13px, 1.7vw, 15px);
  color: #4a5568;
  text-align: center;
  margin: 0;
}

.regal-input-domain__codicil__link {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.regal-input-domain__codicil__link:hover {
  color: #ffaa00;
}

.commit-venture {
  max-width: 200px;
  margin: 0 auto;
  padding: 16px 32px;
  background: linear-gradient(45deg, #ffd700 0%, #ffaa00 100%);
  color: #0a192f;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.commit-venture:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.commit-venture::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
}

.commit-venture:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes exaltedReveal {
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg) translateY(0);
  }
}

@keyframes dividerExpand {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes nobleAscension {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luminousPulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .illustrious-enrollment-chamber {
    padding: clamp(50px, 10vh, 70px) 0;
  }
  .noble-venture-decree {
    font-size: clamp(28px, 7vw, 36px);
  }
  .refined-venture-context {
    font-size: clamp(14px, 3vw, 18px);
    max-width: 90%;
  }
  .luminous-invitation-divider {
    width: 80px;
  }
  .opulent-enrollment-manuscript {
    padding: clamp(20px, 4vw, 30px);
    gap: 20px;
  }
  .regal-input-domain__inscription {
    font-size: clamp(14px, 2.1vw, 16px);
  }
  .regal-input-domain__entry,
  .regal-input-domain__parchment {
    padding: 12px 16px;
    font-size: clamp(14px, 2.1vw, 16px);
  }
  .regal-input-domain__parchment {
    min-height: 120px;
  }
  .regal-input-domain__codicil {
    font-size: clamp(12px, 1.6vw, 14px);
  }
  .commit-venture {
    max-width: 180px;
    padding: 14px 28px;
    font-size: clamp(15px, 2.1vw, 17px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .illustrious-enrollment-chamber {
    padding: clamp(40px, 8vh, 60px) 0;
  }
  .noble-venture-decree {
    font-size: clamp(24px, 6.5vw, 32px);
  }
  .refined-venture-context {
    font-size: 14px;
  }
  .opulent-enrollment-manuscript {
    padding: 15px;
    gap: 15px;
  }
  .regal-input-domain__inscription {
    font-size: 13px;
  }
  .regal-input-domain__entry,
  .regal-input-domain__parchment {
    padding: 10px 14px;
    font-size: 13px;
  }
  .regal-input-domain__parchment {
    min-height: 100px;
  }
  .regal-input-domain__codicil {
    font-size: 11px;
  }
  .commit-venture {
    max-width: 160px;
    padding: 12px 24px;
    font-size: 14px;
  }
}

fieldset {
    border: none !important;
}

/* --------------------------footer--------------------------- */

.imperial-foundation-vault {
  padding: clamp(60px, 10vh, 80px) 0;
  background: linear-gradient(160deg, #0a192f 0%, #112240 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.imperial-foundation-vault::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 10%, transparent 50%);
  animation: celestialPulse 12s ease-in-out infinite;
}

.exalted-contact-ensemble {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.2s forwards;
}

@media (max-width: 768px) {
  .exalted-contact-ensemble {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.noble-emblem-anchor {
  display: block;
  width: 80px;
  opacity: 0;
  transform: scale(0.9);
  animation: emblemReveal 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.3s forwards;
}

.noble-emblem-anchor:hover {
  transform: scale(1.05);
}

.noble-emblem-anchor__sigil {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
  transition: filter 0.4s ease;
}

.noble-emblem-anchor:hover .noble-emblem-anchor__sigil {
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.regal-communication-triad {
  display: flex;
  gap: clamp(20px, 3vw, 30px);
  align-items: center;
}

@media (max-width: 768px) {
  .regal-communication-triad {
    flex-direction: column;
    gap: 15px;
  }
}

.regal-communication-triad__channel {
  color: #d1d5db;
  text-decoration: none;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  position: relative;
  transition: color 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.regal-communication-triad__channel:nth-child(1) {
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

.regal-communication-triad__channel:nth-child(2) {
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.5s forwards;
}

.regal-communication-triad__channel::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  transition: width 0.4s ease;
}

.regal-communication-triad__channel:hover {
  color: #ffd700;
}

.regal-communication-triad__channel:hover::after {
  width: 100%;
}

.opulent-disclosure-chronicle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.6s forwards;
}

@media (max-width: 991px) {
  .opulent-disclosure-chronicle {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.sovereign-risk-manifesto {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: clamp(20px, 4vw, 25px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sovereign-risk-manifesto:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.sovereign-risk-manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.15));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.sovereign-risk-manifesto:hover::before {
  opacity: 1;
}

.sovereign-risk-manifesto__edict {
  font-size: clamp(18px, 2.3vw, 22px);
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.sovereign-risk-manifesto__narrative {
  font-size: clamp(14px, 1.9vw, 16px);
  color: #d1d5db;
  line-height: 1.7;
}

.sovereign-risk-manifesto__narrative strong {
  color: #ffffff;
  font-weight: 600;
}

.sovereign-risk-manifesto__link {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sovereign-risk-manifesto__link:hover {
  color: #ffaa00;
}



.majestic-foundation-epilogue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
  opacity: 0;
  transform: translateY(30px);
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.7s forwards;
}

@media (max-width: 991px) {
  .majestic-foundation-epilogue {
    flex-direction: column;
    gap: 20px;
  }
}

.majestic-foundation-epilogue__copyright {
  font-size: clamp(14px, 1.9vw, 16px);
  color: #d1d5db;
}

@media (max-width: 991px) {
  .majestic-foundation-epilogue__copyright {
    order: 2;
    text-align: center;
  }
}

.majestic-foundation-epilogue__navigation {
  display: flex;
  gap: clamp(15px, 2vw, 25px);
}

@media (max-width: 480px) {
  .majestic-foundation-epilogue__navigation {
    flex-direction: column;
    align-items: center;
  }
}

.majestic-foundation-epilogue__pathway {
  color: #d1d5db;
  text-decoration: none;
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 600;
  position: relative;
  transition: color 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.majestic-foundation-epilogue__pathway:nth-child(1) {
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.8s forwards;
}
.majestic-foundation-epilogue__pathway:nth-child(2) {
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.9s forwards;
}
.majestic-foundation-epilogue__pathway:nth-child(3) {
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 1.0s forwards;
}
.majestic-foundation-epilogue__pathway:nth-child(4) {
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 1.1s forwards;
}

.majestic-foundation-epilogue__pathway::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  transition: width 0.4s ease;
}

.majestic-foundation-epilogue__pathway:hover {
  color: #ffd700;
}

.majestic-foundation-epilogue__pathway:hover::after {
  width: 100%;
}

@keyframes nobleAscension {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes emblemReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes celestialPulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .imperial-foundation-vault {
    padding: clamp(40px, 8vh, 60px) 0;
  }
  .exalted-contact-ensemble {
    margin-bottom: 40px;
  }
  .noble-emblem-anchor {
    width: 70px;
  }
  .regal-communication-triad {
    gap: 10px;
  }
  .regal-communication-triad__channel {
    font-size: clamp(14px, 2.1vw, 16px);
  }
  .opulent-disclosure-chronicle {
    gap: 15px;
    margin-bottom: 40px;
  }
  .sovereign-risk-manifesto__edict {
    font-size: clamp(16px, 2.2vw, 20px);
  }
  .sovereign-risk-manifesto__narrative {
    font-size: clamp(13px, 1.8vw, 15px);
  }
  .majestic-foundation-epilogue__copyright {
    font-size: clamp(13px, 1.8vw, 15px);
  }
  .majestic-foundation-epilogue__pathway {
    font-size: clamp(13px, 1.8vw, 15px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .imperial-foundation-vault {
    padding: clamp(30px, 6vh, 50px) 0;
  }
  .noble-emblem-anchor {
    width: 60px;
  }
  .regal-communication-triad__channel {
    font-size: 13px;
  }
  .sovereign-risk-manifesto {
    padding: 15px;
  }
  .sovereign-risk-manifesto__edict {
    font-size: 15px;
  }
  .sovereign-risk-manifesto__narrative {
    font-size: 12px;
  }
  .majestic-foundation-epilogue__copyright {
    font-size: 12px;
  }
  .majestic-foundation-epilogue__pathway {
    font-size: 12px;
  }
}

/* ----------------------footer disclaimer---------------------- */
.majestic-footer-disclaimer {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(18px, 3.5vw, 24px);
  color: #d1d5db;
  line-height: 1.7;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  opacity: 0;
  transform: translateY(30px);
  animation: nobleAscension 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.65s forwards;
}

.majestic-footer-disclaimer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.12));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.majestic-footer-disclaimer:hover::before {
  opacity: 1;
}

.majestic-footer-disclaimer p {
  font-size: clamp(14px, 1.9vw, 16px);
  color: #d1d5db;
}

.majestic-footer-disclaimer a {
  /*display: inline-block;*/
  margin-top: 12px;
  color: #ffd700;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.majestic-footer-disclaimer a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  transition: width 0.4s ease;
}

.majestic-footer-disclaimer a:hover {
  color: #ffaa00;
}

.majestic-footer-disclaimer a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .majestic-footer-disclaimer {
    margin: 30px 0;
    padding: 16px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .majestic-footer-disclaimer {
    margin: 24px 0;
    padding: 14px;
    border-radius: 12px;
  }
}

/* -------------------------cookie------------------------------- */

.cookie-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(20px, 3vw, 30px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.5s ease-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-section:hover {
    transform: translateY(45px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

#cookieSvg {
    width: clamp(40px, 6vw, 50px);
    margin-bottom: 15px;
}

#cookieSvg g path {
    fill: #4da8ff;
    transition: fill 0.3s ease;
}

.cookie-section:hover #cookieSvg g path {
    fill: #2a2a4e;
}

.cookie-title {
    font-size: clamp(1.1em, 2vw, 1.2em);
    font-weight: 700;
    text-align: center;
    color: #2a2a4e;
    margin-bottom: 10px;
}

.cookie-text {
    text-align: center;
    font-size: clamp(0.65em, 1.5vw, 0.7em);
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: clamp(15px, 2vw, 20px);
    flex-direction: row;
}

.cookie-accept {
    width: clamp(70px, 10vw, 80px);
    height: clamp(25px, 4vw, 30px);
    background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
    transition-duration: 0.3s;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.8em, 1.5vw, 0.9em);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cookie-accept::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.cookie-accept:hover {
    background: linear-gradient(90deg, #4da8ff 0%, #2a2a4e 100%);
}

.cookie-accept:hover::before {
    left: 100%;
}

.cookie-reject {
    width: clamp(70px, 10vw, 80px);
    height: clamp(25px, 4vw, 30px);
    background-color: #e0e0e0;
    transition-duration: 0.3s;
    color: #2a2a4e;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.8em, 1.5vw, 0.9em);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cookie-reject::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
}

.cookie-reject:hover {
    background-color: #c0c0c0;
}

.cookie-reject:hover::before {
    left: 100%;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-section {
        max-width: 90%;
        bottom: 10px;
        right: 5%;
        padding: 15px;
    }
    .cookie-title {
        font-size: 1em;
    }
    .cookie-text {
        font-size: 0.65em;
    }
    .cookie-buttons {
        gap: 15px;
    }
    .cookie-accept, .cookie-reject {
        width: 70px;
        height: 25px;
        font-size: 0.8em;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .cookie-section {
        max-width: 95%;
        padding: 10px;
        bottom: 5px;
        right: 2.5%;
    }
    #cookieSvg {
        width: 35px;
    }
    .cookie-title {
        font-size: 0.9em;
    }
    .cookie-text {
        font-size: 0.6em;
    }
    .cookie-buttons {
        gap: 10px;
    }
    .cookie-accept, .cookie-reject {
        width: 60px;
        height: 22px;
        font-size: 0.7em;
        border-radius: 15px;
    }
}

/* -------------------------pages--------------------------- */

.main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: clamp(50px, 10vh, 80px) 0;
}

.policy-section {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 8vh, 60px) 0;
}

.policy-heading {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 32px;
    text-align: center;
    color: #2a2a4e;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease-out forwards;
}

.policy-content {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.policy-content p {
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.policy-content p:hover {
    color: #2a2a4e;
}

.policy-content h2 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 16px;
    color: #2a2a4e;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.policy-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4da8ff;
    transition: width 0.3s ease;
}

.policy-content h2:hover::after {
    width: 100px;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.policy-content li:hover {
    transform: translateX(5px);
}

.policy-content a {
    color: #4da8ff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.policy-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #4da8ff;
    transition: width 0.3s ease;
}

.policy-content a:hover {
    color: #2a2a4e;
}

.policy-content a:hover::after {
    width: 100%;
}

.policy-action-btn {
    max-width: 180px;
    width: 100%;
    margin: 32px auto 0;
    padding: 12px 0;
    background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
    color: #ffffff;
    text-align: center;
    display: block;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.policy-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 168, 255, 0.4);
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-heading {
        font-size: clamp(24px, 6vw, 32px);
    }
    .policy-content {
        font-size: 14px;
    }
    .policy-content h2 {
        font-size: 20px;
    }
    .policy-action-btn {
        padding: 10px 0;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .policy-section {
        padding: 30px 0;
    }
    .policy-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .policy-content {
        font-size: 13px;
    }
    .policy-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .policy-content ul {
        margin-left: 15px;
    }
    .policy-content li {
        margin-bottom: 8px;
    }
    .policy-action-btn {
        max-width: 160px;
        margin-top: 20px;
        padding: 8px 0;
    }
}

      @media screen and (max-width:1199px){
  .initiate-action.prestige-button{
    display: none !important;
  }
}

      @media screen and (max-width:1199px){
  .locale-selector.prestige-button{
    display: none !important;
  }
}

html {
  scroll-behavior: smooth !important;
}

body {
  scroll-behavior: smooth !important;
}