/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #FFD02B;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
    --SecondaryColor: #122939;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





body {
 font-family: "Instrument 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:3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}


.same-heading h2 .highlight-text{background: var(--PrimaryColor); color: var(--BlackColor); padding: 0.2rem 0.6rem;}
.same-heading h2 .outline-text{ 
  color: #fff;
  -webkit-text-stroke: 1px var(--BlackColor);}

.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 .max-wid-50 {
    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.8rem;
  font-weight: 400;
  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: 10px;
    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(--BlackColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.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(--BlackColor);
    border-color: var(--WhiteColor);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background: var(--BlackColor);
    color: var(--WhiteColor);
    border-color: var(--BlackColor);
}

.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);
border-color:var(--PrimaryColor);
color: var(--WhiteColor);
}



.btn-white {
    background: var(--WhiteColor);
    border: solid 1px var(--WhiteColor);
    color: #788E37;
}

.btn-white:hover,.btn-white:focus,.btn-white:active {
 background: var(--PrimaryColor);
border-color:var(--PrimaryColor);
color: var(--WhiteColor);
}



/* =========================================
   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;}



.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;
}

.hero-section:after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 150px;
    background: linear-gradient(to bottom, black, transparent);
    content: '';
}



/* Content */
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  border-radius: 1rem;
}

/* Title */
.hero-section h1 {
  font-size: 5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.hero-section h1 .border-text{   color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.8);}


/* Text */
.hero-section p {
  font-size: 1rem;
  color: var(--WhiteColor);
  margin: 1.2rem 0 1.8rem;
  line-height: 1.6;
}


.infrastructure-stats-section {
  border-bottom: 1px solid #C7C7C7;
}

.infrastructure-stats-section .stats-box {
  padding: 2rem 1rem;
  border-right: 1px solid #C7C7C7;
  height: 100%;
}

.infrastructure-stats-section .stats-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #575757;
  margin-bottom: 1rem;
}

.infrastructure-stats-section .stats-number {
  font-size: 5rem;
  line-height: 1;
  font-weight: 500;
  color: #000;
  margin-bottom: 1rem;
}

.infrastructure-stats-section .stats-number span {
  font-size: 1.1rem;
  color: #6A6A6A;
  margin-left: 0.4rem;
  display: inline-block;
  vertical-align: super;
}

.infrastructure-stats-section .stats-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #5B5B5B;
  max-width: 24rem;
  margin-bottom: 0;
}


.stewardship-commitment-section .commitment-card-wrapper {
  border: 1px solid #DEDEDE;
  background: #fff;
}

.stewardship-commitment-section .commitment-image-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.stewardship-commitment-section .commitment-image-box img {
  max-width: 100%;
}

.stewardship-commitment-section .commitment-info-box {
  background: #000;
  color: #fff;
  padding: 3rem 2rem;
  height: 100%;
}

.stewardship-commitment-section .commitment-info-box h3 {
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1rem;
}

.stewardship-commitment-section .commitment-info-box p {
  font-size: 1rem;
  line-height: 1.9;
  color:var(--WhiteColor);
}

.stewardship-commitment-section .commitment-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.10);margin-top: 3rem;
}

.stewardship-commitment-section .info-stat {
  padding: 1rem ;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stewardship-commitment-section .col-6:nth-child(2n) .info-stat {
  border-right: 0;
}

.stewardship-commitment-section .info-stat span {
  display: block;
  font-size: 0.9rem;
  line-height: normal;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.stewardship-commitment-section .info-stat h4 {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0;
}

.stewardship-commitment-section .highlight-value {
  color: var(--PrimaryColor);
}

.civilization-integration-section .integration-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  height: 100%;
}

.civilization-integration-section .integration-icon {
  width: 2.8rem;
  height: 2.8rem;
  /* border: 0.1rem solid #D5D5D5; */
 margin-bottom: 1rem;
}

.civilization-integration-section .integration-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--BlackColor);
}

.civilization-integration-section .integration-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4F4F4F;
  margin-bottom: 0;
}




.buildout-priorities-section .priorities-label {
  font-size: 1rem;
  text-transform: uppercase;
  color: #6F6F6F;
  margin-bottom: 1.8rem;
}



.buildout-priorities-section .priorities-row {
  border: 0.1rem solid #dcdcdc;
}

.buildout-priorities-section .priority-card {
  padding: 1rem;
  border-right: 1px solid #BBBBBB;
  background: var(--WhiteColor);
  height: 100%;
}

.buildout-priorities-section .priority-card img {
  max-height: 4.5rem;
 margin-bottom: 1rem;
}

.buildout-priorities-section .priority-card h3 {
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 500;
  color: var(--BlackColor);
  margin-bottom: 0.5rem;
}

.buildout-priorities-section .priority-card span {
  font-size: 0.8rem;
  color: #6F6F6F;margin-bottom: 0;
}

.buildout-priorities-section .step-img-bx{margin-top: 5rem;}

/* ---- Step Card Mobile (vertical timeline) ---- */
.step-card-mobile {
  margin-top: 3rem;
  padding: 0 0.5rem;
}

.step-card-mobile__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-card-mobile__year {
  min-width: 4.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  background: #2d2d2d;
  color: var(--WhiteColor);
  white-space: nowrap;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.step-card-mobile__year.active {
  background: var(--PrimaryColor);
  color: #000;
}

.step-card-mobile__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 0.4rem;
}

.step-card-mobile__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #2d2d2d;
  flex-shrink: 0;
}

.step-card-mobile__dot.active {
  background: var(--PrimaryColor);
}

.step-card-mobile__line {
  width: 1px;
  flex: 1;
  min-height: 3rem;
  background: #BBBBBB;
  margin-top: 0.3rem;
}

.step-card-mobile__content {
  padding-bottom: 1.75rem;
}

.step-card-mobile__content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1B1B1B;
  margin: 0;
}

.step-card-mobile__item.last .step-card-mobile__content {
  padding-bottom: 0;
}

/* ---- Video Modal ---- */
.video-modal .modal-content {
  background: #000;
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
}

.video-modal .modal-content video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-modal-close svg {
  width: 1rem;
  height: 1rem;
}

.video-modal .modal-dialog {
  max-width: 900px;
}

.founding-circle-section .founding-circle-card {
  background: url(../images/founding-circle-bg.jpg)no-repeat center top/cover;
  position: relative;
  overflow: hidden;
margin-top: 4rem;
  padding: 13rem 3rem 3rem;
}

.founding-circle-section .founding-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founding-circle-section .row {
  position: relative;
  z-index: 2;
}

.founding-circle-section .video-play-btn{width: 3.5rem; height: 3.5rem; border-radius: 50%; border: solid 1px #FFFFFF1A; background: #FFFFFF1A; color: var(--PrimaryColor); position: absolute; right: 0; bottom: 0; }
.founding-circle-section .video-play-btn svg{color: var(--PrimaryColor); }



.footer {
  border-top: 0.1rem solid #dddddd;
}

.footer .footer-top-row {
  padding: 4rem 0;
}

.footer .footer-logo {
  max-width: 11rem;
  margin-bottom: 1.6rem;
}

.footer .footer-brand h3 {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--BlackColor);
  max-width: 22rem;
  margin: 1rem 0;
}

.footer .footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #676767;
  max-width: 28rem;
  margin-bottom: 0;
}

.footer .footer-links h4 {
  font-size: 1rem; font-weight: 500;
  color: #929292;
  margin-bottom: 1rem;
}

.footer .footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer .footer-links ul li {
padding: 0.5rem 0;
}

.footer .footer-links ul li a {
  font-size: 0.9rem;
  color: var(--BlackColor);
  text-decoration: none;
  transition: 0.3s;
}

.footer .footer-links ul li a:hover {
  color: var(--PrimaryColor);
}

.footer .footer-bottom {
  padding: 1.3rem 0;
  border-top: 1px solid #DEDEDE;
  text-align: center;
}

.footer .footer-bottom p {
  font-size: 0.9rem;
  color: #323232;
  margin-bottom: 0;
}






