﻿/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #247DC6;
    --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;
    padding-top: 70px;
}


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:2.2rem;
    font-weight: 500;
    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: #464646;
    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);
}

.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.8rem;
  font-weight: 500;
  letter-spacing: 5%;
  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(--WhiteColor) !important;
    color: var(--PrimaryColor) !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: var(--WhiteColor);
    color: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}

.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-white {
    background: var(--WhiteColor);
    border: solid 1px var(--WhiteColor);
    color: #0A3253;
}

.btn-white:hover,.btn-white:focus,.btn-white:active {
 background: var(--PrimaryColor) !important;
border-color:var(--PrimaryColor) !important ;
color: var(--WhiteColor) !important;
}


.header-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}
.header-outer.scrolled {
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  border-bottom-color: transparent;
  animation: headerfixdown 0.4s ease;
}


@keyframes headerfixdown {
    0% {
    opacity: 0;
    transform: translateY(-100%);
} 
100% {
    opacity: 0.9;
    transform: translateY(0);
    } 
}



.header-outer .header { display: block; padding: 1rem 0;
    width: 100%;
    background-color: #fff;
    position: relative;
    min-height: 70px; }
.header-outer .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    gap: 1rem;
}
.header-outer .site-logobx { flex-shrink: 0; margin-right: 4px; }
.header-outer .site-logobx img{    max-height: 48px;}
/* .header-outer .site-logobx img { height: 36px; width: auto; display: block; } */

.img-fluid{    max-width: 100%;
    height: auto;}

/* Nav wrap */
.header-outer .header-menu-wrap { display: flex; align-items: center; flex: 1; min-width: 0; }
.header-outer .header-menu-ul-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap;    gap: 1vw;
}

/* Mega-menu items â€” position:relative so panel anchors to nav item */
.header-outer .mega-menu { position: relative; }
/* Regions panel anchors to Regions nav item (left-aligned) */
.header-outer .mega-menu--full { position: relative; }
.header-outer .dropdown-hover {
      font-weight: 500;
    font-size: 0.9rem;
    line-height: normal;
    color: #4D4D4D;
    position: relative;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;    background: transparent;
    border-radius: 5px;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.header-outer .dropdown-hover:hover,
.header-outer .mega-menu.mopen > .dropdown-hover { color: var(--PrimaryColor);  }
.header-outer .dropdown-hover svg { width: 14px; height: 14px; transition: transform .18s; flex-shrink: 0; }
.header-outer .mega-menu.mopen > .dropdown-hover svg { transform: rotate(180deg); }

/* Dropdown panel â€” positioned under each nav item */
.header-outer .header { position: relative; }
.header-outer .mm-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: auto;
  width: auto;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(7,24,39,0.12);
  padding: 6px 0;
  z-index: 500;
}
.header-outer .mega-menu.mopen .mm-panel { display: block; }
.header-outer .mm-panel--councils { min-width: 420px; }
.header-outer .mm-panel--services { min-width: 560px; }
.header-outer .mm-panel--meetings { min-width: 420px; }
.header-outer .mm-panel--regions {
  left: 0;
  right: auto;
  width: 860px;
  border-radius: 10px;
  padding: 20px;
}

.header-outer .search-icon-bx  {     margin-right: 0.5rem;
    color: #4D4D4D;
    padding-left: 0.8rem;
 }

.header-outer .search-icon-bx  svg {
    width: 1.1rem;
    height: 1.1rem;
}

/* Links list */
.header-outer .mm-links { list-style: none; margin: 0; padding: 6px 0; display: block; }
.header-outer .mm-links li { border-left: none; width: auto; padding: 0; break-inside: avoid; }
.header-outer .mm-links a {
  display: block;
  border-radius: 0;
  font-weight: 400;
  padding: 7px 20px;
  font-size: 0.9rem;
  color: #4D4D4D;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s, color .15s;
  position: relative;
}
.header-outer .mm-links a:hover { color: var(--PrimaryColor); background: #f0f6fb; }

/* 2-column (Councils) */
.header-outer .mm-links-2col { columns: 2; column-gap: 0; }

/* 3-column (Services) */
.header-outer .mm-links-3col { columns: 3; column-gap: 0; }
.header-outer .mm-links-3col li { width: auto; }

/* "New" badge */
.header-outer .mm-new a::after {
    content: 'New';
    position: absolute;
    right: 10px;
    top: 11px;
    background: #2396cf;
    color: #fff;
    padding: 1px 3px;
    border-radius: 2px;
    font-size: 10px;
    line-height: normal;
    font-weight: 400;

}

.d-lg-none{display: none;}

/* Regions panel */
.header-outer .mm-map img { width: 100%; height: auto; }
.header-outer  .mm-phase{border: solid 1px #D3D3D3; border-radius: 19px; padding: 7px;}
.header-outer .mm-phase + .mm-phase{margin-top: 10px;}
.header-outer  .mm-phase p{color: #BBBBBB; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.8rem;}
.header-outer  .mm-phase .mm-flags{display: flex; gap: 3px; flex-wrap: wrap; }
.header-outer  .mm-phase .mm-flags li{ width: 18.5%; margin: 0; display: block;}
.header-outer  .mm-phase .mm-flags li a{margin: 0; padding: 0;}



/* .header-outer .mm-flags li a img { width: 22px; height: 22px; border-radius: 50%; } */


.header-outer .middle-menu{padding: 0 15px;}
.header-outer .middle-menu .meetings-menu{margin-top: 1.5rem;}
.header-outer .middle-menu .meetings-menu h6{font-weight: 600;font-size: 1rem;color: var(--navy);margin-bottom: 0.5rem}

.header-outer .middle-menu .meetings-menu .btn-primary{margin-top: 0.5rem;}
.header-outer .event-menu-list{display: flex; flex-wrap: wrap;    align-items: center;gap: 0.5vw; padding: 0; margin: 0; list-style: none;}
.header-outer .middle-menu .event-menu-list li{ width: 32%; padding: 0 5px;    border-left: 4px solid rgb(223, 223, 223);}
.header-outer .middle-menu .event-menu-list li a{ background: #fff;
    box-shadow: inset 3px 0px 0px #fff;
    border-radius: 5px;
    font-weight: 500;
    padding: 0.6rem 0.5rem 0.6rem 0.6rem;
    font-size: 0.9rem;
    display: block;
    width: 100%;
    white-space: normal;}
.header-outer .middle-menu .event-menu-list li a:hover{    background: #3a799b12;
    color: var(--PrimaryColor);
    box-shadow: inset 3px 0px 0px var(--PrimaryColor)}


.header-outer .middle-menu .event-menu-list .event-title{color: #4D4D4D;min-height: 20px; font-size: 0.9rem;    font-weight: 400; line-height: 1.5;}
.header-outer .meetings-list{display: flex; align-items: center; flex-wrap: wrap;}
.header-outer .meetings-list li{width: 49%; padding: 5px;  border-left: 4px solid rgb(223, 223, 223); }
.header-outer .meetings-list li a{ padding: 0.6rem 0.5rem 0.6rem 0.6rem;   color: #4D4D4D;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5; border-radius: 5px; }
.header-outer .meetings-list li a:hover{color: var(--PrimaryColor);  background: #3a799b12;
    color: var(--PrimaryColor);
    box-shadow: inset 3px 0px 0px var(--PrimaryColor)}



ul{padding: 0; margin: 0; list-style: none;}



/* Action buttons */
.header-outer .header-right-btns { display: flex; align-items: center; gap: 1rem; flex-shrink: 0;}

/* Mobile toggle */
.header-outer .mob-nav-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
  cursor: pointer;
  background: var(--PrimaryColor);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.header-outer .mob-nav-toggle svg { width: 22px; height: 22px; display: block; }

/* Backdrop — inside header-outer stacking context: above .header (auto) below drawer (1050) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1020;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-backdrop.active {
  display: block;
  opacity: 1;
} 

/* Mobile nav header (logo + close btn) */
.mob-nav-header {
  display: none;
}
.mob-nav-footer {
  display: none;
}





.hero-section {
    position: relative;
    padding: 3rem 0 ;
    background: #EBF5FD;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section > .container { width: 100%; }
.hero-section .row { align-items: center; }




/* Content */
.hero-section .hero-content {
    position: relative;
    z-index: 2;
}

/* Title */
.hero-section h1 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--BlackColor);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.hero-section h1 .primary-text { color: var(--PrimaryColor); }

/* Text */
.hero-section p {
    font-size: 1rem;
    color: #464646;
    line-height: 1.8;
}





/* Hero Video Box */


.hero-section .heroglobe-imgbx {
    position: relative;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
}
.heroglobe-imgbx img { mix-blend-mode: darken; }
#globe-canvas { width: 100% !important; height: auto !important; display: block; }

.globe-label {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    padding: 0.45rem 1.15rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--PrimaryColor);
    box-shadow: 0 2px 16px rgba(0, 80, 180, 0.12);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.01em;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.hero-section .heroglobe-imgbx video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
    border: none;
    outline: none;
    background: transparent;
}

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 5rem;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding:0.4rem 1.2rem;
    border: 1px solid #D0DDE7;
    border-radius: 50px;
    background: transparent;
    font-size: 0.88rem;
    font-weight: 500;
    color: #717171;
}
.hero-tag svg {
    width: 1rem;
    height: 1rem;
    color: #667085;
    flex-shrink: 0;
}












/* =========================================
   WHY DIGITAL WORLD SECTION
   ========================================= */
.why-digital-world-section .why-cards-row {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.why-digital-world-section .why-card {
    flex: 1;
    border-radius: 20px;
    padding: 1.2rem;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;  
   
}
.why-digital-world-section .why-card::before{  z-index: 2; background: rgb(0 0 0 / 31%); position: absolute; left: 0; right: 0; top: 0; bottom: 0; content: ''; }


.why-digital-world-section .why-card  .why-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;z-index: 1;
}

/* TOP â€” title + icon */
.why-digital-world-section .why-card .why-card-top {
    position: relative;
    z-index: 2;
    /* padding: 1.2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%); */
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.why-digital-world-section .why-card .why-card-title {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    color:var(--WhiteColor);
}

.why-digital-world-section .why-card .why-card-icon {
    width: 2.4rem;
    height: 2.4rem;
    background: #fff;
    backdrop-filter: blur(4px);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.why-digital-world-section .why-card .why-card-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    color: #000;
}

/* BOTTOM â€” description */
.why-digital-world-section .why-card .why-card-bottom {
    position: relative;
    z-index: 2;
    /* padding: 1.2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 80%, transparent 100%); */
}

.why-digital-world-section .why-card .why-card-bottom p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.92);
    margin: 0;
}

/* =========================================
   PRINCIPLES SECTION
   ========================================= */
.principles-section { background: #F8FBFF; }

.principles-section .principles-video-card {
    background: #fff;
    border: 1px solid #E4EEF8;
    border-radius: 20px;
    padding: 1.5rem;
}

.principles-section .principles-video-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--BlackColor);
    margin-bottom: 1rem;
}

.principles-section .principles-video-card .principles-video-thumb {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.principles-section .principles-video-card .principles-video-thumb img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.principles-section .principles-video-card .play-btn {
    position: absolute;
        right: 1rem;
    bottom: 1rem;
    margin: auto;
    width: 3rem;
    height: 3rem;
    background: #000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.principles-section .principles-video-card .play-btn:hover { background: var(--PrimaryColor); transform: scale(1.1); }

.principles-section .principles-video-card .play-btn svg {
    width: 1.1rem;
    height: 1.1rem;
    color: #fff;
    margin-left: 2px;
}






/* =========================================
   PARTICIPANT SECTION
   ========================================= */

.participant-card {
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    padding: 1.5rem 1.2rem;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.participant-card:hover {
    box-shadow: 0 6px 24px rgba(36, 125, 198, 0.1);
    transform: translateY(-3px);
}

.participant-card .card-icon {
    width: 2.8rem;
    height: 2.8rem;
    background: #247DC61A;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--PrimaryColor);
}

.participant-card .card-icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.participant-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--PrimaryColor);
    margin-bottom: 0.4rem;
}

.participant-card p {
    font-size: 0.85rem;
    color: #595959;
    line-height: 1.6;
    margin: 0;
}

.blue-link-text{    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--PrimaryColor);
    transition: gap 0.2s ease;}



/* =========================================
   DIGITAL STACK SECTION
   ========================================= */
.digital-stack-section {
    background: linear-gradient(to top, #247DC6 0%, #021E35 100%);
}



.digital-stack-section .stack-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.digital-stack-section .stack-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.digital-stack-section .stack-list .stack-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
        transition: .2s ease;
}

.digital-stack-section .stack-list .stack-row:hover {
    background: rgba(255, 255, 255, 0.11);    border-color: rgba(150, 190, 240, .4);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.28);transform: translateX(3px);
}

.digital-stack-section .stack-list .stack-row .stack-num {
    font-size: 2rem;
    font-weight: 500;
    color: var(--WhiteColor);
    min-width: 3rem;
    line-height: 1;    filter: blur(2px);
}

.digital-stack-section .stack-list .stack-row .stack-info {
  width: 30%;
}

.digital-stack-section .stack-list .stack-row .stack-info h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.15rem;
}

.digital-stack-section .stack-list .stack-row .stack-info p {
    font-size: 0.82rem;
    color: #fff;
    font-weight: 300;
    margin: 0;
}

.digital-stack-section .stack-list .stack-row .stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.digital-stack-section .stack-list .stack-row .stack-tags span {
    font-size: 0.8rem;
    color: var(--WhiteColor);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 0.2rem 0.75rem;
     background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(0.75rem);
    -webkit-backdrop-filter: blur(0.75rem);
    box-shadow: inset 0 0.0625rem 0.125rem rgb(255 255 255 / 6%), inset 0 -0.0625rem 0.125rem rgb(255 242 242 / 8%), 0 0.5rem 2rem rgb(0 0 0 / 0%);
    transition: all 0.3s ease;
}


/* =========================================
   HOW IT WORKS SECTION
   ========================================= */



.how-it-works-section .how-card {
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.how-it-works-section .how-card:hover {
    box-shadow: 0 4px 20px rgba(36,125,198,0.1);
    transform: translateY(-2px);
}

.how-it-works-section .how-card .how-num {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D8D8D8;
}

.how-it-works-section .how-card h4 {
      font-size: 1rem;
    font-weight: 500;
    color: var(--PrimaryColor);
    margin: 0;
}

.how-it-works-section .how-card p {
    font-size: 0.84rem;
    color: #464646;
    line-height: 1.6;
    margin: 0;
}


.how-it-works-section .how-card.how-card-cta {
    background: linear-gradient(to top, #021E35 0%, #247DC6 100%);
    border: none;
    justify-content: space-between;
}

.how-it-works-section .how-card.how-card-cta h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.how-it-works-section .how-card.how-card-cta:hover {
    box-shadow: 0 8px 28px rgba(36,125,198,0.4);
    transform: translateY(-2px);
}

.how-it-works-section .how-card.how-card-cta .btn{width: max-content;}


.video-modal-dialog .modal-content {
    border-width: 0.4375rem;
    border-style: solid;
    border-color: var(--WhiteColor);
    border-image: initial;
}

.video-modal-dialog .btn-close {
    position: absolute;
    background: var(--PrimaryColor);
    color: #ffffff;
    z-index: 1;
    opacity: 1;
    text-align: center;
    right: -1rem;
    top: -1rem;
    font-size: 1rem;
    transition: all 0.2s ease 0s;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video-modal-dialog video{display: block; }

/* =========================================
   REGIONS SECTION
   ========================================= */
.regions-section {
    background: linear-gradient(to bottom, #EBF5FD, transparent);
    overflow: hidden;
}

.regions-section .regions-desc {
    color: #464646;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.regions-section .region-card {
    background: #fff;
    border: 1px solid #CCCCCC;
    border-radius: 16px;
    display: block;
    padding: 1.4rem;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.regions-section .region-card:hover {
    box-shadow: 0 4px 20px rgba(36,125,198,0.12);
    transform: translateY(-3px);
}

.regions-section .region-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.regions-section .region-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.regions-section .region-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--BlackColor);
    margin-bottom: 0.4rem;
}

.regions-section .region-card p {
    font-size: 0.9rem;
    color: #656565;
    line-height: 1.6;
    margin: 0;
}

.regions-section .regions-explore-link {
   display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--PrimaryColor);
margin-top: 2.5rem;
    transition: gap 0.2s ease;
}

.regions-section .regions-explore-link:hover {
    gap: 0.6rem;
    color: var(--PrimaryColor);
}

.regions-section .regions-explore-link svg {
    width: 1rem;
    height: 1rem;
}
.regions-section .regions-content{position: relative; z-index: 1;}
.regions-section .regions-map {
    margin: -6rem 0 auto 0;    width: 100%;
    max-width: 90%;

}

.regions-section .regions-map img {
    width: 100%;
    display: block;
}

/* =========================================
   OPEN GOVERNANCE SECTION
   ========================================= */
.governance-section { background: #EBF5FD; }

.governance-section .governance-desc {
    color: #464646;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Left live card */
.governance-section .governance-live-card {
    background: linear-gradient(to bottom, #247DC6 0%, #021E35 100%);
    border-radius: 20px;
    padding: 2rem;
    color: #fff;



}

.governance-section .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 400;
        backdrop-filter: blur(0.75rem);
   
    box-shadow: inset 0 0.0625rem 0.125rem rgba(255, 255, 255, 0.8), inset 0 -0.0625rem 0.125rem rgba(164, 164, 164, 0.25), inset 0.0625rem 0 0.125rem rgba(255, 255, 255, 0.4), inset -0.0625rem 0 0.125rem rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 0.4rem 0.8rem;
    width: fit-content;
    margin-bottom: 1.2rem;
}

.governance-section .live-dot {
    width: 7px;
    height: 7px;
    background: #9DFF14;
    border-radius: 50%;
    display: inline-block;
}

.governance-section .governance-live-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--WhiteColor);
    margin: 0 0 0.5rem; 
}

.governance-section .live-schedule {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 2rem;
}

.governance-section .live-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    width: 100%; max-width: 70%;
     margin: 0 0 2rem;
}

.governance-section .governance-live-card .section-bottom-btn { margin-top: auto; }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

.btn-white-solid {
    background: #fff;
    color: var(--PrimaryColor);
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-white-solid:hover {
    background: var(--PrimaryColor);
    color: #fff;
    border-color: var(--PrimaryColor);
}

.btn-white-solid svg { width: 1rem; height: 1rem; }

/* Right video list */
.governance-section .governance-videos {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.governance-section .gov-video-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid #E4EEF8;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.governance-section .gov-video-item:hover {
    box-shadow: 0 4px 16px rgba(36,125,198,0.1);
    transform: translateY(-2px);
}

.governance-section .gov-video-thumb {
    width: 7rem;
    height: 4.8rem;
    background: #E8F0F8;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.governance-section .gov-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.governance-section .gov-video-thumb .gov-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.governance-section .gov-play-btn {
    width: 2rem;
    height: 2rem;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.governance-section .gov-play-btn svg { width: 0.75rem; height: 0.75rem; color: var(--PrimaryColor); margin-left: 1px; }

.governance-section .gov-video-info { flex: 1; }

.governance-section .gov-date {
    font-size: 0.75rem;
    font-weight: 400;
    color: #939393;
    display: block;
    margin-bottom: 0.2rem;
}

.governance-section .gov-video-info h5 {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--BlackColor);
    margin-bottom: 0.2rem;
}

.governance-section .gov-meta {
    font-size: 0.78rem;
    color: #9CA3AF;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section { background: #fff; }

.services-section .service-card {
    background: #fff;
    border: 1px solid #E4EEF8;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.services-section .service-card:hover {
    box-shadow: 0 4px 20px rgba(36,125,198,0.1);
    transform: translateY(-3px);
}

.services-section .service-icon {
      width: 2.8rem;
    height: 2.8rem;
    background: #247DC61A;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--PrimaryColor);
}

.services-section .service-icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.services-section .service-card h4 {
     font-size: 1rem;
    font-weight: 500;
    color: var(--PrimaryColor);
    margin-bottom: 0.4rem;
}

.services-section .service-list {
    list-style: disc;
    padding-left: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 1rem;
}

.services-section .service-list li {
 font-size: 0.85rem;
    color: #595959;
     padding: 0.15rem 0;
    line-height: 1.5;
}

/* =========================================
   DEVELOPER DOCS SECTION
   ========================================= */
.devdocs-section {    background: linear-gradient(rgb(235, 245, 253), transparent);}

.devdocs-section .devdocs-desc {
    color: #464646;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.devdocs-section .devdocs-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.devdocs-section .devdocs-gateway-tag {
    font-size: 0.82rem;
    color: #999999;
    background: #fff;
    border: 1px solid #D7D7D7;
    border-radius: 50px;
    padding: 0.35rem 1rem;
}

/* SDK Cards */
.devdocs-section .sdk-card {
    background: #fff;
    border: 1px solid #E4EEF8;
    border-radius: 16px;
    padding: 1.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.devdocs-section .sdk-card:hover {
    box-shadow: 0 4px 20px rgba(36,125,198,0.1);
    transform: translateY(-3px);
}

.devdocs-section .sdk-card-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.devdocs-section .sdk-badge {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.02rem;
}

.devdocs-section .sdk-badge-js      { background: #FFE100; color: #000; }
.devdocs-section .sdk-badge-ios     { background: #000000; }
.devdocs-section .sdk-badge-android { background: #3DDC84; color: #1a1a1a; }
.devdocs-section .sdk-badge-python  { background: #247DC6; }

.devdocs-section .sdk-lang-tag {
    font-size: 0.75rem;
    color: #999999;
    background: var(--WhiteColor);
    border: solid 1px #D7D7D7;
    border-radius: 50px;
    padding: 0.2rem 0.7rem;
}

.devdocs-section .sdk-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--BlackColor);
    margin: 0;
}

.devdocs-section .sdk-card p {
    font-size: 0.83rem;
    color: #6F6F6F;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.devdocs-section .sdk-npm-tag {
    font-size: 0.78rem;
    color: #787878;
    background: #F0F4FF;
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    font-weight: 400;
}

.devdocs-section .sdk-npm-tag span { color: var(--PrimaryColor); }

.devdocs-section .sdk-coming-soon {
    font-size: 0.78rem;
    font-weight: 600;
    color: #787878;
    border: 1px dashed #B3B3B3;
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    letter-spacing: 0.08rem;
    margin-top: auto;
}

/* Network Details Card */
.devdocs-section .network-details-card {
    background: linear-gradient(to top, rgb(235, 245, 253), transparent);
    border: 1px solid #E4EEF8;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-top: 3rem;
}

.devdocs-section .network-details-card .tag { margin-bottom: 0.4rem; }

.devdocs-section .network-details-card h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--BlackColor);
    margin-bottom: 0.6rem;
}

.devdocs-section .network-details-card p {
    font-size: 0.88rem;
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

.devdocs-section .network-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.devdocs-section .network-field:last-child { margin-bottom: 0; }

.devdocs-section .network-field label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    color: #9CA3AF;
    text-transform: uppercase;
}

.devdocs-section .network-value {
    background: #F8FBFF;
    border: 1px solid #E4EEF8;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    color: #1F2937;
    font-family: monospace;
}



.humanity-section{background: linear-gradient(to top, #247DC6, #021E35);}


/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--WhiteColor);
    border-top: 1px solid #E8F0F8;
}

.footer .footer-top {
    padding: 4rem 0 3rem;
}

.footer .footer-logo {
    display: inline-block;
    margin-bottom: 1.2rem;
}

.footer .footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #6B7280;
    margin-bottom: 0.4rem;
}

.footer .footer-brand .footer-tagline {
    font-size: 0.88rem;
    font-weight: 600;
    color: #464646;
    margin-bottom: 0;
}

.footer .footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: var(--PrimaryColor);
    margin-bottom: 1.2rem;
}

.footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer .footer-menu li a {
    font-size: 0.88rem;
    color: #686868;
    padding: 0.35rem 0;
    transition: 0.2s;
    display: block;
}

.footer .footer-menu li a:hover {
    color: var(--PrimaryColor);
}

.footer .footer-bottom {
    padding: 1.2rem 0;
    border-top: 1px solid #E8F0F8;
    text-align: center;
}

.footer .footer-bottom p {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 0;
}

