@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-strategic-overhead {
    background: #0d1b2a;
    padding: clamp(15px, 2.5vw, 25px) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.refined-council-arrangement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(25px, 4.5vw, 45px);
    animation: gracefulManifest 1.2s ease-out forwards;
}

.sumptuous-insignia-connector {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.35s ease-in-out;
}

.sumptuous-insignia-connector:hover {
    transform: scale(1.04);
}

.lavish-emblem-visual {
    height: clamp(42px, 5.5vw, 52px);
    width: auto;
    border-radius: 10px;
    filter: drop-shadow(0 3px 5px rgba(255, 255, 255, 0.18));
    transition: filter 0.35s ease-in-out;
}

.sumptuous-insignia-connector:hover .lavish-emblem-visual {
    filter: drop-shadow(0 5px 10px rgba(255, 255, 255, 0.35));
}

.eminent-enterprise-caption {
    color: #f0f4f8;
    font-size: clamp(19px, 2.3vw, 23px);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.polished-principal-routing .cultivated-catalog-roster {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 1200px) {
    .polished-principal-routing .cultivated-catalog-roster {
        display: flex;
        align-items: center;
        gap: clamp(28px, 3.8vw, 38px);
    }
}

.superior-catalog-segment {
    position: relative;
}

.distinguished-catalog-pointer {
    color: #d4ddee;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(15.5px, 1.85vw, 18.5px);
    padding: 7px 14px;
    transition: color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
    border-radius: 5px;
}

.distinguished-catalog-pointer:hover {
    color: #ffffff;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.2);
}

.burger {
    width: 30px;
    height: 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.35s ease-in-out;
}

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

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

.burger::before,
.burger::after,
.burger span {
    width: 100%;
    height: 2.5px;
    background: #f0f4f8;
    border-radius: 3px;
    transition: all 0.45s ease-in-out;
}

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

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

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

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

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

.elite-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0d1b2a;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.45s ease-in-out, transform 0.45s ease-in-out;
    z-index: 99;
}

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

.extravagant-handheld-index {
    list-style: none;
    margin: 0;
    padding: clamp(25px, 4vh, 35px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.paramount-handheld-unit {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.45s ease-in-out, transform 0.45s ease-in-out;
}

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

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

.elite-mobile-menu.is-open .paramount-handheld-unit:nth-child(2) {
    transition-delay: 0.25s;
}

.elite-mobile-menu.is-open .paramount-handheld-unit:nth-child(3) {
    transition-delay: 0.35s;
}

.mobile-nav-connection {
    color: #d4ddee;
    text-decoration: none;
    font-size: clamp(21px, 4.2vw, 25px);
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 9px;
    display: block;
    transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}

.mobile-nav-connection:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.15);
}

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

@media (max-width: 768px) {
    .refined-council-arrangement {
        gap: 12px;
    }
    .lavish-emblem-visual {
        height: 42px;
    }
    .eminent-enterprise-caption {
        font-size: 19px;
    }
    .mobile-nav-connection {
        font-size: 21px;
        padding: 12px 20px;
    }
}

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

.affluent-gateway-domain {
    padding: clamp(70px, 13vh, 130px) 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

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

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

.majestic-visual-realm {
    position: relative;
    max-width: 100%;
    opacity: 0;
    transform: translateX(-40px);
    animation: elegantGlideIn 1.4s ease-in-out 0.4s forwards;
}

.splendid-representation-element {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.45s ease, transform 0.45s ease;
}

.splendid-representation-element:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.delicate-augmentation-veil {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.02);
    opacity: 0.7;
    transition: opacity 0.45s ease;
    border-radius: 15px;
    pointer-events: none;
}

.majestic-visual-realm:hover .delicate-augmentation-veil {
    opacity: 1;
}

.regal-narrative-structure {
    max-width: 100%;
    text-align: center;
    color: #212529;
    opacity: 0;
    transform: translateX(40px);
    animation: elegantGlideIn 1.4s ease-in-out 0.6s forwards;
}

@media screen and (min-width: 992px) {
    .regal-narrative-structure {
        text-align: left;
    }
}

.sovereign-principal-caption {
    font-size: clamp(34px, 5.8vw, 50px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 28px;
    position: relative;
    letter-spacing: -0.4px;
}

.sovereign-principal-caption::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #1a73e8;
    transition: width 0.45s ease-in-out;
}

.sovereign-principal-caption:hover::before {
    width: 100px;
}

.refined-descriptive-narrative {
    font-size: clamp(17px, 2.1vw, 19px);
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
}

.eminent-invitation-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 1.6vw, 16px) clamp(28px, 3.8vw, 40px);
    background-color: #1a73e8;
    color: #ffffff;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(26, 115, 232, 0.25);
    transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    max-width: 220px;
}

.eminent-invitation-trigger:hover {
    background-color: #0d47a1;
    box-shadow: 0 7px 18px rgba(26, 115, 232, 0.35);
    transform: scale(1.03);
}

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

@media (max-width: 768px) {
    .sovereign-principal-caption {
        font-size: clamp(28px, 7.5vw, 38px);
    }
    .refined-descriptive-narrative {
        font-size: clamp(15px, 3.2vw, 17px);
    }
    .eminent-invitation-trigger {
        padding: 12px 28px;
        font-size: 15px;
    }
    .sovereign-principal-caption::before {
        height: 3px;
        width: 50px;
    }
    .sovereign-principal-caption:hover::before {
        width: 80px;
    }
}

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

.prestigious-achievement-metrics {
    padding: clamp(55px, 11vh, 110px) 0;
    background: #f0f4f8;
    position: relative;
}

.sumptuous-indicator-array {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(25px, 4vw, 40px);
    justify-content: center;
}

.distinguished-metric-module {
    flex: 1 1 clamp(180px, 25%, 250px);
    opacity: 0;
    transform: translateY(25px);
    animation: refinedAscension 1.1s ease-out forwards;
}

.distinguished-metric-module:nth-child(1) {
    animation-delay: 0.25s;
}

.distinguished-metric-module:nth-child(2) {
    animation-delay: 0.5s;
}

.distinguished-metric-module:nth-child(3) {
    animation-delay: 0.75s;
}

.distinguished-metric-module:nth-child(4) {
    animation-delay: 1s;
}

.opulent-value-nucleus {
    background: #ffffff;
    border-radius: 12px;
    padding: clamp(25px, 4vw, 35px);
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.45s ease, transform 0.45s ease, background 0.45s ease;
    position: relative;
}

.distinguished-metric-module:hover .opulent-value-nucleus {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    background: #f8fbff;
}

.opulent-value-nucleus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #1a73e8;
    transition: width 0.45s ease;
}

.distinguished-metric-module:hover .opulent-value-nucleus::before {
    width: 100%;
}

.majestic-numeric-display {
    display: block;
    font-size: clamp(38px, 6.5vw, 50px);
    font-weight: 800;
    color: #1a73e8;
    margin: 0 0 12px 0;
    line-height: 1.1;
    transition: color 0.45s ease;
}

.distinguished-metric-module:hover .majestic-numeric-display {
    color: #0d47a1;
}

.elegant-label-annotation {
    display: block;
    font-size: clamp(15px, 2vw, 17px);
    color: #5a626a;
    font-weight: 500;
    line-height: 1.6;
    transition: color 0.45s ease;
    margin: 0;
}

.distinguished-metric-module:hover .elegant-label-annotation {
    color: #343a40;
}

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

@media (max-width: 768px) {
    .sumptuous-indicator-array {
        flex-direction: column;
        gap: 25px;
    }
    .majestic-numeric-display {
        font-size: clamp(32px, 5.5vw, 42px);
    }
    .elegant-label-annotation {
        font-size: clamp(14px, 2.5vw, 16px);
    }
}

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






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

.illustrious-offering-exhibit {
    padding: clamp(75px, 13vh, 130px) 0;
    background: #ffffff;
    position: relative;
}

.grand-introduction-facade {
    text-align: center;
    margin-bottom: clamp(40px, 7vw, 60px);
    opacity: 0;
    transform: scale(0.95);
    animation: majesticRevelation 1.2s ease-in-out forwards;
}

.monarchic-offering-declaration {
    font-size: clamp(32px, 5.2vw, 46px);
    font-weight: 800;
    color: #1e293b;
    position: relative;
    line-height: 1.3;
    letter-spacing: 0.6px;
}

.monarchic-offering-declaration::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #1a73e8;
    transition: width 0.45s ease;
}

.monarchic-offering-declaration:hover::before {
    width: 140px;
}

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

.exquisite-offering-component {
    flex: 1 1 clamp(220px, 30%, 320px);
    background: #f8fbff;
    border-radius: 14px;
    padding: clamp(30px, 5vw, 40px);
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
    animation: gracefulIngress 1.1s ease-out forwards;
}

.exquisite-offering-component:nth-child(1) {
    animation-delay: 0.4s;
}

.exquisite-offering-component:nth-child(2) {
    animation-delay: 0.6s;
}

.exquisite-offering-component:nth-child(3) {
    animation-delay: 0.8s;
}

.exquisite-offering-component:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.refined-symbol-enclave {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #e0e7ff;
    border-radius: 12px;
    margin-bottom: 22px;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.exquisite-offering-component:hover .refined-symbol-enclave {
    background-color: #1a73e8;
    transform: scale(1.1);
}

.sumptuous-offering-insignia {
    color: #6366f1;
    width: 32px;
    height: 32px;
    transition: color 0.4s ease;
}

.exquisite-offering-component:hover .sumptuous-offering-insignia {
    color: #ffffff;
}

.eminent-offering-designation {
    font-size: clamp(21px, 2.6vw, 25px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.exquisite-offering-component:hover .eminent-offering-designation {
    color: #1a73e8;
}

.polished-offering-elucidation {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #475569;
    line-height: 1.65;
    font-weight: 400;
    transition: color 0.4s ease;
}

.exquisite-offering-component:hover .polished-offering-elucidation {
    color: #334155;
}

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

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

@media (max-width: 768px) {
    .monarchic-offering-declaration {
        font-size: clamp(28px, 6.5vw, 38px);
    }
    .opulent-offering-assemblage {
        flex-direction: column;
        gap: 30px;
    }
    .eminent-offering-designation {
        font-size: clamp(19px, 3vw, 23px);
    }
    .polished-offering-elucidation {
        font-size: clamp(14px, 2.2vw, 16px);
    }
}

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

.distinguished-facilitation-domain {
    padding: clamp(85px, 14vh, 140px) 0;
    background: #f0f4f8;
    position: relative;
}

.magnificent-orientation-portal {
    text-align: center;
    margin-bottom: clamp(45px, 8vw, 65px);
    opacity: 0;
    transform: translateY(20px);
    animation: portalEmergence 1.3s ease forwards;
}

.regal-facilitation-affirmation {
    font-size: clamp(34px, 5.8vw, 48px);
    font-weight: 800;
    color: #0f172a;
    position: relative;
    line-height: 1.35;
    letter-spacing: 0.9px;
}

.regal-facilitation-affirmation::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 5px;
    background: #1a73e8;
    opacity: 0.85;
    transition: width 0.55s ease;
    border-radius: 3px;
}

.regal-facilitation-affirmation:hover::after {
    width: 160px;
}

.lavish-facilitation-presentation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: clamp(35px, 6vw, 45px);
}

.superlative-assist-configuration {
    background: #ffffff;
    border-radius: 16px;
    padding: clamp(35px, 6vw, 45px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.45s ease, transform 0.45s ease;
    opacity: 0;
    transform: scale(0.97);
    animation: configurationReveal 1.2s ease-out forwards;
}

.superlative-assist-configuration:nth-child(1) {
    animation-delay: 0.45s;
}

.superlative-assist-configuration:nth-child(2) {
    animation-delay: 0.65s;
}

.superlative-assist-configuration:nth-child(3) {
    animation-delay: 0.85s;
}

.superlative-assist-configuration:nth-child(4) {
    animation-delay: 1.05s;
}

.superlative-assist-configuration:hover {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
    transform: scale(1.02);
}

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

.configuration-emblem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background: #dbeafe;
    border-radius: 14px;
    margin-bottom: 22px;
    transition: background-color 0.45s ease;
}

.superlative-assist-configuration:hover .configuration-emblem {
    background-color: #1a73e8;
}

.configuration-emblem svg {
    color: #3b82f6;
    width: 34px;
    height: 34px;
    transition: color 0.45s ease;
}

.superlative-assist-configuration:hover .configuration-emblem svg {
    color: #ffffff;
}

.configuration-zenith {
    font-size: clamp(23px, 2.9vw, 27px);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 22px;
    transition: color 0.45s ease;
}

.superlative-assist-configuration:hover .configuration-zenith {
    color: #1a73e8;
}

.configuration-chronicle {
    font-size: clamp(16px, 2vw, 18px);
    color: #475569;
    line-height: 1.75;
    margin-bottom: 28px;
    flex-grow: 1;
    transition: color 0.45s ease;
}

.superlative-assist-configuration:hover .configuration-chronicle {
    color: #1e293b;
}

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

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

@media (max-width: 768px) {
    .regal-facilitation-affirmation {
        font-size: clamp(30px, 7.5vw, 40px);
    }
    .configuration-zenith {
        font-size: clamp(21px, 3.2vw, 25px);
    }
    .configuration-chronicle {
        font-size: clamp(15px, 2.2vw, 17px);
    }
}

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

.eminent-fidelity-domain {
    padding: clamp(75px, 12vh, 120px) 0;
    background: #ffffff;
    position: relative;
}

.sovereign-sincerity-framework {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: scale(0.96);
    animation: frameworkExpansion 1.4s ease-in-out forwards;
}

.imperial-fidelity-proclamation {
    font-size: clamp(31px, 5.2vw, 44px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 32px;
    position: relative;
    line-height: 1.3;
    letter-spacing: 0.6px;
}

.imperial-fidelity-proclamation::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 3px;
    background: #1a73e8;
    transition: width 0.45s ease;
}

.imperial-fidelity-proclamation:hover::before {
    width: 150px;
}

.polished-fidelity-discourse {
    background: #f0f4f8;
    border-left: 5px solid #1a73e8;
    border-radius: 12px;
    padding: clamp(25px, 4.5vw, 35px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.45s ease, border-color 0.45s ease;
    opacity: 0;
    animation: discourseUnfolding 1.5s ease-out 0.3s forwards;
}

.polished-fidelity-discourse:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: #0d47a1;
}

.refined-sincerity-exposition {
    font-size: clamp(17px, 2.1vw, 19px);
    color: #475569;
    line-height: 1.85;
    font-weight: 400;
    margin: 0;
}

.distinguished-domain-emphasis {
    font-style: normal;
    font-weight: 800;
    color: #1a73e8;
    padding: 3px 9px;
    border-radius: 8px;
    transition: background-color 0.45s ease;
}

.distinguished-domain-emphasis:hover {
    background-color: rgba(26, 115, 232, 0.12);
}

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

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

@media (max-width: 768px) {
    .imperial-fidelity-proclamation {
        font-size: clamp(27px, 6.5vw, 38px);
    }
    .refined-sincerity-exposition {
        font-size: clamp(15px, 2.5vw, 17px);
    }
    .polished-fidelity-discourse {
        padding: 20px;
    }
    .imperial-fidelity-proclamation::before {
        width: 55px;
    }
    .imperial-fidelity-proclamation:hover::before {
        width: 110px;
    }
}

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




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

.executive-engagement-hub {
    padding: clamp(95px, 15vh, 150px) 0;
    background: #ffffff;
    position: relative;
}

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

@media (min-width: 992px) {
    .premium-interaction-framework {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.elite-narrative-enclave {
    max-width: 100%;
    opacity: 0;
    transform: translateX(30px);
    animation: narrativeGlide 1.4s ease forwards;
}

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

.imperial-engagement-decree {
    font-size: clamp(30px, 4.8vw, 42px);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 22px;
    text-align: center;
    position: relative;
    letter-spacing: -0.2px;
}

@media (min-width: 992px) {
    .imperial-engagement-decree {
        text-align: left;
    }
}

.imperial-engagement-decree::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #1a73e8;
    transition: width 0.4s ease-in-out;
}

@media (min-width: 992px) {
    .imperial-engagement-decree::before {
        left: 0;
        transform: none;
    }
}

.imperial-engagement-decree:hover::before {
    width: 100px;
}

.refined-engagement-text {
    font-size: clamp(16px, 2vw, 18px);
    color: #475569;
    line-height: 1.75;
    margin-bottom: 35px;
    text-align: center;
}

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

.superior-contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.prestige-detail-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px;
    background: #f0f4f8;
    border-radius: 10px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(15px);
    animation: itemElevate 0.9s ease-out forwards;
}

.prestige-detail-item:hover {
    background: #e0e7ff;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.15);
}

.prestige-detail-item:nth-child(1) { animation-delay: 0.15s; }
.prestige-detail-item:nth-child(2) { animation-delay: 0.25s; }
.prestige-detail-item:nth-child(3) { animation-delay: 0.35s; }

.detail-emblem {
    width: 28px;
    height: 28px;
    color: #1a73e8;
    transition: transform 0.4s ease;
}

.prestige-detail-item:hover .detail-emblem {
    transform: scale(1.1);
}

.detail-heading {
    font-size: clamp(19px, 2.1vw, 21px);
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.detail-description {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #475569;
    margin: 5px 0 0 0;
}

.corporate-policy-notice {
    padding: 20px;
    background: #f0f4f8;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: policyUnveil 1.1s ease-out 0.4s forwards;
}

.policy-title {
    font-size: clamp(19px, 2.1vw, 21px);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.policy-content {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #475569;
    line-height: 1.65;
}

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

.policy-link:hover {
    color: #0d47a1;
}

.distinguished-inquiry-interface {
    max-width: 100%;
    background: #ffffff;
    border-radius: 14px;
    padding: clamp(30px, 5vw, 40px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateX(-30px);
    animation: inquiryGlide 1.4s ease 0.2s forwards;
}

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

.interaction-form {
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 3.2vw, 28px);
}

.interface-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field-label {
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 600;
    color: #334155;
}

.field-input,
.field-textarea {
    padding: 14px 18px;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    font-size: clamp(15px, 1.8vw, 17px);
    background: #f8fbff;
    color: #1e293b;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.field-input:focus,
.field-textarea:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.15);
    outline: none;
}

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

.field-consent {
    font-size: clamp(13px, 1.5vw, 15px);
    color: #475569;
    text-align: center;
    margin-bottom: 12px;
}

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

.consent-link:hover {
    color: #0d47a1;
}

.field-submit {
    max-width: 200px;
    margin: 0 auto;
    padding: 14px 0;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.field-submit:hover {
    background-color: #0d47a1;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.25);
}

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

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

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

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

@media (max-width: 768px) {
    .imperial-engagement-decree {
        font-size: clamp(26px, 6.5vw, 36px);
    }
    .refined-engagement-text {
        font-size: clamp(15px, 2.2vw, 17px);
    }
    .detail-heading {
        font-size: clamp(17px, 2vw, 19px);
    }
    .detail-description {
        font-size: clamp(14px, 1.8vw, 16px);
    }
    .distinguished-inquiry-interface {
        padding: 25px;
    }
    .field-label {
        font-size: 15px;
    }
    .field-input,
    .field-textarea {
        font-size: 15px;
    }
    .field-consent {
        font-size: 13px;
    }
    .field-submit {
        font-size: 15px;
        max-width: 180px;
    }
}

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

.sovereign-closure-domain {
    padding: clamp(65px, 11vh, 110px) 0;
    background: #ffffff;
    position: relative;
    border-top: 2px solid #e0e7ff;
}

.majestic-termination-arrangement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(35px, 6vw, 45px);
    opacity: 0;
    transform: scale(0.97);
    animation: arrangementMagnify 1.1s ease-in-out forwards;
}

@media (max-width: 768px) {
    .majestic-termination-arrangement {
        flex-direction: column;
        gap: 25px;
    }
}

.opulent-reserve-declaration {
    font-size: clamp(14px, 1.7vw, 16px);
    color: #475569;
    font-weight: 500;
}

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

.superior-termination-element {
    opacity: 0;
    transform: translateX(15px);
    animation: elementGlide 0.9s ease-out forwards;
}

.superior-termination-element:nth-child(1) { animation-delay: 0.15s; }
.superior-termination-element:nth-child(2) { animation-delay: 0.25s; }
.superior-termination-element:nth-child(3) { animation-delay: 0.35s; }
.superior-termination-element:nth-child(4) { animation-delay: 0.45s; }

.distinguished-termination-connector {
    font-size: clamp(14px, 1.7vw, 16px);
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.35s ease;
}

.distinguished-termination-connector::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a73e8;
    transition: width 0.35s ease;
}

.distinguished-termination-connector:hover {
    color: #1a73e8;
}

.distinguished-termination-connector:hover::after {
    width: 100%;
}

.regal-advisory-territory {
    max-width: 1050px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(25px);
    animation: territoryAscend 1.3s ease-in-out 0.6s forwards;
}

.polished-advisory-narrative {
    font-size: clamp(14px, 1.7vw, 16px);
    color: #475569;
    line-height: 1.75;
    margin-bottom: 25px;
    position: relative;
    padding: 15px;
    background: #f0f4f8;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.polished-advisory-narrative:hover {
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.12);
    transform: translateY(-3px);
}

.polished-advisory-narrative strong {
    color: #1e293b;
    font-weight: 600;
}

.polished-advisory-narrative a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.35s ease;
}

.polished-advisory-narrative a:hover {
    color: #0d47a1;
}

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

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

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

@media (max-width: 768px) {
    .opulent-reserve-declaration {
        font-size: clamp(13px, 1.6vw, 15px);
        text-align: center;
    }
    .eminent-termination-catalog {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .distinguished-termination-connector {
        font-size: clamp(13px, 1.6vw, 15px);
    }
    .polished-advisory-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;
    }
}