@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://calyrosenqui.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://calyrosenqui.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 */

.premium-executive-header {
    background: #ffffff;
    padding: clamp(12px, 2vw, 22px) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #dee2e6;
}

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

.elite-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.4s ease;
}

.elite-logo-link:hover {
    opacity: 0.85;
}

.premium-logo-img {
    height: clamp(40px, 5vw, 50px);
    width: auto;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.15);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.elite-logo-link:hover .premium-logo-img {
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
    transform: rotate(5deg);
}

.corporate-brand-name {
    color: #333333;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.professional-main-nav .executive-menu-list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 1200px) {
    .professional-main-nav .executive-menu-list {
        display: flex;
        align-items: center;
        gap: clamp(25px, 3.5vw, 35px);
    }
}

.top-tier-nav-item {
    position: relative;
}

.prestige-nav-link {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(15px, 1.8vw, 18px);
    padding: 6px 12px;
    transition: color 0.3s ease;
    position: relative;
}

.prestige-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease, left 0.3s ease;
}

.prestige-nav-link:hover {
    color: #007bff;
}

.prestige-nav-link:hover::after {
    width: 100%;
    left: 0;
}

.burger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.burger:hover {
    opacity: 0.7;
}

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

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

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

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

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

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

.elite-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #f8f9fa;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 99;
}

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

.deluxe-mobile-nav {
    list-style: none;
    margin: 0;
    padding: clamp(60px, 10vh, 80px) 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.superior-mobile-entry {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.elite-mobile-menu.is-open .superior-mobile-entry {
    opacity: 1;
    transform: translateX(0);
}

.elite-mobile-menu.is-open .superior-mobile-entry:nth-child(1) {
    transition-delay: 0.1s;
}

.elite-mobile-menu.is-open .superior-mobile-entry:nth-child(2) {
    transition-delay: 0.2s;
}

.elite-mobile-menu.is-open .superior-mobile-entry:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-connection {
    color: #495057;
    text-decoration: none;
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    display: block;
    transition: background-color 0.4s ease, color 0.4s ease;
    position: relative;
}

.mobile-nav-connection:hover {
    background-color: #e9ecef;
    color: #007bff;
}

@keyframes subtleFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .corporate-nav-layout {
        gap: 10px;
    }
    .premium-logo-img {
        height: 40px;
    }
    .corporate-brand-name {
        font-size: 18px;
    }
    .mobile-nav-connection {
        font-size: 20px;
        padding: 10px 15px;
    }
}

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

.executive-introduction-zone {
    padding: clamp(60px, 12vh, 120px) 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.prestige-layout-assembly {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 5vw, 50px);
    align-items: center;
}

@media screen and (min-width: 992px) {
    .prestige-layout-assembly {
        flex-direction: row;
        gap: clamp(40px, 7vw, 70px);
        justify-content: space-between;
    }
}

.superior-text-composition {
    max-width: 100%;
    text-align: center;
    color: #343a40;
    order: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: gentleRiseUp 1.2s ease-out 0.3s forwards;
}

@media screen and (min-width: 992px) {
    .superior-text-composition {
        max-width: 45%;
        text-align: left;
        order: 1;
    }
}

.imperial-primary-heading {
    font-size: clamp(32px, 5.5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: -0.3px;
}

.imperial-primary-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #007bff;
    transition: width 0.5s ease-in-out;
}

.imperial-primary-heading:hover::after {
    width: 80px;
}

.elegant-explanatory-paragraph {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
    opacity: 0.85;
}

.distinguished-call-to-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 1.5vw, 14px) clamp(25px, 3.5vw, 35px);
    background-color: #007bff;
    color: #ffffff;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
    transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    max-width: 200px;
}

.distinguished-call-to-action:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}

.refined-visual-compartment {
    position: relative;
    max-width: 100%;
    order: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: gentleRiseUp 1.2s ease-out forwards;
}

@media screen and (min-width: 992px) {
    .refined-visual-compartment {
        max-width: 50%;
        order: 2;
    }
}

.opulent-display-graphic {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.opulent-display-graphic:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.subtle-enhancement-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 123, 255, 0.05), transparent);
    opacity: 0.6;
    transition: opacity 0.5s ease;
    border-radius: 12px;
    pointer-events: none;
}

.refined-visual-compartment:hover .subtle-enhancement-layer {
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .imperial-primary-heading {
        font-size: clamp(26px, 7vw, 36px);
    }
    .elegant-explanatory-paragraph {
        font-size: clamp(14px, 3vw, 16px);
    }
    .distinguished-call-to-action {
        padding: 10px 25px;
        font-size: 14px;
    }
    .imperial-primary-heading::after {
        height: 2px;
    }
}


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

.corporate-performance-indicators {
    padding: clamp(50px, 10vh, 100px) 0;
    background: #ffffff;
    position: relative;
}

.elite-metrics-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.premier-stat-unit {
    opacity: 0;
    transform: scale(0.95);
    animation: sophisticatedEmergence 1s ease-in-out forwards;
}

.premier-stat-unit:nth-child(1) {
    animation-delay: 0.2s;
}

.premier-stat-unit:nth-child(2) {
    animation-delay: 0.4s;
}

.premier-stat-unit:nth-child(3) {
    animation-delay: 0.6s;
}

.premier-stat-unit:nth-child(4) {
    animation-delay: 0.8s;
}

.executive-stat-core {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: clamp(20px, 3vw, 30px);
    text-align: center;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.premier-stat-unit:hover .executive-stat-core {
    border-color: #007bff;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
    background: #ffffff;
}

.executive-stat-core::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 123, 255, 0.05);
    transition: height 0.4s ease;
}

.premier-stat-unit:hover .executive-stat-core::after {
    height: 100%;
}

.imperial-figure {
    display: block;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    color: #007bff;
    margin: 0 0 10px 0;
    line-height: 1;
    transition: color 0.4s ease;
}

.premier-stat-unit:hover .imperial-figure {
    color: #0056b3;
}

.refined-descriptor {
    display: block;
    font-size: clamp(14px, 1.9vw, 16px);
    color: #6c757d;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.4s ease;
}

.premier-stat-unit:hover .refined-descriptor {
    color: #495057;
}

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

@media (max-width: 768px) {
    .elite-metrics-collection {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .imperial-figure {
        font-size: clamp(30px, 5vw, 40px);
    }
    .refined-descriptor {
        font-size: clamp(13px, 2.2vw, 15px);
    }
}

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






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

.elite-service-presentation {
    padding: clamp(70px, 12vh, 120px) 0;
    background: #f8f9fa;
    position: relative;
}

.superior-introduction-panel {
    text-align: center;
    margin-bottom: clamp(35px, 6vw, 55px);
    opacity: 0;
    transform: translateY(-20px);
    animation: refinedAppearance 1.1s ease-in-out forwards;
}

.imperial-service-proclamation {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 700;
    color: #212529;
    position: relative;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.imperial-service-proclamation::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #007bff;
    transition: width 0.5s ease;
}

.imperial-service-proclamation:hover::after {
    width: 120px;
}

.refined-service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(25px, 4vw, 35px);
}

.premier-service-module {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: clamp(25px, 4vw, 35px);
    text-align: center;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: moduleAscend 1s ease-out forwards;
}

.premier-service-module:nth-child(1) {
    animation-delay: 0.3s;
}

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

.premier-service-module:nth-child(3) {
    animation-delay: 0.7s;
}

.premier-service-module:hover {
    border-color: #007bff;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
}

.sophisticated-icon-holder {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #e9ecef;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.premier-service-module:hover .sophisticated-icon-holder {
    background-color: #007bff;
    transform: rotate(360deg);
}

.prestige-service-emblem {
    color: #495057;
    width: 30px;
    height: 30px;
    transition: color 0.4s ease;
}

.premier-service-module:hover .prestige-service-emblem {
    color: #ffffff;
}

.distinguished-service-label {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    color: #343a40;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.premier-service-module:hover .distinguished-service-label {
    color: #007bff;
}

.elegant-service-description {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #6c757d;
    line-height: 1.6;
    font-weight: 400;
    transition: color 0.4s ease;
}

.premier-service-module:hover .elegant-service-description {
    color: #495057;
}

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

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

@media (max-width: 768px) {
    .imperial-service-proclamation {
        font-size: clamp(26px, 6vw, 36px);
    }
    .refined-service-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .distinguished-service-label {
        font-size: clamp(18px, 2.8vw, 22px);
    }
    .elegant-service-description {
        font-size: clamp(13px, 2vw, 15px);
    }
}

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

.prestigious-support-calyrosenqui {
    padding: clamp(80px, 13vh, 130px) 0;
    background: #ffffff;
    position: relative;
}

.elite-guidance-header {
    text-align: center;
    margin-bottom: clamp(40px, 7vw, 60px);
    opacity: 0;
    transform: scale(0.98);
    animation: headerManifestation 1.2s ease forwards;
}

.supreme-assistance-statement {
    font-size: clamp(32px, 5.5vw, 46px);
    font-weight: 700;
    color: #212529;
    position: relative;
    line-height: 1.3;
    letter-spacing: 0.8px;
}

.supreme-assistance-statement::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #007bff;
    opacity: 0.9;
    transition: width 0.6s ease;
    border-radius: 2px;
}

.supreme-assistance-statement:hover::before {
    width: 150px;
}

.superior-aid-exhibition {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(30px, 5vw, 40px);
}

.top-tier-help-structure {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 15px;
    padding: clamp(30px, 5vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: structureUnveil 1.1s ease-out forwards;
}

.top-tier-help-structure:nth-child(1) {
    animation-delay: 0.4s;
}

.top-tier-help-structure:nth-child(2) {
    animation-delay: 0.6s;
}

.top-tier-help-structure:nth-child(3) {
    animation-delay: 0.8s;
}

.top-tier-help-structure:nth-child(4) {
    animation-delay: 1s;
}

.top-tier-help-structure:hover {
    border-color: #007bff;
    transform: translateY(-5px);
}

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

.framework-symbol {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #e9ecef;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: background-color 0.5s ease;
}

.top-tier-help-structure:hover .framework-symbol {
    background-color: #007bff;
}

.framework-symbol svg {
    color: #495057;
    width: 32px;
    height: 32px;
    transition: color 0.5s ease;
}

.top-tier-help-structure:hover .framework-symbol svg {
    color: #ffffff;
}

.framework-apex {
    font-size: clamp(22px, 2.8vw, 26px);
    font-weight: 600;
    color: #343a40;
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

.top-tier-help-structure:hover .framework-apex {
    color: #007bff;
}

.framework-narrative {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    transition: color 0.5s ease;
}

.top-tier-help-structure:hover .framework-narrative {
    color: #495057;
}

.refined-interaction-gateway {
    display: inline-block;
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 25px);
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.15);
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.refined-interaction-gateway:hover {
    background-color: #0056b3;
    box-shadow: 0 5px 12px rgba(0, 123, 255, 0.25);
}

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

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

@media (max-width: 768px) {
    .supreme-assistance-statement {
        font-size: clamp(28px, 7vw, 38px);
    }
    .framework-apex {
        font-size: clamp(20px, 3vw, 24px);
    }
    .framework-narrative {
        font-size: clamp(14px, 2vw, 16px);
    }
    .refined-interaction-gateway {
        padding: 10px 20px;
        font-size: 14px;
    }
}

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

.corporate-integrity-zone {
    padding: clamp(70px, 11vh, 110px) 0;
    background: #f8f9fa;
    position: relative;
}

.executive-honesty-panel {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: panelElevation 1.3s ease-in-out forwards;
}

.prestige-honesty-declaration {
    font-size: clamp(30px, 5vw, 42px);
    font-weight: 700;
    color: #212529;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.prestige-honesty-declaration::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background: #007bff;
    transition: width 0.4s ease;
}

.prestige-honesty-declaration:hover::after {
    width: 140px;
}

.refined-integrity-content {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: clamp(20px, 4vw, 30px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    opacity: 0;
    animation: contentManifest 1.4s ease-out 0.2s forwards;
}

.refined-integrity-content:hover {
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
    border-color: #dee2e6;
}

.elegant-honesty-narrative {
    font-size: clamp(16px, 2vw, 18px);
    color: #6c757d;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

.superior-calyrosenqui-highlight {
    font-weight: 700;
    color: #007bff;
    padding: 2px 8px;
    border-radius: 6px;
    transition: background-color 0.4s ease;
}

.superior-calyrosenqui-highlight:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

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

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

@media (max-width: 768px) {
    .prestige-honesty-declaration {
        font-size: clamp(26px, 6vw, 36px);
    }
    .elegant-honesty-narrative {
        font-size: clamp(14px, 2.2vw, 16px);
    }
    .refined-integrity-content {
        padding: 15px;
    }
    .prestige-honesty-declaration::after {
        width: 50px;
    }
    .prestige-honesty-declaration:hover::after {
        width: 100px;
    }
}

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




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

.executive-engagement-hub {
    padding: clamp(90px, 14vh, 140px) 0;
    background: #ffffff;
    position: relative;
}

.premium-interaction-framework {
    display: flex;
    flex-direction: column;
    gap: clamp(35px, 6vw, 50px);
    align-items: center;
}

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

.elite-narrative-enclave {
    max-width: 100%;
    opacity: 0;
    transform: translateY(25px);
    animation: enclaveRise 1.3s ease forwards;
}

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

.imperial-engagement-decree {
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

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

.imperial-engagement-decree::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #007bff;
    transition: width 0.5s ease;
}

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

.imperial-engagement-decree:hover::after {
    width: 80px;
}

.refined-engagement-text {
    font-size: clamp(15px, 1.9vw, 17px);
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.prestige-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(-15px);
    animation: detailSlideIn 0.8s ease-out forwards;
}

.prestige-detail-item:nth-child(1) { animation-delay: 0.2s; }
.prestige-detail-item:nth-child(2) { animation-delay: 0.3s; }
.prestige-detail-item:nth-child(3) { animation-delay: 0.4s; }

.detail-emblem {
    width: 24px;
    height: 24px;
    color: #007bff;
    transition: color 0.3s ease;
}

.prestige-detail-item:hover .detail-emblem {
    color: #0056b3;
}

.detail-heading {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 600;
    color: #343a40;
    margin: 0;
}

.detail-description {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #6c757d;
    margin: 4px 0 0 0;
}

.corporate-policy-notice {
    opacity: 0;
    transform: translateY(20px);
    animation: noticeAppear 1s ease-out 0.5s forwards;
}

.policy-title {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 600;
    color: #343a40;
    margin-bottom: 10px;
}

.policy-content {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #6c757d;
    line-height: 1.6;
}

.policy-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #0056b3;
}

.distinguished-inquiry-interface {
    max-width: 100%;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: clamp(25px, 4vw, 35px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(25px);
    animation: interfaceRise 1.3s ease 0.3s forwards;
}

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

.interaction-form {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 25px);
}

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

.field-label {
    font-size: clamp(14px, 1.7vw, 16px);
    font-weight: 500;
    color: #495057;
}

.field-input,
.field-textarea {
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: clamp(14px, 1.7vw, 16px);
    background: #ffffff;
    color: #495057;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field-input:focus,
.field-textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    outline: none;
}

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

.field-consent {
    font-size: clamp(12px, 1.4vw, 14px);
    color: #6c757d;
    text-align: center;
    margin-bottom: 10px;
}

.consent-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.consent-link:hover {
    color: #0056b3;
}

.field-submit {
    max-width: 180px;
    margin: 0 auto;
    padding: 12px 0;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.field-submit:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

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

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

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

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

@media (max-width: 768px) {
    .imperial-engagement-decree {
        font-size: clamp(24px, 6vw, 34px);
    }
    .refined-engagement-text {
        font-size: clamp(14px, 2vw, 16px);
    }
    .detail-heading {
        font-size: clamp(16px, 1.9vw, 18px);
    }
    .detail-description {
        font-size: clamp(13px, 1.7vw, 15px);
    }
    .distinguished-inquiry-interface {
        padding: 20px;
    }
    .field-label {
        font-size: 14px;
    }
    .field-input,
    .field-textarea {
        font-size: 14px;
    }
    .field-consent {
        font-size: 12px;
    }
    .field-submit {
        font-size: 14px;
        max-width: 160px;
    }
}

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

.corporate-conclusion-area {
    padding: clamp(60px, 10vh, 100px) 0;
    background: #f8f9fa;
    position: relative;
    border-top: 1px solid #dee2e6;
}

.elite-footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(30px, 5vw, 40px);
    opacity: 0;
    transform: translateY(20px);
    animation: layoutAscend 1s ease-in-out forwards;
}

@media (max-width: 768px) {
    .elite-footer-layout {
        flex-direction: column;
        gap: 20px;
    }
}

.premium-copyright-section {
    font-size: clamp(13px, 1.6vw, 15px);
    color: #6c757d;
    font-weight: 400;
}

.superior-navigation-panel {
    display: flex;
    align-items: center;
}

.executive-link-collection {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(15px, 2.5vw, 25px);
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-tier-link-item {
    opacity: 0;
    transform: translateY(10px);
    animation: itemFadeUp 0.8s ease-out forwards;
}

.top-tier-link-item:nth-child(1) { animation-delay: 0.1s; }
.top-tier-link-item:nth-child(2) { animation-delay: 0.2s; }
.top-tier-link-item:nth-child(3) { animation-delay: 0.3s; }
.top-tier-link-item:nth-child(4) { animation-delay: 0.4s; }

.prestige-navigation-anchor {
    font-size: clamp(13px, 1.6vw, 15px);
    color: #495057;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.prestige-navigation-anchor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 0;
    height: 1px;
    background: #007bff;
    transition: width 0.3s ease, left 0.3s ease;
}

.prestige-navigation-anchor:hover {
    color: #007bff;
}

.prestige-navigation-anchor:hover::before {
    width: 5px;
    left: -15px;
}

.professional-disclaimer-zone {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.98);
    animation: zoneExpand 1.2s ease-in-out 0.5s forwards;
}

.elegant-disclaimer-paragraph {
    font-size: clamp(13px, 1.6vw, 15px);
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease;
}

.elegant-disclaimer-paragraph:hover {
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.elegant-disclaimer-paragraph strong {
    color: #343a40;
    font-weight: 500;
}

.elegant-disclaimer-paragraph a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.elegant-disclaimer-paragraph a:hover {
    color: #0056b3;
}

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

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

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

@media (max-width: 768px) {
    .premium-copyright-section {
        font-size: clamp(12px, 1.5vw, 14px);
        text-align: center;
    }
    .executive-link-collection {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .prestige-navigation-anchor {
        font-size: clamp(12px, 1.5vw, 14px);
    }
    .elegant-disclaimer-paragraph {
        font-size: clamp(12px, 1.5vw, 14px);
        padding: 10px;
    }
}
/* -------------------------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;
    }
}