@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://Capitolytics.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://Capitolytics.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-header-navigation {
    background: linear-gradient(to bottom, #121212, #1f1f1f);
    padding: clamp(15px, 2.5vw, 25px) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(224, 224, 224, 0.1);
}

.sophisticated-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(30px, 5vw, 50px);
    animation: elegantSlideIn 1.2s ease-out forwards;
}

.exquisite-brand-emblem {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.exquisite-brand-emblem:hover {
    transform: scale(1.05) translateY(-2px);
}

.refined-emblem-image {
    height: clamp(45px, 6vw, 55px);
    width: auto;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.5s ease;
}

.exquisite-brand-emblem:hover .refined-emblem-image {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.prestigious-brand-title {
    color: #e0e0e0;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.advanced-navigation-controls {
    display: none;
}

@media screen and (max-width: 1200px) {
    .advanced-navigation-controls {
        display: block;
    }
}

.elegant-primary-navigation .distinguished-menu-collection {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 1200px) {
    .elegant-primary-navigation .distinguished-menu-collection {
        display: flex;
        align-items: center;
        gap: clamp(30px, 4vw, 40px);
    }
}

.superior-navigation-element {
    position: relative;
    overflow: hidden;
}

.illustrious-nav-anchor {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(16px, 1.9vw, 19px);
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.illustrious-nav-anchor::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 20px;
}

.illustrious-nav-anchor:hover {
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.illustrious-nav-anchor:hover::before {
    left: 0;
}

.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, filter 0.4s ease;
}

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

.burger::before,
.burger::after,
.burger span {
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    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(6px, 6px);
}

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

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

.elite-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #1a1a1a, #2a2a2a);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
    opacity: 0;
    z-index: 99;
}

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

.luxurious-mobile-collection {
    list-style: none;
    margin: 0;
    padding: clamp(25px, 6vw, 35px) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.elite-mobile-element {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

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

.elite-mobile-menu.is-open .elite-mobile-element:nth-child(4) {
    transition-delay: 0.6s;
}

.mobile-nav-connection {
    color: #e0e0e0;
    text-decoration: none;
    font-size: clamp(22px, 4.5vw, 26px);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-connection::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    z-index: -1;
}

.mobile-nav-connection:hover {
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.mobile-nav-connection:hover::before {
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .sophisticated-nav-wrapper {
        gap: 15px;
    }
    .refined-emblem-image {
        height: 45px;
    }
    .prestigious-brand-title {
        font-size: 20px;
    }
    .mobile-nav-connection {
        font-size: 22px;
        padding: 8px 16px;
    }
}

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

.affluent-welcome-Capitolytics {
    padding: clamp(80px, 15vh, 150px) 0;
    background-color: #002b5c;
    position: relative;
    overflow: hidden;
}

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

@media screen and (min-width: 992px) {
    .refined-presentation-framework {
        grid-template-columns: 1fr 1fr;
        gap: clamp(50px, 8vw, 80px);
    }
}

.opulent-illustration-hub {
    position: relative;
    max-width: 100%;
    order: 1;
    opacity: 0;
    transform: translateX(-50px);
    animation: gracefulSlideRight 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
}

@media screen and (min-width: 992px) {
    .opulent-illustration-hub {
        order: 2;
    }
}

.sumptuous-visual-representation {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.6s ease;
}

.sumptuous-visual-representation:hover {
    transform: perspective(800px) rotateY(5deg);
    filter: brightness(1.1);
}

.elegant-overlay-veil {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    transition: opacity 0.6s ease;
    border-radius: 20px;
}

.opulent-illustration-hub:hover .elegant-overlay-veil {
    opacity: 0.8;
}

.distinguished-narrative-core {
    max-width: 100%;
    text-align: center;
    color: #ffffff;
    order: 2;
    opacity: 0;
    transform: translateX(50px);
    animation: gracefulSlideLeft 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@media screen and (min-width: 992px) {
    .distinguished-narrative-core {
        text-align: left;
        order: 1;
    }
}

.grand-executive-caption {
    font-size: clamp(36px, 6vw, 54px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: -0.5px;
}

.grand-executive-caption::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to left, #ffd700, #b8860b);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s ease;
}

.grand-executive-caption:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.polished-insight-narrative {
    font-size: clamp(17px, 2.2vw, 19px);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.elite-invitation-portal {
    display: inline-block;
    padding: clamp(12px, 1.8vw, 16px) clamp(30px, 4vw, 40px);
    background: linear-gradient(45deg, #ffd700 0%, #d4af37 100%);
    color: #001f3f;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    transition: box-shadow 0.5s ease, background 0.5s ease;
    position: relative;
    overflow: hidden;
    max-width: 220px;
}

.elite-invitation-portal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 10%, transparent 80%);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.elite-invitation-portal:hover {
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #d4af37 0%, #ffd700 100%);
}

.elite-invitation-portal:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .grand-executive-caption {
        font-size: clamp(28px, 8vw, 42px);
    }
    .polished-insight-narrative {
        font-size: clamp(15px, 3.5vw, 17px);
    }
    .elite-invitation-portal {
        padding: 12px 30px;
        font-size: 15px;
    }
    .grand-executive-caption::before {
        width: 80px;
    }
}


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

.sumptuous-metrics-Capitolytics {
    padding: clamp(70px, 12vh, 120px) 0;
    background: linear-gradient(to bottom, #001f3f 0%, #002b5c 100%);
    position: relative;
    overflow: hidden;
}

.aristocratic-data-ensemble {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(25px, 4vw, 35px);
}

.metric-ensemble {
    flex: 1 1 clamp(220px, 28vw, 280px);
    perspective: 1000px;
    opacity: 0;
    transform: rotateY(-30deg) translateZ(-50px);
    animation: majesticReveal 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.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-nucleus {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    padding: clamp(25px, 4vw, 35px);
    text-align: center;
    transition: background 0.5s ease, border-color 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.metric-ensemble:hover .metric-nucleus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: rotateY(10deg) translateZ(20px);
}

.metric-nucleus::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.metric-ensemble:hover .metric-nucleus::before {
    opacity: 1;
}

.metric-quantum {
    font-size: clamp(40px, 7vw, 52px);
    font-weight: 900;
    color: #ffd700;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: text-shadow 0.5s ease, color 0.5s ease;
}

.metric-ensemble:hover .metric-quantum {
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.5);
    color: #ffffff;
}

.metric-essence {
    font-size: clamp(15px, 2.1vw, 17px);
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
    transition: opacity 0.5s ease, color 0.5s ease;
}

.metric-ensemble:hover .metric-essence {
    opacity: 1;
    color: #ffffff;
}

@keyframes majesticReveal {
    to {
        opacity: 1;
        transform: rotateY(0deg) translateZ(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .aristocratic-data-ensemble {
        flex-direction: column;
        gap: 25px;
    }
    .metric-ensemble {
        flex: 1 1 auto;
    }
    .metric-quantum {
        font-size: clamp(32px, 6vw, 44px);
    }
    .metric-essence {
        font-size: clamp(14px, 2.5vw, 16px);
    }
}

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


/* ----------------------refined-info-section---------------------------- */
.majestic-insight-territory {
    padding: clamp(80px, 13vh, 140px) 0;
    background: linear-gradient(to top, #002b5c 0%, #001f3f 100%);
    position: relative;
    overflow: hidden;
}

.imperial-knowledge-vault {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    animation: imperialUnveil 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.sovereign-inquiry-banner {
    font-size: clamp(32px, 5.5vw, 46px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 35px;
    position: relative;
    line-height: 1.25;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.sovereign-inquiry-banner::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: linear-gradient(to right, #b8860b 0%, #ffd700 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2.5px;
}

.sovereign-inquiry-banner:hover::after {
    width: 120px;
}

.regal-narrative-sanctum {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1);
    transition: box-shadow 0.6s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: narrativeAscend 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s forwards;
}

.regal-narrative-sanctum:hover {
    box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.2);
}

.ornate-exposition-scroll {
    font-size: clamp(17px, 2.3vw, 19px);
    color: #e0e0e0;
    line-height: 1.9;
    font-weight: 300;
    margin: 0;
    position: relative;
    z-index: 1;
}

.eminent-Capitolytics-crest {
    font-weight: 800;
    color: #ffd700;
    position: relative;
    padding: 2px 8px;
    background: rgba(0, 31, 63, 0.3);
    border-radius: 5px;
    transition: background 0.5s ease, color 0.5s ease;
}

.eminent-Capitolytics-crest:hover {
    background: rgba(0, 31, 63, 0.5);
    color: #ffffff;
}

.eminent-Capitolytics-crest::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
    border-radius: 50%;
    z-index: -1;
}

.eminent-Capitolytics-crest:hover::before {
    width: 300%;
    height: 300%;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .sovereign-inquiry-banner {
        font-size: clamp(26px, 7vw, 38px);
    }
    .ornate-exposition-scroll {
        font-size: clamp(15px, 3vw, 17px);
    }
    .sovereign-inquiry-banner::after {
        height: 4px;
    }
    .sovereign-inquiry-banner:hover::after {
        width: 100px;
    }
    .regal-narrative-sanctum {
        padding: 15px;
    }
}

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





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

.lavish-offering-showcase {
    padding: clamp(90px, 14vh, 150px) 0;
    background: linear-gradient(to top, #001f3f 0%, #002b5c 100%);
    position: relative;
    overflow: hidden;
}

.grand-offering-prologue {
    text-align: center;
    margin-bottom: clamp(45px, 7vw, 65px);
    opacity: 0;
    transform: perspective(800px) rotateX(-15deg);
    animation: prologueManifest 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.majestic-offering-declaration {
    font-size: clamp(34px, 5.5vw, 48px);
    font-weight: 900;
    color: #ffffff;
    position: relative;
    line-height: 1.3;
    letter-spacing: 1px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.majestic-offering-declaration::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background: #ffd700;
    opacity: 0.7;
    transition: width 0.7s ease, opacity 0.7s ease;
}

.majestic-offering-declaration:hover::before {
    width: 140px;
    opacity: 1;
}

.exquisite-offering-mosaic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(30px, 5vw, 40px);
}

.supreme-offering-artefact {
    flex: 1 1 clamp(280px, 32vw, 320px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 30px;
    padding: clamp(30px, 5vw, 40px);
    text-align: center;
    transition: border-color 0.6s ease, background 0.6s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(50px) rotate(-5deg);
    animation: artefactEmerge 1.1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.supreme-offering-artefact:nth-child(1) {
    animation-delay: 0.2s;
}

.supreme-offering-artefact:nth-child(2) {
    animation-delay: 0.4s;
}

.supreme-offering-artefact:nth-child(3) {
    animation-delay: 0.6s;
}

.supreme-offering-artefact:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.supreme-offering-artefact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.1), transparent);
    transition: height 0.8s ease;
}

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

.emblem-cradle {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transition: background 0.6s ease, transform 0.6s ease;
    margin-left: auto;
    margin-right: auto;
}

.supreme-offering-artefact:hover .emblem-cradle {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.ornamental-offering-symbol {
    color: #ffd700;
    width: 50px;
    height: 50px;
    transition: color 0.6s ease, filter 0.6s ease;
}

.supreme-offering-artefact:hover .ornamental-offering-symbol {
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.noble-offering-designation {
    font-size: clamp(22px, 2.8vw, 26px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    transition: text-shadow 0.6s ease;
}

.supreme-offering-artefact:hover .noble-offering-designation {
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.4);
}

.polished-offering-elucidation {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #e0e0e0;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.9;
    transition: opacity 0.6s ease, color 0.6s ease;
}

.supreme-offering-artefact:hover .polished-offering-elucidation {
    opacity: 1;
    color: #ffffff;
}

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

@keyframes artefactEmerge {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lavish-offering-showcase {
        padding: clamp(60px, 12vh, 100px) 0;
    }
    .majestic-offering-declaration {
        font-size: clamp(28px, 7vw, 40px);
    }
    .exquisite-offering-mosaic {
        flex-direction: column;
        gap: 30px;
    }
    .supreme-offering-artefact {
        flex: 1 1 auto;
    }
    .noble-offering-designation {
        font-size: clamp(20px, 3vw, 24px);
    }
    .polished-offering-elucidation {
        font-size: clamp(14px, 2.2vw, 16px);
    }
}

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

.opulent-assistance-realm {
    padding: clamp(100px, 15vh, 160px) 0;
    background: linear-gradient(to bottom, #001f3f 0%, #002b5c 100%);
    position: relative;
    overflow: hidden;
}

.illustrious-assistance-proclamation {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 70px);
    opacity: 0;
    transform: translateY(-40px);
    animation: proclamationAscension 1.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.resplendent-assistance-manifesto {
    font-size: clamp(36px, 6vw, 50px);
    font-weight: 900;
    color: #ffffff;
    position: relative;
    line-height: 1.35;
    letter-spacing: 1.5px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.resplendent-assistance-manifesto::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: #ffd700;
    opacity: 0.8;
    transition: width 0.8s ease, opacity 0.8s ease;
    border-radius: 1.5px;
}

.resplendent-assistance-manifesto:hover::after {
    width: 160px;
    opacity: 1;
}

.magnificent-assistance-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(35px, 6vw, 45px);
}

@media (max-width: 992px) {
    .magnificent-assistance-gallery {
        grid-template-columns: 1fr;
    }
}

.paramount-assistance-edifice {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 35px;
    padding: clamp(35px, 6vw, 45px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.7s ease, background 0.7s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: scale(0.92);
    animation: edificeMaterialize 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.paramount-assistance-edifice:nth-child(1) {
    animation-delay: 0.3s;
}

.paramount-assistance-edifice:nth-child(2) {
    animation-delay: 0.5s;
}

.paramount-assistance-edifice:nth-child(3) {
    animation-delay: 0.7s;
}

.paramount-assistance-edifice:nth-child(4) {
    animation-delay: 0.9s;
}

.paramount-assistance-edifice:hover {
    border-color: rgba(255, 215, 0, 0.35);
    background: rgba(255, 255, 255, 0.09);
}

.paramount-assistance-edifice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.9s ease;
}

.paramount-assistance-edifice:hover::before {
    opacity: 1;
}

.edifice-core {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.edifice-crown {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    transition: text-shadow 0.7s ease;
}

.paramount-assistance-edifice:hover .edifice-crown {
    text-shadow: 0 3px 6px rgba(255, 215, 0, 0.5);
}

.edifice-chronicle {
    font-size: clamp(16px, 2vw, 18px);
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
    opacity: 0.95;
    transition: opacity 0.7s ease, color 0.7s ease;
}

.paramount-assistance-edifice:hover .edifice-chronicle {
    opacity: 1;
    color: #ffffff;
}

.sublime-engagement-conduit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: clamp(12px, 1.8vw, 14px) clamp(25px, 3.5vw, 30px);
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    color: #001f3f;
    text-decoration: none;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 700;
    border-radius: 40px;
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.25);
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
    position: relative;
    overflow: hidden;
}

.sublime-engagement-conduit:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.45);
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
}

.sublime-engagement-conduit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 31, 63, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.8s ease, height 0.8s ease;
}

.sublime-engagement-conduit:hover::before {
    width: 400%;
    height: 400%;
}

.conduit-emblem {
    width: 22px;
    height: 22px;
    transform: rotate(-90deg);
    transition: transform 0.5s ease;
}

.sublime-engagement-conduit:hover .conduit-emblem {
    transform: rotate(-90deg) translateX(6px);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .opulent-assistance-realm {
        padding: clamp(70px, 13vh, 110px) 0;
    }
    .resplendent-assistance-manifesto {
        font-size: clamp(30px, 8vw, 42px);
    }
    .edifice-crown {
        font-size: clamp(22px, 3.5vw, 26px);
    }
    .edifice-chronicle {
        font-size: clamp(15px, 2.5vw, 17px);
    }
    .sublime-engagement-conduit {
        padding: 12px 25px;
        font-size: 15px;
    }
}

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

.exalted-integrity-Capitolytics {
    padding: clamp(90px, 14vh, 150px) 0;
    background-color: #002b5c;
    position: relative;
    overflow: hidden;
}

.sovereign-integrity-chamber {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: perspective(1000px) rotateX(-10deg);
    animation: chamberUnfurl 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.regal-integrity-proclamation {
    font-size: clamp(34px, 5.5vw, 48px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
    line-height: 1.3;
    letter-spacing: 1px;
    text-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
}

.regal-integrity-proclamation::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ffd700, #b8860b);
    opacity: 0.7;
    transition: width 0.7s ease, opacity 0.7s ease;
    border-radius: 2px;
}

.regal-integrity-proclamation:hover::before {
    width: 150px;
    opacity: 1;
}

.prestigious-narrative-vault {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: clamp(25px, 5vw, 35px);
    box-shadow: inset 0 0 25px rgba(255, 215, 0, 0.15);
    transition: box-shadow 0.7s ease;
    opacity: 0;
    transform: scale(0.9);
    animation: vaultReveal 1.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s forwards;
}

.prestigious-narrative-vault:hover {
    box-shadow: inset 0 0 40px rgba(255, 215, 0, 0.25);
}

.ornate-integrity-script {
    font-size: clamp(17px, 2.2vw, 19px);
    color: #e0e0e0;
    line-height: 1.9;
    font-weight: 300;
    margin: 0;
    position: relative;
    z-index: 1;
}

.eminent-Capitolytics-seal {
    font-weight: 800;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    padding: 3px 10px;
    border-radius: 8px;
    transition: background 0.6s ease, color 0.6s ease;
}

.eminent-Capitolytics-seal:hover {
    background: rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

.eminent-Capitolytics-seal::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.8s ease, height 0.8s ease;
    z-index: -1;
}

.eminent-Capitolytics-seal:hover::after {
    width: 400%;
    height: 400%;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .exalted-integrity-Capitolytics {
        padding: clamp(60px, 12vh, 100px) 0;
    }
    .regal-integrity-proclamation {
        font-size: clamp(28px, 7vw, 40px);
    }
    .ornate-integrity-script {
        font-size: clamp(15px, 2.5vw, 17px);
    }
    .prestigious-narrative-vault {
        padding: 20px;
    }
    .regal-integrity-proclamation::before {
        width: 60px;
    }
    .regal-integrity-proclamation:hover::before {
        width: 120px;
    }
}

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




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

.splendid-engagement-haven {
    padding: clamp(110px, 16vh, 170px) 0;
    background: linear-gradient(to bottom, #001f3f 0%, #002b5c 100%);
    position: relative;
    overflow: hidden;
}

.imperial-engagement-tapestry {
    display: flex;
    flex-direction: column-reverse;
    gap: clamp(40px, 7vw, 60px);
    align-items: center;
}

@media (min-width: 992px) {
    .imperial-engagement-tapestry {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
}

.sumptuous-inquiry-portal {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 40px;
    padding: clamp(30px, 5vw, 40px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(40px);
    animation: portalInvocation 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s forwards;
    backdrop-filter: blur(12px);
}

@media (min-width: 992px) {
    .sumptuous-inquiry-portal {
        max-width: 48%;
    }
}

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

.portal-chamber {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chamber-seal {
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
}

.chamber-vessel,
.chamber-scroll {
    padding: 14px 18px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    font-size: clamp(15px, 1.8vw, 17px);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.chamber-vessel:focus,
.chamber-scroll:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.25);
    outline: none;
}

.chamber-scroll {
    resize: vertical;
    min-height: 140px;
}

.chamber-edict {
    font-size: clamp(13px, 1.5vw, 15px);
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 15px;
    opacity: 0.85;
}

.edict-decree {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.4s ease;
}

.edict-decree:hover {
    color: #ffffff;
}

.chamber-herald {
    max-width: 220px;
    margin: 0 auto;
    padding: 14px 0;
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    color: #001f3f;
    border: none;
    border-radius: 60px;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.chamber-herald:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.chamber-herald::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
}

.chamber-herald:hover::after {
    width: 500%;
    height: 500%;
}

.opulent-narrative-citadel {
    max-width: 100%;
    opacity: 0;
    transform: translateX(-40px);
    animation: citadelInvocation 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@media (min-width: 992px) {
    .opulent-narrative-citadel {
        max-width: 48%;
    }
}

.citadel-proclamation {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

@media (min-width: 992px) {
    .citadel-proclamation {
        text-align: left;
    }
}

.citadel-proclamation::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #ffd700;
    transition: width 0.6s ease;
}

@media (min-width: 992px) {
    .citadel-proclamation::before {
        left: 0;
        transform: none;
    }
}

.citadel-proclamation:hover::before {
    width: 100px;
}

.citadel-manuscript {
    font-size: clamp(17px, 2.1vw, 19px);
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: center;
    opacity: 0.9;
}

@media (min-width: 992px) {
    .citadel-manuscript {
        text-align: left;
    }
}

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

.annal-entry {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: entryChronicle 0.9s ease-out forwards;
}

.annal-entry:nth-child(1) { animation-delay: 0.1s; }
.annal-entry:nth-child(2) { animation-delay: 0.2s; }
.annal-entry:nth-child(3) { animation-delay: 0.3s; }

.entry-heraldry {
    width: 26px;
    height: 26px;
    color: #ffd700;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.annal-entry:hover .entry-heraldry {
    transform: rotate(360deg);
    filter: brightness(1.2);
}

.entry-canon {
    font-size: clamp(19px, 2.2vw, 21px);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.entry-scroll {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #e0e0e0;
    margin: 6px 0 0 0;
}

.entry-scroll a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.4s ease;
}

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

.citadel-decree {
    margin-top: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: entryChronicle 0.9s ease-out 0.4s forwards;
}

.scroll-missive {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.4s ease;
}

.scroll-missive:hover {
    color: #ffffff;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .splendid-engagement-haven {
        padding: clamp(80px, 14vh, 120px) 0;
    }
    .citadel-proclamation {
        font-size: clamp(26px, 7vw, 38px);
    }
    .citadel-manuscript {
        font-size: clamp(16px, 3vw, 18px);
    }
    .entry-canon {
        font-size: clamp(17px, 2vw, 19px);
    }
    .entry-scroll {
        font-size: clamp(14px, 2vw, 16px);
    }
    .sumptuous-inquiry-portal {
        padding: 25px;
    }
    .chamber-seal {
        font-size: 15px;
    }
    .chamber-vessel,
    .chamber-scroll {
        font-size: 15px;
    }
    .chamber-edict {
        font-size: 13px;
    }
    .chamber-herald {
        font-size: 15px;
        max-width: 200px;
    }
}

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

.celestial-conclusion-enclave {
    padding: clamp(70px, 11vh, 110px) 0;
    background: linear-gradient(to bottom, #121212, #1f1f1f);
    position: relative;
    overflow: hidden;
}

.ethereal-rights-sanctum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(35px, 6vw, 45px);
    opacity: 0;
    transform: translateY(25px);
    animation: sanctumEmerge 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@media (max-width: 768px) {
    .ethereal-rights-sanctum {
        flex-direction: column;
        gap: 25px;
    }
}

.luminous-copyright-decree {
    font-size: clamp(14px, 1.7vw, 16px);
    color: #e0e0e0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.resplendent-navigation-constellation {
    display: flex;
    align-items: center;
}

.stellar-link-array {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 30px);
    list-style: none;
    padding: 0;
    margin: 0;
}

.constellation-node {
    opacity: 0;
    transform: scale(0.9);
    animation: nodeIlluminate 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.constellation-node:nth-child(1) { animation-delay: 0.2s; }
.constellation-node:nth-child(2) { animation-delay: 0.3s; }
.constellation-node:nth-child(3) { animation-delay: 0.4s; }
.constellation-node:nth-child(4) { animation-delay: 0.5s; }

.radiant-connection-thread {
    font-size: clamp(14px, 1.7vw, 16px);
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.4s ease;
}

.radiant-connection-thread::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffd700;
    transition: width 0.4s ease, left 0.4s ease;
}

.radiant-connection-thread:hover {
    color: #ffd700;
}

.radiant-connection-thread:hover::after {
    width: 100%;
    left: 0;
}

.cosmic-disclaimer-vortex {
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0;
    transform: perspective(1200px) rotateX(10deg);
    animation: vortexCoalesce 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.nebulous-disclaimer-narrative {
    font-size: clamp(14px, 1.7vw, 16px);
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(255, 215, 0, 0.2);
    transition: background 0.5s ease, border-color 0.5s ease;
}

.nebulous-disclaimer-narrative:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.4);
}

.nebulous-disclaimer-narrative strong {
    color: #ffffff;
    font-weight: 500;
}

.nebulous-disclaimer-narrative a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.nebulous-disclaimer-narrative a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .celestial-conclusion-enclave {
        padding: clamp(50px, 9vh, 70px) 0;
    }
    .luminous-copyright-decree {
        font-size: clamp(13px, 1.6vw, 15px);
        text-align: center;
    }
    .stellar-link-array {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .radiant-connection-thread {
        font-size: clamp(13px, 1.6vw, 15px);
    }
    .nebulous-disclaimer-narrative {
        font-size: clamp(13px, 1.6vw, 15px);
        padding: 12px;
    }
}

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