@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;
}


/* 1 */
.elite-regulatory-alert {
  background: linear-gradient(to right, #f9f7f3 0%, #e8e3d8 100%);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  transition: background 0.5s ease;
}

.elite-regulatory-alert::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 10%, transparent 50%);
  transform: translateX(-50%);
  opacity: 0.7;
  z-index: 0;
  animation: gentleRadiate 8s infinite ease-in-out;
}

.premium-alert-frame {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.98);
  animation: elegantReveal 1.2s ease-out 0.5s forwards;
}

.alert-emblem {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23d4af37" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="12" y1="8" x2="12" y2="12"/><line x1="12" y1="16" x2="12.01" y2="16"/></svg>') center/contain no-repeat;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.premium-alert-frame:hover .alert-emblem {
  transform: rotate(10deg) scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

.executive-alert-message {
  color: #4a4a4a;
  font-size: clamp(14px, 1.7vw, 16px);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.executive-alert-message strong {
  color: #8b0000;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.executive-alert-message strong::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 4px);
  background: rgba(212, 175, 55, 0.05);
  border-radius: 4px;
  z-index: -1;
  transition: background 0.3s ease;
}

.executive-alert-message:hover strong::before {
  background: rgba(212, 175, 55, 0.15);
}

.executive-alert-message a {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
  background-image: linear-gradient(transparent 50%, #1e3a8a 50%);
  background-size: 0 200%;
  background-position: 0 100%;
  transition: background-size 0.4s ease;
}

.executive-alert-message a:hover {
  background-size: 100% 200%;
}

.elite-regulatory-alert:hover {
  background: linear-gradient(to right, #f5f3ee 0%, #e0d9cd 100%);
}

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

@keyframes gentleRadiate {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    opacity: 0.9;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .premium-alert-frame {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .alert-emblem {
    width: 35px;
    height: 35px;
  }

  .executive-alert-message {
    font-size: clamp(13px, 1.6vw, 15px);
  }
}

@media (max-width: 480px) {
  .elite-regulatory-alert {
    padding: 20px 0;
  }
}

/* header */

.prestige-nav-bar {
  background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.5s ease-in-out;
}

.prestige-nav-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid slice"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>') repeat;
  opacity: 0.3;
  z-index: -1;
}

.elite-nav-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 30px);
  opacity: 0;
  transform: translateY(-15px);
  animation: sophisticatedEntrance 1s ease-out forwards;
}

.corporate-emblem {
  max-width: 60px;
  width: 100%;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.corporate-emblem:hover {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transform: rotate(5deg) scale(1.08);
}

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

.prestige-controls {
  display: flex;
  align-items: center;
  gap: clamp(25px, 5vw, 35px);
}

.initiate-action {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg, #3b82f6 0%, #60a5fa 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.initiate-action::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.initiate-action:hover::after {
  width: 300%;
  height: 300%;
}

.initiate-action:hover {
  box-shadow: 0 5px 20px rgba(59, 130, 246, 0.5);
  transform: translateY(-3px);
}

.initiate-action span {
  position: relative;
  z-index: 1;
}

.executive-navigation__catalog {
  display: none;
}

@media screen and (min-width: 1200px) {
  .executive-navigation__catalog {
    display: flex;
    align-items: center;
    gap: clamp(25px, 4vw, 35px);
  }
}

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

.executive-navigation__anchor::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  transition: width 0.4s ease;
}

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

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

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

.burger:hover {
  transform: scale(1.1);
}

.burger::before,
.burger::after,
.burger span {
  width: 100%;
  height: 4px;
  background-color: #cbd5e1;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.burger.is-open::before {
  transform: translateY(10px) rotate(45deg);
}

.burger.is-open::after {
  transform: translateY(-10px) rotate(-45deg);
}

.burger.is-open span {
  opacity: 0;
  transform: scale(0);
}

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

.mobile-executive-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  z-index: 999;
  overflow-y: auto;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-executive-overlay.is-open {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.mobile-executive-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
}

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

.menu__list .executive-navigation__element {
  opacity: 0;
  transform: translateY(20px);
  animation: cascadeIn 0.6s ease-out forwards;
}

.menu__list .executive-navigation__element:nth-child(1) {
  animation-delay: 0.1s;
}

.menu__list .executive-navigation__element:nth-child(2) {
  animation-delay: 0.2s;
}

.menu__list .executive-navigation__element:nth-child(3) {
  animation-delay: 0.3s;
}

.menu__list .executive-navigation__element:nth-child(4) {
  animation-delay: 0.4s;
}

.menu__list .executive-navigation__anchor {
  font-size: clamp(24px, 5vw, 28px);
  color: #ffffff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menu__list .executive-navigation__anchor:hover {
  color: #3b82f6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .elite-nav-layout {
    gap: 15px;
  }

  .initiate-action {
    padding: 10px 20px;
    font-size: clamp(13px, 1.7vw, 15px);
  }

  .corporate-emblem {
    max-width: 50px;
  }
}

@media (max-width: 480px) {
  .prestige-nav-bar {
    padding: 15px 0;
  }
}

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

.sovereign-gateway-panel {
  padding: clamp(100px, 18vh, 180px) 0;
  position: relative;
  color: #f5f5f5;
  background-image: url(../img/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  overflow: hidden;
}

.sovereign-gateway-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 10, 30, 0.7) 0%, rgba(10, 10, 30, 0.4) 70%, transparent 100%);
  z-index: -1;
  opacity: 0.85;
  transition: opacity 0.6s ease-in-out;
}

.sovereign-gateway-panel:hover::after {
  opacity: 0.95;
}

.apex-introduction-envelope {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: perspective(800px) rotateX(-10deg);
  animation: majesticUnveil 1.2s ease-out 0.3s forwards;
}

.summit-caption-wrapper {
  margin-bottom: 35px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.468);
  border-left: 4px solid #d4af37;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.apex-introduction-envelope:hover .summit-caption-wrapper {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.paramount-proclamation {
  font-size: clamp(38px, 6.5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: text-shadow 0.3s ease;
}

.paramount-proclamation:hover {
  text-shadow: 0 3px 6px rgba(212, 175, 55, 0.3);
}

.elite-narrative {
  font-size: clamp(17px, 2.6vw, 21px);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.elite-narrative:hover {
  opacity: 1;
}

.inaugurate-venture {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  color: #1a1a2e;
  background: linear-gradient(135deg, #d4af37 0%, #f0d696 100%);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(15px, 1.9vw, 17px);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.inaugurate-venture::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.inaugurate-venture:hover::before {
  opacity: 1;
  transform: rotate(30deg);
}

.inaugurate-venture:hover {
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .apex-introduction-envelope {
    align-items: center;
    text-align: center;
  }

  .summit-caption-wrapper {
    padding: 15px;
    border-left: none;
    border-top: 4px solid #d4af37;
  }

  .paramount-proclamation {
    font-size: clamp(30px, 8.5vw, 42px);
  }

  .elite-narrative {
    font-size: clamp(15px, 3.1vw, 19px);
  }

  .inaugurate-venture {
    padding: 12px 28px;
    font-size: clamp(13px, 2.1vw, 15px);
  }
}

@media (max-width: 480px) {
  .sovereign-gateway-panel {
    padding: clamp(80px, 15vh, 140px) 0;
  }
}

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

.opulent-acclaim-vault {
  background: linear-gradient(to bottom, #1f2937 0%, #111827 100%);
  padding: clamp(30px, 6vw, 50px) 0;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(165, 142, 93, 0.15);
  transition: box-shadow 0.5s ease;
}

.opulent-acclaim-vault:hover {
  box-shadow: 0 0 60px rgba(165, 142, 93, 0.25);
}

.opulent-acclaim-vault::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(165, 142, 93, 0.1) 0%, transparent 50%);
  opacity: 0.8;
  z-index: -1;
  animation: subtlePulse 10s infinite ease-in-out;
}

.regal-endorsement-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(15px, 4vw, 25px);
  justify-items: center;
}

@media (max-width: 768px) {
  .regal-endorsement-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .regal-endorsement-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.sovereign-commendation-card {
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(10px);
  padding: clamp(15px, 4vw, 25px);
  border-radius: 12px;
  border: 1px solid rgba(165, 142, 93, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 180px;
  transition: border-color 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
  animation: regalAscend 1s ease-out forwards;
}

.sovereign-commendation-card:nth-child(1) {
  animation-delay: 0.2s;
}

.sovereign-commendation-card:nth-child(2) {
  animation-delay: 0.4s;
}

.sovereign-commendation-card:nth-child(3) {
  animation-delay: 0.6s;
}

.sovereign-commendation-card:nth-child(4) {
  animation-delay: 0.8s;
}

.sovereign-commendation-card:hover {
  border-color: rgba(165, 142, 93, 0.4);
  transform: scale(1.05);
}

.imperial-crest-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.aristocratic-insignia {
  height: clamp(28px, 4vw, 32px);
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(165, 142, 93, 0.2));
  transition: filter 0.4s ease;
}

.imperial-crest-banner:hover .aristocratic-insignia {
  filter: drop-shadow(0 4px 10px rgba(165, 142, 93, 0.4));
}

.noble-accolade-label {
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 600;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.majestic-valor-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.exalted-merit-figure {
  font-weight: 800;
  font-size: clamp(24px, 4vw, 30px);
  color: #d4af37;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.celestial-luminary-cluster {
  display: flex;
  gap: 5px;
}

.celestial-luminary {
  width: clamp(16px, 2.2vw, 20px);
  height: clamp(16px, 2.2vw, 20px);
  color: #d4af37;
  transition: transform 0.4s ease, color 0.4s ease;
}

.celestial-luminary--full {
  fill: #d4af37;
}

.celestial-luminary--partial {
  fill: none;
  stroke: #d4af37;
}

.celestial-luminary-cluster:hover .celestial-luminary {
  transform: rotate(15deg) scale(1.15);
  color: #f0d696;
}

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

@keyframes subtlePulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .opulent-acclaim-vault {
    padding: clamp(25px, 5vw, 40px) 0;
  }

  .sovereign-commendation-card {
    min-width: 150px;
  }

  .exalted-merit-figure {
    font-size: clamp(20px, 5vw, 26px);
  }

  .celestial-luminary {
    width: clamp(14px, 2.5vw, 18px);
    height: clamp(14px, 2.5vw, 18px);
  }
}

@media (max-width: 480px) {

  .imperial-crest-banner {
    gap: 8px;
    margin-bottom: 12px;
  }

  .aristocratic-insignia {
    height: clamp(24px, 6vw, 28px);
  }

  .noble-accolade-label {
    font-size: clamp(12px, 2.5vw, 14px);
  }
}

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

.imperial-insight-sanctum {
  padding: clamp(60px, 12vh, 100px) 0;
  background: linear-gradient(to top, #f0f4f8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(212, 175, 55, 0.1);
}

.imperial-insight-sanctum::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: etherealGlow 12s infinite ease-in-out;
}

.sovereign-proposition-manifesto {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.paramount-election-rationale {
  font-size: clamp(30px, 5.5vw, 42px);
  font-weight: 800;
  color: #1f2937;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: ascendFromDepths 1s ease-out forwards;
}

.regal-merit-constellation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .regal-merit-constellation {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .regal-merit-constellation {
    grid-template-columns: 1fr;
  }
}

.august-virtue-monolith {
  background: #ffffff;
  border-radius: 10px;
  padding: clamp(20px, 3vw, 25px);
  box-shadow: 0 5px 20px rgba(31, 41, 55, 0.1);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: perspective(1000px) rotateY(-10deg);
  animation: monolithicRevelation 1.2s ease-out forwards;
}

.august-virtue-monolith:nth-child(odd) {
  animation-delay: 0.3s;
}

.august-virtue-monolith:nth-child(even) {
  animation-delay: 0.6s;
}

.august-virtue-monolith:hover {
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.2);
  transform: perspective(1000px) rotateY(0) translateY(-5px);
}

.opulent-visage-portal {
  margin: 0 0 20px 0;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.opulent-visage-portal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(212, 175, 55, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.august-virtue-monolith:hover .opulent-visage-portal::before {
  opacity: 1;
}

.resplendent-effigy {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.august-virtue-monolith:hover .resplendent-effigy {
  transform: scale(1.08);
}

.exalted-precept-decree {
  font-size: clamp(21px, 2.6vw, 25px);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  text-align: center;
}

.refined-elucidation-scroll {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #4b5563;
  line-height: 1.7;
  text-align: center;
}

.inaugural-venture-convocation {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  padding: 14px 30px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  border-radius: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(31, 41, 55, 0.2);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  opacity: 0;
  animation: convocationEmergence 1.5s ease-out 0.9s forwards;
}

.inaugural-venture-convocation::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewY(-20deg);
  transition: top 0.6s ease;
}

.inaugural-venture-convocation:hover::after {
  top: 100%;
}

.inaugural-venture-convocation:hover {
  box-shadow: 0 6px 25px rgba(31, 41, 55, 0.3);
  transform: translateY(-4px);
}

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

@keyframes monolithicRevelation {
  to {
    opacity: 1;
    transform: perspective(1000px) rotateY(0);
  }
}

@keyframes convocationEmergence {
  to {
    opacity: 1;
  }
}

@keyframes etherealGlow {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .imperial-insight-sanctum {
    padding: clamp(50px, 10vh, 80px) 0;
  }

  .paramount-election-rationale {
    font-size: clamp(26px, 7vw, 36px);
  }

  .exalted-precept-decree {
    font-size: clamp(19px, 3.5vw, 23px);
  }

  .refined-elucidation-scroll {
    font-size: clamp(14px, 2.2vw, 16px);
  }

  .inaugural-venture-convocation {
    max-width: 180px;
    padding: 12px 25px;
    font-size: clamp(14px, 2.2vw, 16px);
  }
}

@media (max-width: 480px) {
  .regal-merit-constellation {
    gap: 20px;
  }

  .august-virtue-monolith {
    padding: 15px;
  }
}


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

.prestigious-arsenal-chamber {
  padding: clamp(70px, 14vh, 120px) 0;
  background: linear-gradient(to right, #0a192f 0%, #1a365d 100%);
  color: #d1d5db;
  position: relative;
  overflow: hidden;
}

.prestigious-arsenal-chamber::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') repeat;
  opacity: 0.4;
  z-index: 0;
}

.elite-strategy-prologue {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.sovereign-tactical-manifest {
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: capitalize;
  opacity: 0;
  transform: scale(0.95);
  animation: manifestoUnfurl 1.2s ease-out forwards;
}

.refined-operational-synopsis {
  font-size: clamp(17px, 2.7vw, 21px);
  font-weight: 300;
  line-height: 1.65;
  color: #9ca3af;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  animation: synopsisMaterialize 1.5s ease-out 0.4s forwards;
}

.august-facility-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.venerable-instrument-edifice {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: clamp(30px, 5vw, 40px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.5s ease, background 0.5s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: edificeAscension 1s ease-out forwards;
}

.venerable-instrument-edifice:nth-child(1) { animation-delay: 0.2s; }
.venerable-instrument-edifice:nth-child(2) { animation-delay: 0.4s; transform: translateX(20px); }
.venerable-instrument-edifice:nth-child(3) { animation-delay: 0.6s; transform: translateX(-20px); }
.venerable-instrument-edifice:nth-child(4) { animation-delay: 0.8s; transform: translateX(20px); }

.venerable-instrument-edifice:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.ornate-emblem-vault {
  margin-bottom: 25px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  transition: background 0.5s ease, transform 0.5s ease;
}

.venerable-instrument-edifice:hover .ornate-emblem-vault {
  background: rgba(212, 175, 55, 0.2);
  transform: rotate(360deg);
}

.ornate-emblem-vault svg {
  color: #d4af37;
  width: 35px;
  height: 35px;
}

.imperial-directive-proclamation {
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.cultivated-insight-narrative {
  font-size: clamp(15px, 1.9vw, 17px);
  line-height: 1.7;
  color: #cbd5e1;
}

.majestic-transaction-symphony {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 40px);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: symphonyCrescendo 1.2s ease-out 1s forwards;
}

@media (max-width: 1024px) {
  .majestic-transaction-symphony {
    flex-direction: column;
  }
}

.sumptuous-visual-ode {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.5s ease;
}

.majestic-transaction-symphony:hover .sumptuous-visual-ode {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.luminous-portraiture {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.5s ease;
}

.majestic-transaction-symphony:hover .luminous-portraiture {
  filter: brightness(1.1);
}

.grand-operational-epic {
  flex: 1;
}

.transcendent-withdrawal-edict {
  font-size: clamp(30px, 4.5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 25px;
}

.transcendent-withdrawal-edict em {
  color: #d4af37;
  font-style: normal;
}

.erudite-procedural-chronicle {
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.7;
  color: #9ca3af;
  max-width: 500px;
}

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

@keyframes synopsisMaterialize {
  to {
    opacity: 1;
  }
}

@keyframes edificeAscension {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes symphonyCrescendo {
  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestigious-arsenal-chamber {
    padding: clamp(50px, 10vh, 80px) 0;
  }

  .sovereign-tactical-manifest {
    font-size: clamp(28px, 7vw, 36px);
  }

  .refined-operational-synopsis {
    font-size: clamp(15px, 3.2vw, 19px);
  }

  .imperial-directive-proclamation {
    font-size: clamp(20px, 3.5vw, 24px);
  }

  .cultivated-insight-narrative {
    font-size: clamp(14px, 2.2vw, 16px);
  }

  .transcendent-withdrawal-edict {
    font-size: clamp(26px, 6vw, 34px);
  }

  .erudite-procedural-chronicle {
    font-size: clamp(15px, 2.5vw, 18px);
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .august-facility-mosaic {
    gap: 25px;
  }

  .venerable-instrument-edifice {
    padding: 25px;
  }

  .ornate-emblem-vault {
    width: 45px;
    height: 45px;
  }

  .ornate-emblem-vault svg {
    width: 30px;
    height: 30px;
  }
}

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

.sovereign-guidance-enclave {
  padding: clamp(80px, 16vh, 140px) 0;
  background: linear-gradient(to bottom, #f9fafb 0%, #e5e7eb 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(165, 142, 93, 0.2);
}

.sovereign-guidance-enclave::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(ellipse at bottom center, rgba(165, 142, 93, 0.08) 0%, transparent 70%);
  z-index: -1;
}

.paramount-orientation-preamble {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.exalted-novice-directive {
  font-size: clamp(34px, 6.5vw, 46px);
  font-weight: 900;
  color: #1e293b;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(40px);
  animation: directiveAscension 1.4s ease-out forwards;
}

.refined-induction-synopsis {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  color: #475569;
  max-width: 950px;
  margin: 0 auto;
  opacity: 0;
  animation: synopsisUnveil 1.6s ease-out 0.5s forwards;
}

.regal-assistance-tapestry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(35px, 6vw, 45px);
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .regal-assistance-tapestry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .regal-assistance-tapestry {
    grid-template-columns: 1fr;
  }
}

.august-mentorship-pillar {
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(25px, 4vw, 35px);
  box-shadow: 0 6px 25px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: perspective(1200px) rotateX(10deg);
  animation: pillarManifestation 1.4s ease-out forwards;
}

.august-mentorship-pillar:nth-child(1),
.august-mentorship-pillar:nth-child(2) {
  grid-column: span 1;
}

.august-mentorship-pillar:nth-child(1) { animation-delay: 0.2s; }
.august-mentorship-pillar:nth-child(2) { animation-delay: 0.4s; }
.august-mentorship-pillar:nth-child(3) { animation-delay: 0.6s; }
.august-mentorship-pillar:nth-child(4) { animation-delay: 0.8s; }
.august-mentorship-pillar:nth-child(5) { animation-delay: 1s; }

.august-mentorship-pillar:hover {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
  transform: perspective(1200px) rotateX(0) translateY(-6px);
}

.imperial-initiate-maxim {
  font-size: clamp(23px, 2.9vw, 27px);
  font-weight: 700;
  color: #1e293b;
  text-align: left;
}

.cultivated-apprentice-narrative {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.75;
  color: #475569;
  flex-grow: 1;
  text-align: left;
}

.inaugural-trial-summons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(45deg, #1e293b 0%, #334155 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(30, 41, 59, 0.2);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
  max-width: 180px;
}

.inaugural-trial-summons::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.inaugural-trial-summons:hover::before {
  opacity: 1;
}

.inaugural-trial-summons:hover {
  box-shadow: 0 5px 20px rgba(30, 41, 59, 0.3);
  transform: translateY(-3px);
}

.inaugural-trial-summons svg {
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
  transition: transform 0.4s ease;
}

.inaugural-trial-summons:hover svg {
  transform: rotate(-90deg) translateX(6px);
}

.grand-initiation-conclave {
  display: block;
  max-width: 220px;
  margin: 0 auto;
  padding: 16px 35px;
  background: linear-gradient(135deg, #d4af37 0%, #b08e2b 100%);
  color: #1e293b;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  border-radius: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(212, 175, 55, 0.3);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
  opacity: 0;
  animation: conclaveInvocation 1.8s ease-out 1.2s forwards;
}

.grand-initiation-conclave::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  transform: skewY(45deg);
  transition: top 0.7s ease;
}

.grand-initiation-conclave:hover::after {
  top: 100%;
}

.grand-initiation-conclave:hover {
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
}

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

@keyframes synopsisUnveil {
  to {
    opacity: 1;
  }
}

@keyframes pillarManifestation {
  to {
    opacity: 1;
    transform: perspective(1200px) rotateX(0);
  }
}

@keyframes conclaveInvocation {
  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sovereign-guidance-enclave {
    padding: clamp(60px, 12vh, 100px) 0;
  }

  .exalted-novice-directive {
    font-size: clamp(30px, 8vw, 40px);
  }

  .refined-induction-synopsis {
    font-size: clamp(16px, 3.5vw, 20px);
  }

  .imperial-initiate-maxim {
    font-size: clamp(21px, 4vw, 25px);
  }

  .cultivated-apprentice-narrative {
    font-size: clamp(15px, 2.5vw, 17px);
  }

  .inaugural-trial-summons {
    padding: 10px 24px;
    font-size: clamp(14px, 2.2vw, 16px);
    max-width: 160px;
  }

  .inaugural-trial-summons svg {
    width: 20px;
    height: 20px;
  }

  .grand-initiation-conclave {
    max-width: 200px;
    padding: 14px 30px;
    font-size: clamp(15px, 2.5vw, 17px);
  }
}

@media (max-width: 480px) {
  .regal-assistance-tapestry {
    gap: 25px;
  }

  .august-mentorship-pillar {
    padding: 20px;
  }
}


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

.opulent-convergence-atrium {
  padding: clamp(40px, 8vh, 60px) 0;
  background: linear-gradient(to bottom, #111827 0%, #1f2937 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
  transition: box-shadow 0.6s ease;
}

.opulent-convergence-atrium:hover {
  box-shadow: 0 0 70px rgba(212, 175, 55, 0.25);
}

.opulent-convergence-atrium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  opacity: 0.7;
  z-index: 0;
  animation: auraPulse 15s infinite ease-in-out;
}

.sovereign-invitation-edict {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.paramount-convocation-decree {
  font-size: clamp(30px, 5.5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.98);
  animation: decreeManifest 1.3s ease-out forwards;
}

.refined-induction-manifesto {
  font-size: clamp(17px, 2.6vw, 21px);
  font-weight: 300;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 850px;
  margin: 0 auto;
  opacity: 0;
  animation: manifestoEmerge 1.5s ease-out 0.3s forwards;
}

.elite-induction-protocol {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: clamp(25px, 4vw, 35px);
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 4vw, 35px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  animation: protocolUnfold 1.6s ease-out 0.6s forwards;
}

.august-credential-chamber {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(25px);
  animation: chamberReveal 1s ease-out forwards;
}

.august-credential-chamber:nth-child(1) { animation-delay: 0.8s; }
.august-credential-chamber:nth-child(2) { animation-delay: 0.9s; }
.august-credential-chamber:nth-child(3) { animation-delay: 1s; }
.august-credential-chamber:nth-child(4) { animation-delay: 1.1s; }
.august-credential-chamber:nth-child(5) { animation-delay: 1.2s; }

.imperial-descriptor-seal {
  font-weight: 600;
  color: #d4af37;
  font-size: clamp(15px, 1.9vw, 17px);
  letter-spacing: 0.3px;
}

.resplendent-input-vessel {
  padding: 14px 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  font-size: clamp(15px, 1.9vw, 17px);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.resplendent-input-vessel:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
  outline: none;
}

.resplendent-input-vessel--expansive {
  resize: vertical;
  min-height: 140px;
}

.august-credential-chamber--coda {
  align-items: center;
  text-align: center;
}

.erudite-concordat-scroll {
  margin-top: -10px;
  margin-bottom: 8px;
  font-size: clamp(13px, 1.7vw, 15px);
  color: #9ca3af;
}

.erudite-concordat-scroll a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.4s ease;
}

.erudite-concordat-scroll a:hover {
  color: #ffffff;
}

.grand-submission-scepter {
  min-width: 200px;
  padding: 14px 0;
  background: linear-gradient(90deg, #d4af37 0%, #b08e2b 100%);
  color: #1e293b;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.grand-submission-scepter::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transition: left 0.6s ease;
  z-index: 1;
}

.grand-submission-scepter:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.grand-submission-scepter:hover::before {
  left: 100%;
}

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

@keyframes manifestoEmerge {
  to {
    opacity: 1;
  }
}

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

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

@keyframes auraPulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .opulent-convergence-atrium {
    padding: 30px 0;
  }

  .paramount-convocation-decree {
    font-size: clamp(26px, 7vw, 34px);
  }

  .refined-induction-manifesto {
    font-size: clamp(15px, 3.1vw, 19px);
  }

  .elite-induction-protocol {
    padding: 20px;
    gap: 20px;
  }

  .imperial-descriptor-seal {
    font-size: clamp(14px, 2.1vw, 16px);
  }

  .resplendent-input-vessel {
    padding: 12px 18px;
    font-size: clamp(14px, 2.1vw, 16px);
  }

  .resplendent-input-vessel--expansive {
    min-height: 120px;
  }

  .erudite-concordat-scroll {
    font-size: clamp(12px, 1.8vw, 14px);
  }

  .grand-submission-scepter {
    max-width: 180px;
    padding: 12px 0;
    font-size: clamp(14px, 2.1vw, 16px);
  }
}

@media (max-width: 480px) {
  .opulent-convergence-atrium {
    border-radius: 15px;
  }

  .august-credential-chamber {
    gap: 8px;
  }
}
fieldset{
    border: none !important;
}

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

.regal-culmination-haven {
  padding: clamp(50px, 8vh, 70px) 0;
  background: linear-gradient(to top, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  border-top: 3px solid rgba(165, 142, 93, 0.3);
}

.regal-culmination-haven::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(165, 142, 93, 0.12) 10%, transparent 60%);
  transform: translateX(-50%);
  opacity: 0.6;
  z-index: -1;
  animation: majesticRadiance 10s infinite ease-in-out;
}

.opulent-intelligence-syndicate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: perspective(800px) rotateX(-10deg);
  animation: syndicateEmergence 1.2s ease-out forwards;
}

@media (max-width: 768px) {
  .opulent-intelligence-syndicate {
    flex-direction: column;
    gap: 25px;
  }
}

.prestigious-emblem-citadel {
  background: rgba(165, 142, 93, 0.1);
  border-radius: 50%;
  padding: 15px;
  transition: background 0.5s ease, transform 0.5s ease;
}

.prestigious-emblem-citadel:hover {
  background: rgba(165, 142, 93, 0.2);
  transform: scale(1.1);
}

.sovereign-identity-portal {
  width: 80px;
  display: block;
}

.resplendent-symbol-artifact {
  width: 100%;
  height: auto;
}

.elite-communication-nexus {
  opacity: 0;
  transform: translateY(20px);
  animation: nexusAscend 1s ease-out forwards;
}

.elite-communication-nexus:nth-child(2) { animation-delay: 0.2s; }
.elite-communication-nexus:nth-child(3) { animation-delay: 0.4s; }

.imperial-contact-conduit {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  position: relative;
  transition: color 0.4s ease;
}

.imperial-contact-conduit::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.4s ease;
}

.imperial-contact-conduit:hover {
  color: #d4af37;
}

.imperial-contact-conduit:hover::after {
  width: 100%;
}

.grand-caution-scroll {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  color: #9ca3af;
  font-size: clamp(14px, 1.7vw, 15px);
  line-height: 1.7;
  opacity: 0;
  animation: scrollUnravel 1.4s ease-out 0.6s forwards;
}

.erudite-admonition-tome {
  margin: 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #d4af37;
  border-radius: 8px;
  transition: background 0.4s ease;
}

.erudite-admonition-tome:hover {
  background: rgba(255, 255, 255, 0.06);
}

.erudite-admonition-tome strong {
  color: #ffffff;
  font-weight: 700;
}

.erudite-admonition-tome a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.4s ease;
}

.erudite-admonition-tome a:hover {
  color: #ffffff;
}

.majestic-epilogue-symphony {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(25px, 4vw, 35px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: symphonyCoda 1s ease-out 1s forwards;
}

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

.transcendent-heritage-inscription {
  color: #9ca3af;
  font-size: clamp(14px, 1.7vw, 15px);
}

@media (max-width: 1024px) {
  .transcendent-heritage-inscription {
    order: 2;
    text-align: center;
  }
}

.sovereign-navigation-constellation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
}

@media (max-width: 640px) {
  .sovereign-navigation-constellation {
    flex-direction: column;
    gap: 15px;
  }
}

.celestial-directive-beacon {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.7vw, 15px);
  position: relative;
  transition: color 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: beaconIgnite 1s ease-out forwards;
}

.celestial-directive-beacon:nth-child(1) { animation-delay: 1.1s; }
.celestial-directive-beacon:nth-child(2) { animation-delay: 1.2s; }
.celestial-directive-beacon:nth-child(3) { animation-delay: 1.3s; }
.celestial-directive-beacon:nth-child(4) { animation-delay: 1.4s; }

.celestial-directive-beacon::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.4s ease;
}

.celestial-directive-beacon:hover {
  color: #d4af37;
}

.celestial-directive-beacon:hover::after {
  width: 100%;
}

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

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

@keyframes scrollUnravel {
  to {
    opacity: 1;
  }
}

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

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

@keyframes majesticRadiance {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.9;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .regal-culmination-haven {
    padding: 40px 0;
  }

  .opulent-intelligence-syndicate {
    gap: 20px;
  }

  .sovereign-identity-portal {
    width: 60px;
  }

  .imperial-contact-conduit {
    font-size: clamp(14px, 2.2vw, 16px);
  }

  .grand-caution-scroll {
    gap: 20px;
    font-size: clamp(13px, 1.8vw, 14px);
  }

  .erudite-admonition-tome {
    padding: 12px;
  }

  .majestic-epilogue-symphony {
    gap: 20px;
  }

  .transcendent-heritage-inscription {
    font-size: clamp(13px, 1.8vw, 14px);
  }

  .celestial-directive-beacon {
    font-size: clamp(13px, 1.8vw, 14px);
  }
}

@media (max-width: 480px) {
  .regal-culmination-haven {
    padding: 30px 0;
  }

  .opulent-intelligence-syndicate {
    gap: 15px;
  }

  .grand-caution-scroll {
    margin-bottom: 30px;
  }
}

/* -------------------------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;
    }
}