/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #C60000;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
    --SecondaryColor: #122939;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





body {
  font-family: "Plus Jakarta Sans", sans-serif;
   font-weight: 400;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: var(--BlackColor);
    font-size:3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}


.same-heading h2 .highlight-text{background: var(--PrimaryColor); color: var(--BlackColor); padding: 0.2rem 0.6rem;}


.same-heading h3 {
   
    color: #122939;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #1B1B1B;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}




.bg-gray {
    background: #F1F1F1;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center :is( .max-wid-50,  .max-wid-80) {
    margin: 0 auto;
}

.same-heading.white-text :is(h2, p) {
    color: var(--WhiteColor);
    background: linear-gradient(90deg, var(--WhiteColor) 0%, var(--WhiteColor) 50%, var(--WhiteColor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;flex-wrap: wrap;
    margin-top: 2rem;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
.tag {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: var(--PrimaryColor);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.7rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--PrimaryColor) !important;
}

.btn-primary .fluid-canvas,
.btn-secondary .fluid-canvas,
.btn-outline-primary .fluid-canvas,
.btn-white .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.btn-primary .btn-text,
.btn-secondary .btn-text,
.btn-outline-primary .btn-text,
.btn-white .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-primary {
    background: #FFFFFF2E;
    color: var(--WhiteColor);
    border-color: var(--WhiteColor);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--PrimaryColor) !important;
}

.btn-secondary {
    background: var(--PrimaryColor);
    border: solid 1px var(--PrimaryColor);
    color: var(--BlackColor);
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active {
 background: var(--PrimaryColor) !important;
border-color:var(--PrimaryColor) !important;
color: var(--WhiteColor) !important;
}



.btn-outline-white {
    background: var(--WhiteColor);
    border: solid 1px var(--PrimaryColor);
    color: var(--PrimaryColor);
}

.btn-outline-white:hover,.btn-outline-white:focus,.btn-outline-white:active {
 background: var(--PrimaryColor) !important;
border-color:var(--PrimaryColor) !important ;
color: var(--WhiteColor) !important;
}



/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: relative;
    /* background: var(--WhiteColor); */
    padding: 0.5rem 0;
    transition: all 0.3s ease;z-index: 99;
}

.header.headerfix {
     background:linear-gradient(to bottom, black, #000000a3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    top: 0;
    z-index: 100;
    position: fixed;
    left: 0; right: 0;
    padding: 0.8rem 0;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header .nav-content {
    display: flex;
    align-items: center;

}
.header .nav-content .logo img{max-height: 4rem;}
.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    margin-left: auto;
}
.header .nav-actions{margin-left: 3rem;}


.header .nav-links a:not(.btn) {
    /* font-weight: 300; */
    font-size: 0.9rem;
    color: var(--WhiteColor);
    padding: 0.2rem;
    position: relative;
}
.header .nav-links a:not(.btn)::before{ position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--PrimaryColor);
    transform: translateX(-50%);
    transition: width 0.3s ease;}

.header .nav-links a:hover:before{    width: 100%;}


.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}



.header .nav-links .btn{margin-left: 1rem;}

/* .header .nav-actions{margin-left: auto;} */

.header .mobile-toggle {
font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center;
justify-content: center;
}
.header .mobile-toggle svg{width: 1.3rem;}
.header  .btn-sidebar-close{font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header  .btn-sidebar-close svg{width: 1.3rem;}

.inner-header{    background: #000;}




.hero-section {
position: relative;
padding: 10rem 0rem;
background: url(../images/banner-bg.jpg)no-repeat center top/cover;
overflow: hidden;
min-height: 100vh;
margin-top: -5.2rem;
display: flex; align-items: center;justify-content: center;
}




/* Content */
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  border-radius: 1rem;
}

/* Title */
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}



/* Text */
.hero-section p {
  font-size: 1rem;
  color: var(--WhiteColor);
  line-height: 1.8;
}





.leadership-card{border: solid 1px #E5E5E5; padding: 1.5rem; border-radius: 20px;}
.leadership-card .card-icon{background: #C600001A; color: var(--PrimaryColor);margin-bottom:1rem;  width: 3rem; height: 3rem; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;}
.leadership-card .card-label{font-size: 0.9rem; color: var(--PrimaryColor);margin-bottom:0.5rem;    font-weight: 600;}
.leadership-card h3{font-size: 1.3rem; color: var(--BlackColor); font-weight: 700; margin-bottom: 1rem;}
.leadership-card p{font-size: 0.9rem; color: #333333; font-weight: 400; line-height: 1.8; }




/* =========================================
   DIGITAL KINGDOM SECTION
   ========================================= */
.digital-kingdom-section {
    background: #FFDEDE;
    /* padding: clamp(5rem, 7vw, 5rem) 0 0;
    position: relative;
    overflow: hidden; */
}

.digital-kingdom-section  h2 {
    color: var(--PrimaryColor);
}



.digital-kingdom-section .partner-marketplace-card {
    background: var(--WhiteColor);
    border-radius: 20px;
    padding: 2rem 2rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.digital-kingdom-section .partner-marketplace-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--BlackColor);
    margin-bottom: 1.2rem;
}

.digital-kingdom-section .pm-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.digital-kingdom-section .pm-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
}

.digital-kingdom-section .pm-item .pm-icon {
    width: 1.8rem;
    height: 1.8rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-kingdom-section .pm-item .pm-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.digital-kingdom-section .pm-item .pm-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--BlackColor);
}

.digital-kingdom-section .dk-wave-bottom {
    display: block; 
       margin-top: -10rem;
}

.digital-kingdom-section .dk-wave-bottom img {
    display: block;
    width: 100%;
}



/* =========================================
   DIGITAL TREATY SECTION - PILLS
   ========================================= */
.digital-treaty-section .treaty-pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 4rem;
}

.digital-treaty-section .treaty-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #DFDFDF;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--PrimaryColor);
    background: var(--WhiteColor);
}

.digital-treaty-section .treaty-pill svg {
    width: 1rem;
    height: 1rem;
    color: var(--PrimaryColor);
    flex-shrink: 0;
}




/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    background: #FDE8E8;
}

.services-section .service-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--WhiteColor);
    border-radius: 16px;
    padding: 1.4rem 1.5rem;
    height: 100%;
}

.services-section .service-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    background: #C600001A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--PrimaryColor);
}

.services-section .service-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.services-section .service-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--BlackColor);
    margin-bottom: 0.35rem;
}

.services-section .service-info p {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0;
}

.tongan-life-section .leadership-card{text-align: center; height: 100%;}
.tongan-life-section .leadership-card .card-icon img{max-width: 55%;}


.secure-digital-layer-section{background: url(../images/figerprint.jpg)no-repeat center top/cover; margin-bottom: 8rem;}
.secure-digital-layer-section .leadership-card{background: #fff; text-align: center;}
.secure-digital-layer-section .leadership-card h3{font-size: 1.1rem; margin-bottom: 0;}
.secure-digital-layer-section .digital-layer-card{position: relative; top: 9rem;}



.services-section{background: #F9E6E6;}


/* =========================================
   CORE SERVICES SECTION
   ========================================= */
.core-services-section {
    background: var(--WhiteColor);
}

.core-services-section .core-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.core-services-section .core-service-card {
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 1.4rem 1.2rem;
    background: var(--WhiteColor);
    transition: box-shadow 0.3s ease;
}

.core-services-section .core-service-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.core-services-section .cs-icon {
    /* width: 2.6rem;
    height: 2.6rem;
    background: #C600001A;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center; */
    color: var(--PrimaryColor);
    margin-bottom: 1rem;
}

.core-services-section .cs-icon svg {
    width: 2rem;
    height: 2rem;
}

.core-services-section .core-service-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--PrimaryColor);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.core-services-section .core-service-card p {
    font-size:1rem;
    color: #585858;
    line-height: 1.65;
    margin-bottom: 0;
}


/* =========================================
   MEMBERSHIP PRICING SECTION
   ========================================= */
.membership-pricing-section .pricing-card {
    background: var(--WhiteColor);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.membership-pricing-section .pricing-card-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: var(--BlackColor);
    margin-bottom: 0.8rem;
}

.membership-pricing-section .pricing-card-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--BlackColor);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.membership-pricing-section .pricing-unit {
    font-size: 1rem;
    font-weight: 500;
    color: #888888;
}

.membership-pricing-section .pricing-divider {
    border-color: #EEEEEE;
    margin: 0 0 1.5rem;
}

.membership-pricing-section .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.membership-pricing-section .pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #333333;
}

.membership-pricing-section .pricing-features li svg {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--PrimaryColor);
    flex-shrink: 0;
    background: #C600001A;
    border-radius: 50%;
    padding: 2px;
}

.membership-pricing-section .btn-outline-gray {
    background: #E8E8E8;
    color: var(--BlackColor);
    border: 1px solid #E8E8E8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.7rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.membership-pricing-section .btn-outline-gray:hover {
    background: var(--PrimaryColor);
    border-color: var(--PrimaryColor); color: var(--WhiteColor);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--WhiteColor);
}

.footer .footer-top {
    padding: 5rem 0 4rem;
}

/* Brand column */
.footer .footer-logo {
    display: inline-block;
    margin-bottom: 1.2rem;
}


.footer .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 1.5rem;
}

.footer .footer-social {
    display: flex;
    gap: 0.7rem;
}

.footer .footer-social a {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.footer .footer-social a:hover {
    background: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
    color: var(--WhiteColor);
}

.footer .footer-social a svg {
    width: 1rem;
    height: 1rem;
}

/* Links & CTA columns */
.footer .footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1.4rem;
}

.footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer .footer-menu li a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.92rem;
        color: rgba(0, 0, 0, 0.55);
    padding: 0.4rem 0;
    transition: 0.3s;
}

.footer .footer-menu li a svg {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--PrimaryColor);
    flex-shrink: 0;
    transform: translateX(-4px);
    transition: 0.3s;
}

.footer .footer-menu li a:hover {
    color: var(--PrimaryColor);
    padding-left: 0.3rem;
}

.footer .footer-menu li a:hover svg {
    opacity: 1;
    transform: translateX(0);
}

.footer .footer-col-desc {
    font-size: 0.88rem;
    line-height: 1.75;
        color: rgba(0, 0, 0, 0.55);
    margin-bottom: 1.4rem;
}

.footer .footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
        color: rgba(0, 0, 0, 0.55);
    transition: 0.3s;
}

.footer .footer-email svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.footer .footer-email:hover {
    color: var(--PrimaryColor);
}

/* Bottom bar */
.footer .footer-bottom {
    padding: 1.3rem 0;
    border-top: 1px solid #E5E5E5;
}

.footer .footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer .footer-bottom p {
    font-size: 0.82rem;
       color: rgba(0, 0, 0, 0.55);
    margin-bottom: 0;
}

.footer .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer .footer-bottom-links a {
    font-size: 0.82rem;
      color: rgba(0, 0, 0, 0.55);
    transition: 0.3s;
}

.footer .footer-bottom-links a:hover {
    color: var(--PrimaryColor);
}




/* Wrapper */
.dw-cookie-wrapper {
   position: fixed;
    box-sizing: border-box;
    z-index: 2147483647;
    background-color: #fff;
    opacity: 1;
    display: block;
    transform: translateY(0px);
    bottom: 0px;
    right: 0px;
    max-width: 320px;
    width: calc(100% - 20px);    
    box-shadow: 0 -0.3125rem 1.25rem rgba(0,0,0,0.1);
    transition: opacity 0.3s, transform, top, left, right, bottom, max-width, width;
    margin: 1rem;
    border-radius: 10px;
    padding: 2rem;



}

/* Inner layout */
.dw-cookie-card {
    max-width: 75rem;
    margin: auto;
    display: flex; 
    align-items: center;
   flex-direction: column;
    gap: 1rem; 
}

/* Text */
.dw-cookie-text h4 {
  font-size: 1.2rem;
    color: var(--BlackColor);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dw-cookie-text p {
      color: #555555;
    font-size: 0.9rem; line-height:1.6 ;
    margin-bottom: 0.5rem;
}

.dw-cookie-text a {
    color: var(--PrimaryColor);
    font-weight: 500;
    text-decoration: none;
}

.dw-cookie-wrapper .dw-cookie-actions .btn{    font-size: 0.9rem;}
/* Buttons */
.dw-cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
}


.inner-banner{    background: var(--PrimaryColor);padding: 5rem 0}
.inner-banner h1{      font-size: 2.5rem;
    font-weight: 600;
    color: var(--WhiteColor);
    line-height: 1.1;
}

.static-pages-outer .same-heading h2{    font-size: 2rem;}
.static-pages-outer .same-heading h3{    font-size: 1.4rem;}
.legal-highlight {
  background: #c600000f;
  padding: 1.2rem;
  border-left: 4px solid var(--PrimaryColor);
  margin: 1rem 0 1.5rem;
}
.legal-highlight p{margin-bottom: 0;}

.static-pages-outer .dot-listing{margin: 1rem 0 1rem 1rem;}
.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 1rem;
    color: #3B3B3B;
    line-height: 1.6;
}





