@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 */

.opulent-executive-bar {
    background: radial-gradient(circle at top, #0f172a 0%, #1e293b 100%);
    padding: clamp(15px, 3vw, 25px) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: elegantEmergence 1.2s ease-in-out;
}

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

.prestige-identity-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.prestige-identity-mark:hover {
    transform: scale(1.05) rotate(2deg);
}

.signature-emblem {
    height: clamp(35px, 4vw, 45px);
    width: auto;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.2);
    transition: box-shadow 0.5s ease;
}

.signature-emblem:hover {
    box-shadow: 0 0 25px rgba(96, 165, 250, 0.4);
}

.brand-moniker {
    color: #ffffff;
    font-family: 'serif';
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.control-interface {
    display: none;
}

@media screen and (max-width: 1024px) {
    .control-interface {
        display: block;
    }
}

.core-directional-hub .pathway-catalog {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 1025px) {
    .core-directional-hub .pathway-catalog {
        display: flex;
        align-items: center;
        gap: clamp(30px, 4vw, 40px);
    }
}

.route-junction {
    position: relative;
}

.directional-anchor {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 18px);
    transition: color 0.5s ease, text-shadow 0.5s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.directional-anchor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 50%;
    transition: width 0.5s ease, height 0.5s ease, transform 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.directional-anchor:hover {
    color: #60a5fa;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
}

.directional-anchor:hover::before {
    width: 200%;
    height: 200%;
}

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

.burger:hover {
    transform: rotate(90deg) scale(1.05);
}

.burger::before,
.burger::after,
.burger span {
    width: 100%;
    height: 3px;
    background: #e5e7eb;
    border-radius: 3px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger::before {
    content: '';
}

.burger::after {
    content: '';
}

.burger.is-open::before {
    transform: rotate(135deg) translate(6px, 6px);
}

.burger.is-open::after {
    transform: rotate(-135deg) translate(8px, -9px);
}

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

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

.elite-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    z-index: 99;
}

.elite-mobile-menu.is-open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.portable-pathway-roster {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 40px;
}

.portable-route-junction {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.elite-mobile-menu.is-open .portable-route-junction {
    opacity: 1;
    transform: scale(1);
}

.elite-mobile-menu.is-open .portable-route-junction:nth-child(1) {
    transition-delay: 0.15s;
}

.elite-mobile-menu.is-open .portable-route-junction:nth-child(2) {
    transition-delay: 0.3s;
}

.elite-mobile-menu.is-open .portable-route-junction:nth-child(3) {
    transition-delay: 0.45s;
}

.mobile-nav-connection {
    color: #e5e7eb;
    text-decoration: none;
    font-size: clamp(24px, 5vw, 28px);
    font-weight: 600;
    transition: color 0.5s ease, transform 0.5s ease, letter-spacing 0.5s ease;
    letter-spacing: 0.5px;
}

.mobile-nav-connection:hover {
    color: #60a5fa;
    transform: scale(1.1);
    letter-spacing: 2px;
}

@keyframes elegantEmergence {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive fine-tuning */
@media (max-width: 768px) {
    .refined-navigation-framework {
        gap: 15px;
    }
    .signature-emblem {
        height: 35px;
    }
    .mobile-nav-connection {
        font-size: 24px;
    }
}

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

.sovereign-entry-domain {
    padding: clamp(80px, 15vh, 150px) 0;
    background: linear-gradient(45deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.sovereign-entry-domain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    opacity: 0.8;
    animation: pulseGlow 3s infinite alternate ease-in-out;
}

.aristocratic-presentation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 60px);
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .aristocratic-presentation-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.illustrious-narrative-compartment {
    text-align: center;
    opacity: 0;
    transform: translateX(-50px);
    animation: gracefulSlideIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@media screen and (min-width: 1024px) {
    .illustrious-narrative-compartment {
        text-align: left;
    }
}

.paramount-proclamation {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.paramount-proclamation::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.paramount-proclamation:hover::before {
    width: 100%;
}

.cultivated-exposition {
    font-size: clamp(17px, 2.2vw, 19px);
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.cultivated-exposition:hover {
    opacity: 1;
}

.distinguished-summons-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 1.8vw, 16px) clamp(30px, 4vw, 40px);
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: #ffffff;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.2);
    transition: box-shadow 0.5s ease, transform 0.5s ease, background 0.5s ease;
    position: relative;
}

.distinguished-summons-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 8px;
}

.distinguished-summons-link:hover {
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.3);
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.distinguished-summons-link:hover::after {
    opacity: 1;
}

.sumptuous-illustration-vault {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: gracefulSlideIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.exquisite-depiction-canvas {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.6s ease, transform 0.6s ease;
    filter: brightness(1);
}

.exquisite-depiction-canvas:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    transform: scale(1.03);
    filter: brightness(1.05);
}

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

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

/* Responsive fine-tuning */
@media (max-width: 768px) {
    .paramount-proclamation {
        font-size: clamp(28px, 8vw, 40px);
    }
    .cultivated-exposition {
        font-size: clamp(15px, 3.5vw, 17px);
    }
    .distinguished-summons-link {
        padding: 12px 30px;
        font-size: 15px;
    }
}


/* ----------------------stats-section---------------------------- */

.regal-metrics-realm {
    padding: clamp(70px, 12vh, 120px) 0;
    background: linear-gradient(to bottom right, #f9fafb 0%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
}

.regal-metrics-realm::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.3), transparent);
    transform: translateX(-50%);
}

.sovereign-indicators-array {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(25px, 4vw, 35px);
    padding: clamp(25px, 5vw, 45px) 0;
}

.metric-ensemble {
    background: linear-gradient(145deg, #ffffff 0%, #f3f4f6 100%);
    border-radius: 12px;
    padding: clamp(25px, 4vw, 35px);
    text-align: center;
    box-shadow: 0 6px 18px rgba(30, 64, 175, 0.08);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    opacity: 0;
    transform: scale(0.85);
    animation: metricBloom 1.2s ease-in-out forwards;
    position: relative;
    width: 100%;
    max-width: 280px;
    border: 1px solid rgba(96, 165, 250, 0.1);
}

.metric-ensemble:nth-child(1) {
    animation-delay: 0.1s;
}

.metric-ensemble:nth-child(2) {
    animation-delay: 0.3s;
}

.metric-ensemble:nth-child(3) {
    animation-delay: 0.5s;
}

.metric-ensemble:nth-child(4) {
    animation-delay: 0.7s;
}

.metric-ensemble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(96, 165, 250, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(-50%) scale(0);
}

.metric-ensemble:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.15);
}

.metric-ensemble:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.indicator-magnitude {
    font-size: clamp(40px, 7vw, 52px);
    font-weight: 900;
    color: #1e40af;
    margin: 0 0 15px 0;
    line-height: 1.1;
    position: relative;
    transition: color 0.5s ease;
}

.indicator-magnitude::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #3b82f6;
    margin: 15px auto 0;
    transition: width 0.5s ease, background 0.5s ease;
}

.metric-ensemble:hover .indicator-magnitude {
    color: #1d4ed8;
}

.metric-ensemble:hover .indicator-magnitude::after {
    width: 90px;
    background: #2563eb;
}

.indicator-narrative {
    font-size: clamp(15px, 2.2vw, 17px);
    color: #334155;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    transition: color 0.5s ease;
}

.metric-ensemble:hover .indicator-narrative {
    color: #1e293b;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .sovereign-indicators-array {
        flex-direction: column;
        gap: 25px;
    }
    .metric-ensemble {
        max-width: 100%;
        padding: 25px;
    }
    .indicator-magnitude {
        font-size: clamp(32px, 6vw, 44px);
    }
    .indicator-narrative {
        font-size: clamp(14px, 2.5vw, 16px);
    }
}

/* ----------------------stats-section---------------------------- */


/* ----------------------refined-info-section---------------------------- */

.imperial-insight-territory {
    padding: clamp(80px, 14vh, 140px) 0;
    background: linear-gradient(to bottom, #fafafa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.imperial-insight-territory::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(59, 130, 246, 0.02) 10px, rgba(59, 130, 246, 0.02) 20px);
    opacity: 0.5;
}

.sovereign-knowledge-core {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    opacity: 0;
    transform: perspective(500px) rotateY(-10deg);
    animation: perspectiveUnfold 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.grand-titular-declaration {
    margin-bottom: 35px;
    position: relative;
}

.grand-titular-declaration h2 {
    font-size: clamp(32px, 5.5vw, 46px);
    font-weight: 900;
    color: #111827;
    line-height: 1.3;
    margin: 0;
    transition: color 0.6s ease;
}

.grand-titular-declaration::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #1d4ed8, #3b82f6);
    transition: width 0.6s ease, background 0.6s ease;
}

.grand-titular-declaration:hover::after {
    width: 150px;
    background: linear-gradient(to right, #2563eb, #60a5fa);
}

.grand-titular-declaration:hover h2 {
    color: #1e40af;
}

.opulent-explanatory-fabric {
    opacity: 0;
    transform: translateY(40px);
    animation: narrativeAscend 1.6s ease-out 0.4s forwards;
}

.opulent-explanatory-fabric p {
    font-size: clamp(17px, 2.3vw, 19px);
    color: #374151;
    line-height: 1.9;
    font-weight: 400;
    margin: 0;
    transition: color 0.6s ease;
}

.opulent-explanatory-fabric:hover p {
    color: #1f2937;
}

.eminent-entity-emphasis {
    font-style: normal;
    font-weight: 800;
    color: #1e3a8a;
    position: relative;
    padding: 2px 6px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 4px;
    transition: background 0.6s ease, color 0.6s ease;
}

.eminent-entity-emphasis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.eminent-entity-emphasis:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #1d4ed8;
}

.eminent-entity-emphasis:hover::before {
    opacity: 1;
}

@keyframes perspectiveUnfold {
    to {
        opacity: 1;
        transform: perspective(500px) rotateY(0deg);
    }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .sovereign-knowledge-core {
        text-align: center;
    }
    .grand-titular-declaration h2 {
        font-size: clamp(26px, 7vw, 38px);
    }
    .opulent-explanatory-fabric p {
        font-size: clamp(15px, 3vw, 17px);
    }
    .grand-titular-declaration::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
    .grand-titular-declaration:hover::after {
        width: 120px;
    }
}

/* ----------------------refined-info-section---------------------------- */





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

.majestic-offering-vista {
    padding: clamp(90px, 13vh, 150px) 0;
    background: linear-gradient(to top left, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.majestic-offering-vista::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    opacity: 0.7;
    animation: subtleRadiate 4s infinite alternate ease-in-out;
}

.paramount-offering-decree {
    font-size: clamp(34px, 5.5vw, 48px);
    font-weight: 900;
    color: #0f172a;
    text-align: center;
    margin-bottom: clamp(45px, 7vw, 65px);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: decreeAscension 1.1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.paramount-offering-decree::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #1e40af, #3b82f6);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    transition: width 0.6s ease, clip-path 0.6s ease;
}

.paramount-offering-decree:hover::before {
    width: 180px;
    clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
}

.exalted-offering-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(260px, 32vw, 320px), 1fr));
    gap: clamp(30px, 5vw, 40px);
    justify-items: center;
}

.supreme-offering-capsule {
    background: #ffffff;
    border-radius: 16px;
    padding: clamp(30px, 5vw, 40px);
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.06);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
    opacity: 0;
    transform: rotateX(-10deg);
    animation: capsuleUnveil 1s ease-out forwards;
    position: relative;
    max-width: 380px;
    width: 100%;
    border: 1px solid rgba(59, 130, 246, 0.08);
}

.supreme-offering-capsule:nth-child(1) { animation-delay: 0.3s; }
.supreme-offering-capsule:nth-child(2) { animation-delay: 0.5s; }
.supreme-offering-capsule:nth-child(3) { animation-delay: 0.7s; }

.supreme-offering-capsule:hover {
    transform: rotateX(0deg) translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.12);
}

.supreme-offering-capsule::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(59, 130, 246, 0.05);
    transition: height 0.6s ease;
}

.supreme-offering-capsule:hover::after {
    height: 100%;
}

.emblem-repository {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.emblem-repository svg {
    color: #1e3a8a;
    width: 48px;
    height: 48px;
    transition: transform 0.6s ease, color 0.6s ease;
}

.supreme-offering-capsule:hover .emblem-repository svg {
    transform: scale(1.15) rotate(15deg);
    color: #2563eb;
}

.capsule-header {
    font-size: clamp(21px, 2.7vw, 25px);
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    transition: color 0.6s ease;
}

.supreme-offering-capsule:hover .capsule-header {
    color: #1d4ed8;
}

.capsule-narration {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #475569;
    line-height: 1.7;
    font-weight: 400;
    transition: color 0.6s ease;
}

.supreme-offering-capsule:hover .capsule-narration {
    color: #334155;
}

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

@keyframes capsuleUnveil {
    to {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@keyframes subtleRadiate {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 0.3;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .majestic-offering-vista {
        padding: clamp(60px, 11vh, 90px) 0;
    }
    .paramount-offering-decree {
        font-size: clamp(28px, 7vw, 38px);
    }
    .exalted-offering-mosaic {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .supreme-offering-capsule {
        max-width: 100%;
    }
    .capsule-header {
        font-size: clamp(19px, 3vw, 23px);
    }
    .capsule-narration {
        font-size: clamp(14px, 2.2vw, 16px);
    }
}

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

.imperial-provision-panorama {
    padding: clamp(100px, 14vh, 160px) 0;
    background: linear-gradient(to bottom right, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}


.sovereign-provision-edict {
    font-size: clamp(36px, 6vw, 50px);
    font-weight: 900;
    color: #0f172a;
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 70px);
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    animation: edictManifest 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.sovereign-provision-edict::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    background: linear-gradient(to right, #1d4ed8, #60a5fa);
    transition: width 0.7s ease, transform 0.7s ease;
}

.sovereign-provision-edict:hover::after {
    width: 200px;
    transform: translateX(-50%) skewX(15deg);
}

.aristocratic-provision-ensemble {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(35px, 6vw, 45px);
    justify-items: center;
}

@media (max-width: 1024px) {
    .aristocratic-provision-ensemble {
        grid-template-columns: 1fr;
    }
}

.regal-provision-enclave {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 18px;
    padding: clamp(35px, 6vw, 45px);
    box-shadow: 0 5px 20px rgba(30, 64, 175, 0.07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.7s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: enclaveEmerge 1.1s ease-out forwards;
    max-width: 650px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(96, 165, 250, 0.12);
}

.regal-provision-enclave:nth-child(1) { animation-delay: 0.25s; }
.regal-provision-enclave:nth-child(2) { animation-delay: 0.5s; }
.regal-provision-enclave:nth-child(3) { animation-delay: 0.75s; }
.regal-provision-enclave:nth-child(4) { animation-delay: 1s; }

.regal-provision-enclave:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.14);
}

.regal-provision-enclave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(59, 130, 246, 0.04);
    transition: width 0.7s ease;
}

.regal-provision-enclave:hover::before {
    width: 100%;
}

.enclave-proclamation {
    font-size: clamp(22px, 2.8vw, 26px);
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    transition: color 0.7s ease;
}

.regal-provision-enclave:hover .enclave-proclamation {
    color: #1e40af;
}

.enclave-elucidation {
    font-size: clamp(16px, 2vw, 18px);
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
    transition: color 0.7s ease;
}

.regal-provision-enclave:hover .enclave-elucidation {
    color: #334155;
}

.opulent-invocation-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: clamp(12px, 1.8vw, 14px) clamp(25px, 3.5vw, 30px);
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(29, 78, 216, 0.2);
    transition: transform 0.7s ease, box-shadow 0.7s ease, background 0.7s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.opulent-invocation-portal:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 10px 28px rgba(29, 78, 216, 0.3);
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.opulent-invocation-portal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
    opacity: 0;
}

.opulent-invocation-portal:hover::before {
    width: 300%;
    height: 300%;
    opacity: 1;
}

.opulent-invocation-portal svg {
    width: 22px;
    height: 22px;
    transform: rotate(-90deg);
    transition: transform 0.7s ease;
}

.opulent-invocation-portal:hover svg {
    transform: rotate(-90deg) translateX(6px);
}

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

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

@keyframes gentlePulse {
    from {
        opacity: 0.6;
    }
    to {
        opacity: 0.2;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .imperial-provision-panorama {
        padding: clamp(70px, 12vh, 100px) 0;
    }
    .sovereign-provision-edict {
        font-size: clamp(30px, 8vw, 40px);
    }
    .regal-provision-enclave {
        align-items: center;
        text-align: center;
    }
    .opulent-invocation-portal {
        align-self: center;
        padding: 12px 25px;
        font-size: 15px;
    }
    .enclave-proclamation {
        font-size: clamp(20px, 3.5vw, 24px);
    }
    .enclave-elucidation {
        font-size: clamp(14px, 2.5vw, 16px);
    }
}
/* ----------------------noble-commitment-section---------------------------- */

.sovereign-pledge-dominion {
    padding: clamp(90px, 13vh, 130px) 0;
    background: linear-gradient(to top, #f9fafb 0%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
}

.sovereign-pledge-dominion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 25%, transparent 25%, transparent 50%, rgba(59, 130, 246, 0.02) 50%, rgba(59, 130, 246, 0.02) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    opacity: 0.5;
    animation: patternDrift 10s linear infinite;
}

.exalted-pledge-sanctum {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    opacity: 0;
    transform: translateX(-30px);
    animation: sanctumGlide 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.transcendent-pledge-manifesto {
    font-size: clamp(32px, 5.5vw, 46px);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 35px;
    position: relative;
    line-height: 1.3;
    transition: color 0.6s ease;
}

.transcendent-pledge-manifesto::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #1e40af);
    transition: width 0.6s ease;
}

.transcendent-pledge-manifesto:hover {
    color: #1d4ed8;
}

.transcendent-pledge-manifesto:hover::before {
    width: 120px;
}

.refined-pledge-discourse {
    opacity: 0;
    transform: translateY(30px);
    animation: discourseElevate 1.5s ease-out 0.4s forwards;
}

.refined-pledge-discourse p {
    font-size: clamp(17px, 2.2vw, 19px);
    color: #374151;
    line-height: 1.9;
    font-weight: 400;
    margin: 0;
    transition: color 0.6s ease, transform 0.6s ease;
}

.refined-pledge-discourse:hover p {
    color: #1f2937;
    transform: translateY(-2px);
}

.eminent-domain-emblem {
    font-weight: 800;
    color: #1e3a8a;
    position: relative;
    padding: 3px 8px;
    background: rgba(96, 165, 250, 0.08);
    border-radius: 6px;
    transition: background 0.6s ease, color 0.6s ease;
}

.eminent-domain-emblem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.6s ease;
}

.eminent-domain-emblem:hover {
    background: rgba(96, 165, 250, 0.15);
    color: #1d4ed8;
}

.eminent-domain-emblem:hover::after {
    width: 80%;
}

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

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

@keyframes patternDrift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .exalted-pledge-sanctum {
        text-align: center;
    }
    .transcendent-pledge-manifesto {
        font-size: clamp(26px, 7vw, 38px);
    }
    .refined-pledge-discourse p {
        font-size: clamp(15px, 3vw, 17px);
    }
    .transcendent-pledge-manifesto::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .transcendent-pledge-manifesto:hover::before {
        width: 100px;
    }
}

/* ----------------------noble-commitment-section---------------------------- */




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

.sovereign-engagement-domain {
    padding: clamp(100px, 15vh, 160px) 0;
    background: linear-gradient(to top right, #f9fafb 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.sovereign-engagement-domain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    opacity: 0.6;
    animation: radiantPulse 6s infinite alternate ease-in-out;
}

.regal-interaction-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 60px);
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .regal-interaction-matrix {
        grid-template-columns: 1fr;
    }
}

.exalted-narrative-node {
    max-width: 100%;
    opacity: 0;
    transform: translateX(-40px);
    animation: narrativeGlide 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.imperial-concourse-title {
    font-size: clamp(34px, 6vw, 48px);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 25px;
    text-align: left;
    position: relative;
    transition: color 0.6s ease;
}

.imperial-concourse-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(to right, #1e40af, #3b82f6);
    transition: width 0.6s ease;
}

.imperial-concourse-title:hover::after {
    width: 150px;
}

.imperial-concourse-title:hover {
    color: #1d4ed8;
}

.refined-concourse-exposition {
    font-size: clamp(17px, 2.2vw, 19px);
    color: #374151;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: left;
    transition: color 0.6s ease;
}

.refined-concourse-exposition:hover {
    color: #1f2937;
}

.noble-contact-roster {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-artifact {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: artifactAscend 0.9s ease-out forwards;
}

.contact-artifact:nth-child(1) { animation-delay: 0.3s; }
.contact-artifact:nth-child(2) { animation-delay: 0.5s; }
.contact-artifact:nth-child(3) { animation-delay: 0.7s; }

.contact-artifact svg {
    width: 26px;
    height: 26px;
    color: #1e3a8a;
    transition: transform 0.6s ease, color 0.6s ease;
}

.contact-artifact:hover svg {
    transform: scale(1.15) rotate(10deg);
    color: #2563eb;
}

.artifact-heading {
    font-size: clamp(19px, 2.1vw, 21px);
    font-weight: 700;
    color: #111827;
    margin: 0;
    transition: color 0.6s ease;
}

.contact-artifact:hover .artifact-heading {
    color: #1d4ed8;
}

.artifact-description {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #475569;
    margin: 8px 0 0 0;
    transition: color 0.6s ease;
}

.contact-artifact:hover .artifact-description {
    color: #334155;
}

.artifact-description a {
    color: #1e40af;
    text-decoration: none;
    transition: color 0.4s ease;
}

.artifact-description a:hover {
    color: #2563eb;
}

.compliance-manifesto {
    margin-top: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: artifactAscend 0.9s ease-out 0.9s forwards;
}

.opulent-inquiry-chamber {
    max-width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 20px;
    padding: clamp(30px, 5vw, 40px);
    box-shadow: 0 5px 25px rgba(30, 64, 175, 0.08);
    opacity: 0;
    transform: translateX(40px);
    animation: chamberReveal 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.join__form {
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 4vw, 30px);
}

.inquiry-segment {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.inquiry-label {
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 600;
    color: #111827;
    transition: color 0.4s ease;
}

.inquiry-segment:hover .inquiry-label {
    color: #1d4ed8;
}

.inquiry-input,
.inquiry-textarea {
    padding: 14px 18px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    font-size: clamp(15px, 1.7vw, 17px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.inquiry-input:focus,
.inquiry-textarea:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    outline: none;
    transform: scale(1.01);
}

.inquiry-textarea {
    resize: vertical;
    min-height: 140px;
}

.inquiry-disclaimer {
    font-size: clamp(13px, 1.5vw, 15px);
    color: #475569;
    text-align: center;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.inquiry-disclaimer:hover {
    color: #334155;
}

.disclaimer-link {
    color: #1e40af;
    text-decoration: none;
    transition: color 0.4s ease;
}

.disclaimer-link:hover {
    color: #2563eb;
}

.inquiry-submit-portal {
    max-width: 220px;
    margin: 0 auto;
    padding: 14px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
}

.inquiry-submit-portal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.25);
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.inquiry-submit-portal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    opacity: 0;
}

.inquiry-submit-portal:hover::before {
    width: 300%;
    height: 300%;
    opacity: 1;
}

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

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

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

@keyframes radiantPulse {
    from {
        opacity: 0.6;
    }
    to {
        opacity: 0.3;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sovereign-engagement-domain {
        padding: clamp(70px, 12vh, 100px) 0;
    }
    .imperial-concourse-title {
        font-size: clamp(28px, 7vw, 40px);
        text-align: center;
    }
    .refined-concourse-exposition {
        font-size: clamp(15px, 3vw, 17px);
        text-align: center;
    }
    .artifact-heading {
        font-size: clamp(17px, 2.5vw, 19px);
    }
    .artifact-description {
        font-size: clamp(14px, 2.2vw, 16px);
    }
    .opulent-inquiry-chamber {
        padding: 25px;
    }
    .inquiry-label {
        font-size: 15px;
    }
    .inquiry-input,
    .inquiry-textarea {
        font-size: 15px;
    }
    .inquiry-disclaimer {
        font-size: 13px;
    }
    .inquiry-submit-portal {
        font-size: 15px;
        max-width: 200px;
    }
}

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

.transcendent-legacy-foundation {
    padding: clamp(80px, 12vh, 120px) 0;
    background: radial-gradient(circle at top, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}


.opulent-testament-chronicle {
    max-width: 1100px;
    margin: 0 auto clamp(40px, 6vw, 50px) auto;
    opacity: 0;
    transform: perspective(600px) rotateX(10deg);
    animation: chronicleUnfold 1.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.opulent-testament-chronicle p {
    font-size: clamp(14px, 1.7vw, 16px);
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    transition: color 0.5s ease, transform 0.5s ease;
}

.opulent-testament-chronicle p:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.opulent-testament-chronicle p strong {
    color: #e5e7eb;
    font-weight: 700;
    transition: color 0.5s ease;
}

.opulent-testament-chronicle p:hover strong {
    color: #60a5fa;
}

.opulent-testament-chronicle p a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.5s ease;
}

.opulent-testament-chronicle p a:hover {
    color: #3b82f6;
}

.imperial-heritage-edifice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(25px, 4vw, 35px);
    opacity: 0;
    transform: scale(0.95);
    animation: edificeBloom 1.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s forwards;
}

@media (max-width: 768px) {
    .imperial-heritage-edifice {
        flex-direction: column;
        gap: 25px;
    }
}

.sovereign-custody-decree {
    font-size: clamp(14px, 1.7vw, 16px);
    color: #cbd5e1;
    font-weight: 500;
    transition: color 0.5s ease;
}

.sovereign-custody-decree:hover {
    color: #ffffff;
}

.aristocratic-navigation-constellation {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 30px);
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .aristocratic-navigation-constellation {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.celestial-navigation-beacon {
    font-size: clamp(14px, 1.7vw, 16px);
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: beaconIlluminate 1s ease-out forwards;
    transition: color 0.5s ease;
}

.celestial-navigation-beacon:nth-child(1) { animation-delay: 0.6s; }
.celestial-navigation-beacon:nth-child(2) { animation-delay: 0.7s; }
.celestial-navigation-beacon:nth-child(3) { animation-delay: 0.8s; }
.celestial-navigation-beacon:nth-child(4) { animation-delay: 0.9s; }

.celestial-navigation-beacon::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #60a5fa;
    transition: width 0.5s ease;
    border-radius: 2px;
}

.celestial-navigation-beacon:hover {
    color: #3b82f6;
}

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

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

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

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

@keyframes heritageDrift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px -40px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .transcendent-legacy-foundation {
        padding: clamp(50px, 9vh, 70px) 0;
    }
    .opulent-testament-chronicle p {
        font-size: clamp(13px, 2vw, 15px);
    }
    .sovereign-custody-decree {
        font-size: clamp(13px, 2vw, 15px);
        text-align: center;
    }
    .celestial-navigation-beacon {
        font-size: clamp(13px, 2vw, 15px);
    }
}

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

.elegant-cookie-notice {
    position: fixed;
    bottom: clamp(20px, 3vw, 30px);
    right: clamp(20px, 3vw, 30px);
    max-width: clamp(300px, 35vw, 400px);
    width: 90%;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 31, 63, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateY(60px);
    animation: cookieSlideUp 0.8s ease-out forwards;
    transition: box-shadow 0.4s ease;
}

.elegant-cookie-notice:hover {
    box-shadow: 0 12px 35px rgba(0, 31, 63, 0.3);
}

.refined-cookie-content {
    padding: clamp(20px, 3vw, 25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.prestige-cookie-heading {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 15px;
    position: relative;
}

.prestige-cookie-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #ffd700, #d4af37);
    margin: 10px auto 0;
    transition: width 0.4s ease;
}

.prestige-cookie-heading:hover::after {
    width: 80px;
}

.sophisticated-cookie-text {
    font-size: clamp(13px, 1.6vw, 14px);
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.noble-cookie-actions {
    display: flex;
    gap: clamp(15px, 2vw, 20px);
}

.luxury-accept-button {
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
    background: linear-gradient(135deg, #001f3f 0%, #004080 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: clamp(13px, 1.5vw, 14px);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.luxury-accept-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 31, 63, 0.3);
}

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

.luxury-accept-button:hover::before {
    opacity: 1;
    transform: scale(1);
}

.luxury-reject-button {
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
    background: #e8edf3;
    color: #001f3f;
    border: none;
    border-radius: 50px;
    font-size: clamp(13px, 1.5vw, 14px);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.luxury-reject-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 31, 63, 0.2);
    background: #d0d4d8;
}

.luxury-reject-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0);
}

.luxury-reject-button:hover::before {
    opacity: 1;
    transform: scale(1);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .elegant-cookie-notice {
        max-width: 90%;
        bottom: 15px;
        right: 15px;
        padding: 15px;
    }
    .prestige-cookie-heading {
        font-size: clamp(16px, 2vw, 18px);
    }
    .sophisticated-cookie-text {
        font-size: clamp(12px, 1.5vw, 13px);
    }
    .luxury-accept-button,
    .luxury-reject-button {
        padding: 8px 20px;
        font-size: clamp(12px, 1.4vw, 13px);
    }
}

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



.sovereign-gratitude-realm {
    padding: clamp(80px, 13vh, 140px) 0;
    background: linear-gradient(to bottom, #fafafa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.sovereign-gratitude-realm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    opacity: 0.5;
    animation: subtleGlow 5s infinite alternate ease-in-out;
}

.exalted-gratitude-proclamation {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 40px);
    opacity: 0;
    transform: scale(0.9);
    animation: proclamationBloom 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.exalted-gratitude-proclamation h1 {
    font-size: clamp(34px, 6vw, 48px);
    font-weight: 900;
    color: #0f172a;
    position: relative;
    transition: color 0.6s ease;
}

.exalted-gratitude-proclamation h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #1e40af, #3b82f6);
    transition: width 0.6s ease;
}

.exalted-gratitude-proclamation:hover h1::after {
    width: 120px;
}

.exalted-gratitude-proclamation:hover h1 {
    color: #1d4ed8;
}

.regal-gratitude-narrative {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: narrativeAscend 1.4s ease-out 0.3s forwards;
}

.regal-gratitude-narrative p {
    font-size: clamp(16px, 2.1vw, 18px);
    color: #374151;
    line-height: 1.8;
    margin-bottom: 25px;
    transition: color 0.6s ease;
}

.regal-gratitude-narrative p:hover {
    color: #1f2937;
}

.noble-guidance-chapter {
    margin-bottom: clamp(30px, 5vw, 40px);
}

.noble-guidance-chapter h2 {
    font-size: clamp(24px, 3.5vw, 28px);
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    position: relative;
    transition: color 0.6s ease;
}

.noble-guidance-chapter h2::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #2563eb;
    transition: width 0.6s ease;
}

.noble-guidance-chapter:hover h2 {
    color: #1e40af;
}

.noble-guidance-chapter:hover h2::before {
    width: 80px;
}

.aristocratic-guidance-roster {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aristocratic-guidance-roster li {
    font-size: clamp(15px, 2vw, 17px);
    color: #475569;
    line-height: 1.7;
    position: relative;
    padding-left: 30px;
    opacity: 0;
    transform: translateX(-20px);
    animation: listItemSlide 0.9s ease-out forwards;
}

.aristocratic-guidance-roster li:nth-child(1) { animation-delay: 0.5s; }
.aristocratic-guidance-roster li:nth-child(2) { animation-delay: 0.6s; }
.aristocratic-guidance-roster li:nth-child(3) { animation-delay: 0.7s; }

.aristocratic-guidance-roster li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1e40af;
    font-size: 24px;
    transition: color 0.6s ease, transform 0.6s ease;
}

.aristocratic-guidance-roster li:hover {
    color: #334155;
}

.aristocratic-guidance-roster li:hover::before {
    color: #2563eb;
    transform: scale(1.2);
}

.narrative-link {
    color: #1e40af;
    text-decoration: none;
    position: relative;
    transition: color 0.5s ease;
}

.narrative-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.5s ease;
}

.narrative-link:hover {
    color: #2563eb;
}

.narrative-link:hover::after {
    width: 100%;
}

.opulent-exploration-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 2vw, 16px) clamp(30px, 4vw, 35px);
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.2);
    transition: transform 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.opulent-exploration-portal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.3);
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.opulent-exploration-portal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
    opacity: 0;
}

.opulent-exploration-portal:hover::before {
    width: 300%;
    height: 300%;
    opacity: 1;
}

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

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

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

@keyframes subtleGlow {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 0.2;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sovereign-gratitude-realm {
        padding: clamp(60px, 11vh, 90px) 0;
    }
    .exalted-gratitude-proclamation h1 {
        font-size: clamp(28px, 7vw, 40px);
    }
    .regal-gratitude-narrative p {
        font-size: clamp(14px, 2.5vw, 16px);
    }
    .noble-guidance-chapter h2 {
        font-size: clamp(22px, 4vw, 26px);
    }
    .aristocratic-guidance-roster li {
        font-size: clamp(14px, 2.2vw, 16px);
    }
    .opulent-exploration-portal {
        font-size: 15px;
        padding: 12px 25px;
    }
}

.celestial-navigation-beacon {
    z-index: 999 !important;
}