* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}


body {
  background-color: black;
  color: white;
  overflow-x: hidden;
}

/* Header */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  z-index: 5;
}

.logo img {
  height: 80px;       /* adjust this to your preferred size */
  width: auto;        /* keeps proportions correct */
  display: block;     /* removes extra inline space */
}

.logo span {
  color: #0074ac;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #d4fff0;
  transition: 0.3s;
}
nav a:hover {
  color: #9cfced;
}
.contact-btn {
  padding: 8px 18px;
  border-radius: 30px;
  background: linear-gradient(90deg, #3eb7d2,#55ee9f);
  color: #000;
 
}
.contact-btn:hover {
  background: linear-gradient(90deg, #55ee9f, #3eb7d2);
  box-shadow: 0 0 15px rgba(85, 238, 159, 0.5);
  transform: translateY(-2px);
}



/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 0 8%;
  background: black;
  height: 100vh;
}


.hero-content {
  flex: 1;
  padding-right: 40px;
  position: relative;
  z-index: 3;
}

.hero-content .tag {
  display: inline-block;
  background: rgba(0, 116, 172, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  color: #55ee9f;
;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #55ee9f, #3eb7d2, #55ee9f); /* left to right */
  background-size: 200% 100%; /* wide enough for smooth scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite; /* continuous motion */
}

@keyframes gradientMove {
  0% {
    background-position: 200% 0%;
  }
  100% {
    background-position: -200% 0%;
  }
}

.hero-content p {
  margin-top: 20px;
  color: #d4fff0;
  font-size: 1rem;
}

.buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(90deg, #3eb7d2, #55ee9f);
  color: #000;
}

.btn.outline {
  border: 1px solid #55ee9f;
  color: #55ee9f;
}
.btn.outline:hover {
  background: #55ee9f;
  color: #000;
}
/* make space on the right for the fixed iframe */
.hero--with-fixed-3d { 
  position: relative; 
  padding-right: clamp(320px, 44vw, 620px);
}

/* pin the iframe to the viewport on the right */
.hero-3d{
  position: fixed;
  top: 80px;              /* push below your fixed header */
  right: 0;
  width: clamp(320px, 44vw, 620px);
  height: calc(100vh - 110px); /* full height minus header + breathing */
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;   /* so scroll/clicks pass through; remove if you need clicks */
  z-index: 0;             /* keep it behind header */
}
.hero-3d iframe{ width:100%; height:100%; border:0; }

/* keep header above it */
header{ z-index: 5; }

.fixed-3d {
  position: fixed;
  top: var(--header-h);
  right: 0;
  width: var(--panel-w);
  height: calc(100vh - var(--header-h));
  z-index: 1;          /* behind all text sections */
  overflow: hidden;
  background: transparent;
}

.fixed-3d iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}



/*about section*/


.about-section {
  padding: 100px ;
  position: relative;
  z-index: 2;
  
}
.about-head{
  text-align: center;
  margin-bottom: 28px;
  padding: 20px;
  gap: 10px;
  
}
.about-head p {
  padding-bottom: 5px;
  color: #bff7ea;
  font-size: 1rem;
}
.about-tag {
  display: inline-block;
    background: rgba(0, 116, 172, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    color: #55ee9f;
    margin-bottom: 20px;
    font-size: 0.9rem;
}


.about-head h2 {
  padding-top: 25px;
}  
  


/* About card – same as ws-card */
.about-card {
  background: radial-gradient(120% 120% at 10% 0%, rgba(99,188,163,.06), transparent 40%),
              var(--ws-card);
  border: 1px solid var(--ws-card-edge);
  border-radius: var(--ws-radius);
  box-shadow: var(--ws-shadow);
  padding: 60px;
  max-width: 1500px;
  margin: 0 auto 0 px;
}

/* Disable hover lift (so it stays static like a section) */
.about-card:hover {
  transform: none;
  border-color: var(--ws-card-edge);
  box-shadow: var(--ws-shadow);
}
.about-card::after { opacity: 0; }

/* Title */
.about-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--ws-accent-2), var(--ws-accent), var(--ws-accent-2));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite;
}

/* Paragraph text */
.about-text {
  font-size: 1rem;
  color: var(--ws-dim);
  line-height: 1.7;
  text-align: center;
 
  
}

/* Centered glowing line (optional) */
.animated-line {
  position: relative;
  width: 200px;
  height: 3px;
  margin: 50px auto 0;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border-radius: 5px;
}
.animated-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #55ee9f, #3eb7d2, transparent);
  animation: moveLight 2s linear infinite;
  border-radius: 5px;
}

/* Animation keyframes */
@keyframes moveLight {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* Responsive */
@media (max-width: 900px) {
  .about-card {
    padding: 30px;
    margin: 0 20px;
  }
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  .about-text {
    font-size: 1rem;
    text-align: left;
    text-align: center;
  }
}



/* ===== Our Services – Styles ===== */
:root{
  --ws-bg: black;
  --ws-card: #0f141b;
  --ws-card-edge: #1a222c;
  --ws-text: #e9f1ff;
  --ws-dim: #a8b3c7;
  --ws-accent: #3eb7d2;
  --ws-accent-2: #55ee9f;
  --ws-radius: 18px;
  --ws-shadow: 0 12px 30px rgba(0,0,0,.35);
  --panel-w: clamp(320px, 44vw, 620px);  /* width of the fixed iframe */
  --header-h: 80px;                      /* your fixed header height */
}


.ws-services{
  background: transparant;
  color: var(--ws-text);
  padding: 100px;
  z-index: 2;
  position: relative;
}
.ws-tag {
  display: inline-block;
    background: rgba(0, 116, 172, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    color: #55ee9f;
    margin-bottom: 20px;
    font-size: 0.9rem;
}


.ws-wrap{ max-width: 1200px; margin: 0 auto; }

.ws-head{
  text-align: center;
  margin-bottom: 28px;
  padding: 30px;
}

.ws-title {
  margin: 0 0 12px;
  font-size: 2.8rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: .2px;
  margin-top: 28px;
}

.ws-title span{
  background: linear-gradient(90deg, #55ee9f, #3eb7d2, #55ee9f); /* left to right */
  background-size: 200% 100%; /* wide enough for smooth scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite; /* continuous motion */
  
}

.ws-sub{
  margin: 0 auto;
  color: #bff7ea;
  font-size: 1.03rem;
  
}

/* grid */
.ws-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

/* card */
.ws-card{
  background: radial-gradient(120% 120% at 10% 0%, rgba(99,188,163,.06), transparent 40%),
              var(--ws-card);
  border: 1px solid var(--ws-card-edge);
  border-radius: var(--ws-radius);
  padding: 28px;
  box-shadow: var(--ws-shadow);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  isolation: isolate;
  overflow: hidden;
}


.ws-card::after{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: radial-gradient(60% 60% at 50% 0%, rgba(63,183,210,.14), transparent 60%);
  opacity:.0; transition: opacity .25s ease;
}

.ws-card:hover{
  transform: translateY(-4px);
  border-color: rgba(99,188,163,.35);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.ws-card:hover::after{ opacity:.8; }

.ws-card--glow{
  border-color: rgba(63,183,210,.35);
  box-shadow: 0 0 0 1px rgba(63,183,210,.12), var(--ws-shadow);
}


/* icon */
.ws-icon{
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 16px;
  color: #55ee9f;
  background: radial-gradient(100% 100% at 50% 40%, rgba(63,183,210,.25), rgba(63,183,210,.06));
  border: 1px solid rgba(63,183,210,.25);
}
.ws-icon svg{ width:28px; height:28px; display:block; }

/* text */
.ws-card-title{
  font-size: 18px;
  line-height: 1.25;
  margin: 2px 0 10px;
  font-weight: 800;
  letter-spacing:.2px;
}
.ws-card-desc{
  margin: 0;
  color: var(--ws-dim);
  font-size: 15px;
  line-height: 1.5;
}

.ws-services { 
  background: transparent; 
}

/* make sections transparent so 3D shows behind them */
.about-section,
.ws-services {
  background: transparent;
  position: relative;
  z-index: 2;           /* content above the 3D */
}

/* keep header above everything */
header { z-index: 5; }


/* ===== NAV BASE ===== */
#site-header{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 8%;
  background: rgba(0,0,0,.85);
  position: fixed; top:0; left:0; right:0;
  z-index: 100;
  
}

.nav-links{
  margin-left: auto;
  display: flex; gap: 30px; align-items: center;
}



/* ===== HAMBURGER BUTTON ===== */
.hamburger{
  display: none;              /* hidden on desktop */
  appearance: none;
   background: transparent; 
   border: 0; 
   padding: 6px;
  margin-left: auto; 
  cursor: pointer;
}
.hamburger-box{ 
  display:inline-block; 
  width:28px; 
  height:20px;
   position:relative; 
  }
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after{
  position:absolute; 
  left:0; right:0; height:2px;
   background: #55ee9f; 
   content:"";
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger-inner{ top:9px; }
.hamburger-inner::before{ top:-8px; }
.hamburger-inner::after{ top:8px; }

/* X state when open */
#site-header.open .hamburger-inner{ transform: rotate(45deg); }
#site-header.open .hamburger-inner::before{ transform: translateY(8px) rotate(90deg); }
#site-header.open .hamburger-inner::after{ transform: translateY(-8px) rotate(90deg); }

/* ============================
   FULL-SCREEN HAMBURGER MENU
   ============================ */
@media (max-width: 1300px){

  /* show the hamburger icon */
  .hamburger{
    display: inline-block;
    margin-left: auto;
    z-index: 999;
  }

  /* basic hamburger lines */
  .hamburger-box{ width: 28px; height: 20px; position: relative; }
  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after{
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: #55ee9f;
    content:"";
    transition: transform .3s ease, opacity .3s ease;
  }
  .hamburger-inner{ top: 9px; }
  .hamburger-inner::before{ top: -8px; }
  .hamburger-inner::after{ top: 8px; }

  /* turn into X when open */
  #site-header.open .hamburger-inner{
    transform: rotate(45deg);
  }
  #site-header.open .hamburger-inner::before{
    transform: translateY(8px) rotate(90deg);
  }
  #site-header.open .hamburger-inner::after{
    transform: translateY(-8px) rotate(90deg);
  }

  
  /* === FULL-SCREEN MENU PANEL === */
  .nav-links{
    position: fixed;
    inset: 0;                        /* full width + height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: rgba(0,0,0,0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: scale(1.05);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 998;
  }

  /* open state */
  #site-header.open .nav-links{
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    visibility: visible;
  }
  #site-header {
    background: rgba(0, 0, 0, 0.85) !important;
    
  }
}

  /* links inside menu */
  .nav-links a{
    font-size: 1.4rem;
    color: #55ee9f;
    text-decoration: none;
    font-weight: 600;
    transition: color .25s ease;
  }
  .nav-links a:hover{
    color: #fff;
  }

  /* hide accent bar on mobile */
  .nav-accent{ display:none; }

  /* prevent scroll when menu open */
  body.nav-lock{ overflow:hidden; }


  
/* Initial state: hidden and slightly shifted (animation)*/
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* When visible (add class via JS or scroll observer) */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: stagger effect using delay */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }







/* ===== business sectors (dark) ===== */
:root{
  --fw-bg: transparant;               /* section background */
  --fw-card: #0f141b;
  --fw-edge: #1a222c;
  --fw-text: #e9f1ff;
  --fw-dim:  #a8b3c7;
  --fw-accent: #3eb7d2
;       --fw-accent2:#55ee9f;        /* aqua */
  --fw-rad: 18px;
}

.fw-section{
  background: transparent;
  color: var(--fw-text);
  padding: 100px;
  position: relative;
  z-index: 2;

}

.fw-wrap{ max-width: 1200px; margin: 0 auto; }

.fw-head
{ text-align:center;
   margin-bottom: 28px;
  position: relative; 
display: block;

}
.fw-tag {
  display: inline-block;
    background: rgba(0, 116, 172, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    color: #55ee9f;
    margin-bottom: 20px;
    font-size: 0.9rem;
}



.fw-title {
 padding: 20px;
  font-size: 2.8rem;
  line-height: 1.05; font-weight: 800;
  padding-top: 30px;
}
.fw-title span{
  background: linear-gradient(90deg, #55ee9f, #3eb7d2, #55ee9f); /* left to right */
  background-size: 200% 100%; /* wide enough for smooth scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite; /* continuous motion */
}
.fw-sub{
  color: #bff7ea;
 
  font-size: 1.03rem;
}

/* grid */
.fw-grid{
  margin-top: 36px;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}

/* card */
.fw-card{
  display: block;
  background: radial-gradient(120% 120% at 10% 0%, rgba(99,188,163,.06), transparent 40%),
              var(--fw-card);
  border: 1px solid var(--fw-edge);
  border-radius: calc(var(--fw-rad) + 4px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  isolation: isolate;
}
.fw-card:hover{
  transform: translateY(-6px);
  border-color: rgba(99,188,163,.35);
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
}

/* media + overlays */
.fw-media{ margin:0; position:relative; aspect-ratio: 16/9; }
.fw-media img{
  width:100%; height:100%; object-fit: cover; display:block;
}

/* soft inner vignette and bottom fade for text */
.fw-media::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(120% 120% at 20% -10%, rgba(63,183,210,.18), transparent 40%),
    linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,0) 50%);
  pointer-events:none;
  z-index:1;
}

/* category pill */
.fw-pill{
  position:absolute; left:14px; top:14px; z-index:2;
  padding:6px 12px; border-radius:999px;
  font-size: 12px; font-weight: 600;
  color:#bfeef9; background: rgba(8,20,28,.55);
  border:1px solid rgba(99,188,163,.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* title caption */
.fw-caption{
  position:absolute; left:16px; bottom:12px; right:16px; z-index:2;
  color:#fff; font-weight: 800; font-size: clamp(16px, 1.8vw, 20px);
  text-shadow: 0 8px 30px rgba(0,0,0,.7);
}



/* Team Section */


.team{
  position: relative;
  padding: 120px 8% 80px;
  background: transparent;
  color: #d4fff0;
  isolation: isolate;
  z-index: 2;
}

/* subtle grid glow background */
.team::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 300px at 10% -10%, rgba(0,116,172,.25), transparent 60%),
              radial-gradient(600px 300px at 90% -10%, rgba(156,252,237,.15), transparent 60%);
  z-index:-1;
}

.team__head{
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}
.team__tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 14px; border-radius:999px;
  background: rgba(0,116,172,.18);
  color:#55ee9f; font-size:.9rem; margin-bottom:16px;
}
.team__head h2{
  background: linear-gradient(90deg, #55ee9f, #3eb7d2, #55ee9f); /* left to right */
  background-size: 200% 100%; /* wide enough for smooth scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite; /* continuous motion */
  font-size: 2.8rem;
}
.team__head h2 span{ -webkit-text-fill-color:transparent; }
.team__head p{ color:#bff7ea; font-size:1rem; }

/* Grid */
.team__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
}
@media (max-width: 1145px){
  .team__grid{ grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px){
  .team__grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 540px){
  .team__grid{ grid-template-columns: 1fr; }
}

/* Card */
.team-card{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(156,252,237,.12);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(6px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.team-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0,0,0,.5),
              0 0 0 1px rgba(156,252,237,.15) inset;
  border-color: rgba(156,252,237,.35);
}

/* Bulletproof image cover for team cards */
.team-card__photo{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #08141a;
  margin-bottom: 14px;
}

/* Force full bleed + eat sub-pixel gaps */
.team-card__photo img{
  position: absolute;
  inset: -1px;                         /* bleed 1px all around */
  width: calc(100% + 2px);
  height: calc(100% + 2px) !important; /* beats global img{height:auto} */
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
  backface-visibility: hidden;
}

/* Keep your hover zoom without revealing edges */
.team-card:hover .team-card__photo img{ transform: scale(1.05); transition: transform .5s ease; }

.team-card__photo img{ transform: translateZ(0); transition: transform .5s ease; }
.team-card:hover .team-card__photo img{ transform: scale(1.05); }

.team-card h3{
  font-size: 1.1rem;
  color:#eafff8;
  margin: 2px 0 4px;
}
.team-card .role{
  font-size:.92rem; 
  color:#9adbd0; 
  margin-bottom:10px;
}
.team-card .bio{
  font-size:.92rem; 
  color:#b6fff0; 
  line-height:1.45; 
  min-height: 44px;
}

/* Links */
.team-card__links{
  display:flex;
  gap:10px; 
  margin-top:14px;
}
.team-card__links a{
  width:36px; 
  height:36px; 
  display:grid;
   place-items:center;
  border-radius: 10px;
  border:1px solid rgba(156,252,237,.25);
  color:#9cfced; 
  text-decoration:none;
  transition: background .3s ease, color .3s ease, transform .2s ease, border-color .3s ease;
}
.team-card__links a:hover{
  background: linear-gradient(90deg,#3eb7d2,#55ee9f);
  color:#000; 
  border-color: transparent;
  transform: translateY(-2px);
}





/* News section */
.news{
  position:relative;
  padding:120px 8% 80px;
  background:transparent; 
  color:#d4fff0;
  z-index: 2;
}
.news__head{
   max-width:1100px;
    margin:0 auto 24px; }
.news__tag{
  display:inline-flex;
   align-items:center;
    gap:8px;
  padding:6px 14px;
   border-radius:999px;
  background:rgba(0,116,172,.18); color:#55ee9f; font-size:.9rem;
}
.news h2{
  font-size:clamp(28px,4vw,44px); 
  line-height:1.15;
   margin:10px 0 18px;
 background: linear-gradient(90deg, #55ee9f, #3eb7d2, #55ee9f); /* left to right */
  background-size: 200% 100%; /* wide enough for smooth scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite; /* continuous motion */
}
.news__controls{
  display:flex; 
  gap:16px;
   flex-wrap:wrap; 
   align-items:center;
  justify-content:space-between; 
  margin-top:8px;
}
.chip-group{ 
  display:flex;
   gap:10px; 
   flex-wrap:wrap; }
.chip{
  padding:8px 14px;
   border-radius:999px;
    border:1px solid rgba(156,252,237,.25);
  background:rgba(255,255,255,.02);
   color:#55ee9f; cursor:pointer;
  transition:background .25s,border-color .25s,transform .15s;
}
.chip:hover{ transform:translateY(-1px);
   border-color:rgba(156,252,237,.45); }
.chip.is-active{ 
  background:linear-gradient(90deg,#3eb7d2,#55ee9f); color:#000;
   border-color:transparent;
   }

.news__filters{ display:flex; gap:10px; align-items:center; }
.news__filters input[type="search"],
.news__filters select{
  background:rgba(255,255,255,.03);
  color:#eafff8; border:1px solid rgba(156,252,237,.2);
  padding:10px 12px; border-radius:10px; outline:none;
}
.news__filters input::placeholder{ color:#9adbd0; }

/* Grid */
.news__grid{
  display:grid; gap:22px; margin-top:24px;
  grid-template-columns:repeat(3,minmax(0,1fr));
}
@media (max-width:1145px){ .news__grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .news__grid{ grid-template-columns:1fr; } }

/* Card */
.news-card{
  display:flex; flex-direction:column; min-height:100%;
  border:1px solid rgba(156,252,237,.12);
  background:rgba(255,255,255,.02); border-radius:16px; overflow:hidden;
  transition:transform .3s, box-shadow .3s, border-color .3s;
}
.news-card:hover{
  transform:translateY(-4px);
  border-color:rgba(156,252,237,.35);
  box-shadow:0 12px 40px rgba(0,0,0,.45);
}
.news-card__media{
  aspect-ratio:16/9; background:#08141a; overflow:hidden;
}
.news-card__media img, .news-card__media iframe{
  width:100%; height:100%; object-fit:cover; display:block; border:0;
}
.news-card__body{ padding:14px 16px 16px; display:flex; flex-direction:column; gap:10px; }
.news-card__meta{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap; font-size:.85rem; color:#9adbd0;
}
.badge{
  padding:4px 10px; border-radius:999px; font-size:.78rem;
  border:1px solid rgba(156,252,237,.25); color:#9cfced;
}
.news-card h3{ font-size:1.05rem; color:#eafff8; line-height:1.35; }
.news-card p{ color:#b6fff0; font-size:.92rem; }
.news-card__footer{
  margin-top:auto; padding:0 16px 16px; display:flex; justify-content:space-between; align-items:center;
}
.news-card__link{
  color:#55ee9f; text-decoration:none; border-bottom:1px dashed rgba(156,252,237,.35);
}
.news__footer{ text-align:center; margin-top:24px; }





/* Contact */
#contact { scroll-margin-top: 100px; } /* offset for fixed header */
.contact{
  padding:120px 8% 80px; background:transparent; color:#d4fff0; position:relative;
  z-index: 2;
}
.contact__head{ text-align:center; max-width:900px; margin:0 auto 28px; }
.contact__tag{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 14px; border-radius:999px;
  background:rgba(0,116,172,.18); color:#55ee9f; font-size:.9rem;
}
.contact h2{
  margin:12px 0 8px; font-size:clamp(28px,4vw,44px); line-height:1.15;
  background: linear-gradient(90deg, #55ee9f, #3eb7d2, #55ee9f); /* left to right */
  background-size: 200% 100%; /* wide enough for smooth scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite; /* continuous motion */
}
.contact__grid{
  display:grid; grid-template-columns: 1.2fr .9fr; gap:28px; align-items:start;
}
@media (max-width:1145px){ .contact__grid{ grid-template-columns: 1fr; } }

.contact-form{
  border:1px solid rgba(156,252,237,.12);
  background:rgba(255,255,255,.02);
  border-radius:18px; padding:18px; backdrop-filter: blur(6px);
}
.contact-form .hp{ position:absolute; left:-9999px; }
.contact-form .row{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.contact-form .row--middle{ align-items:center; }
.contact-form label{ display:flex; flex-direction:column; gap:8px; }
.contact-form label.full{ grid-column:1/-1; }
.contact-form label span{ font-size:.92rem; color:#9adbd0; }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea{
  background:rgba(255,255,255,.03); color:#eafff8;
  border:1px solid rgba(156,252,237,.2);
  padding:12px 14px; border-radius:12px; outline:none;
  transition:border-color .25s, box-shadow .25s;
}
.contact-form textarea{ resize:vertical; }
.contact-form input:focus, .contact-form textarea:focus{
  border-color:#55ee9f; box-shadow:0 0 0 3px rgba(156,252,237,.18);
}

.contact-form .agree{ display:flex; flex-direction:row; gap:10px; }
.contact-form .agree input{ width:18px; height:18px; margin-top:2px; }

.form-status{ margin-top:10px; font-size:.92rem; min-height:1.2em; }
.form-status--ok{ color:#8fffdc; }
.form-status--err{ color:#ff9da6; }

/* Aside */
.contact-aside .cards{ display:grid; gap:12px; margin-bottom:14px; }
.contact-aside .card{
  display:flex; gap:12px; align-items:flex-start;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(156,252,237,.12);
  border-radius:16px; padding:14px;
}
.contact-aside .card i{ font-size:20px; color:#55ee9f; margin-top:2px; }
.contact-aside .card h3{ margin:0 0 4px; color:#eafff8; font-size:1rem; }
.contact-aside .card a, .contact-aside .card p{ color:#b6fff0; text-decoration:none; }

.map-wrap{
  margin-top:12px; border-radius:16px; overflow:hidden;
  border:1px solid rgba(156,252,237,.12);
  aspect-ratio: 16/10; background:#08141a;
}
.map-wrap iframe{ width:100%; height:100%; border:0; display:block; }

/* Buttons (uses your existing .btn, .primary) */
.btn.primary{
  background: linear-gradient(90deg, #3eb7d2, #55ee9f);
  color:#000; border:none; padding:12px 22px; border-radius:30px; font-weight:600;
  cursor: pointer;
}
.btn.primary:hover{ filter:brightness(1.05); transform:translateY(-2px); }




/* === FOOTER === */
.footer {
  position: relative;
  background: linear-gradient(180deg, #000 0%, #02161f 100%);
  color: #d4fff0;
  padding: 80px 8% 30px;
  overflow: hidden;
  z-index: 2;
}

/* --- GLOWING GRADIENT EFFECT --- */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 20% 10%, rgba(0,116,172,.25), transparent 60%),
              radial-gradient(600px 300px at 80% 100%, rgba(156,252,237,.15), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.footer * { position: relative; z-index: 1; }

/* --- MAIN GRID --- */
.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
}

/* --- TEXT & LINKS --- */
.footer__col h3 {
  font-size: 1.1rem;
  color: #55ee9f;
  margin-bottom: 15px;
}
.footer__col p {
  font-size: 0.95rem;
  color: #bff7ea;
  line-height: 1.6;
  max-width: 320px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
}
.footer__col ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.footer__col ul li i {
  margin-right: 10px;
  color: #55ee9f;
}
.footer__col a {
  color: #bff7ea;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__col a:hover {
  color: #55ee9f;
}

/* --- SOCIAL ICONS --- */
.social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(156,252,237,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #55ee9f;
  transition: all 0.3s;
}
.social a:hover {
  background: linear-gradient(90deg, #3eb7d2, #55ee9f);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(156,252,237,0.6);
}

/* --- FULL-WIDTH BOTTOM BAR --- */
.footer__bottom {
  width: 100vw;                /* ensures full-width line */
  margin-left: calc(-1 * 8%);  /* cancels section padding */
  border-top: 1px solid rgba(156,252,237,0.15);
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #9adbd0;
}
.footer__bottom a {
  color: #9cfced;
  text-decoration: none;
}
.footer__bottom a:hover {
  text-decoration: underline;
}


/*preloader*/
#preloader {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 99999;
}

.loader .cutout {
  width: 80px;
  height: 80px;
  border: 6px solid transparent;
  border-top: 6px solid #55ee9f;
  border-right: 6px solid #3eb7d2
;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#loading-text {
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  color: #55ee9f;
  font-weight: 600;
  letter-spacing: 1px;
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}






/* --- BASE: desktop --- */
#site-nav { display:flex; align-items:center; gap: 30px; }
.hamburger { display:none; }

/* Always solid header so no dim/fade during paint */
header { background:#000; }

/* --- PRE-HYDRATION (first paint protection) --- */
html.js:not(.hydrated) .hamburger { visibility:hidden; }      /* hide button briefly */
html.js:not(.hydrated) #site-nav { transition:none !important; }
html.js:not(.hydrated) .reveal { opacity:1 !important; transform:none !important; } /* stop fade */

/* --- MOBILE/TABLET ≤1300px --- */
@media (max-width:1300px){
  .hamburger { display:inline-flex; z-index:7; }

  /* Off-canvas by default, even before JS toggles anything */
  #site-nav{
    position:fixed; inset:0 auto 0  auto; top:0; right:0;
    width:min(320px,85vw);
    height:100vh;
    background:#0f141b;
    border-left:1px solid #1a222c;
    padding:100px 24px 24px;
    display:flex; flex-direction:column; gap:18px;
    transform:translateX(100%);           /* CLOSED by default */
    transition:transform .3s ease;        /* will be enabled after hydration */
    opacity:1;                            /* never fade */
    z-index:6;
  }

  /* When open */
  body.nav-open #site-nav { transform:none; }

  /* Prevent layout jump when menu opens */
  body.nav-open { overflow:hidden; }
}

/* Optional: if preloader exists, keep it from fading late */
#preloader { transition:none; }
