*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0c1014;
  --surface: #151b22;
  --surface-2: #1c242e;
  --line: rgba(212, 175, 55, 0.22);
  --gold: #d4af37;
  --gold-soft: #f0d78c;
  --cyan: #3ec8d8;
  --text: #f3f5f7;
  --muted: #a8b0ba;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background: #008b8b;   var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  z-index: 100;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:#2f4f4f;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: -1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: orange;
 font-weight : bold;
}

.menu ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

.menu a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--bg);
  background: gold; var(--gold);
}

.nav-toggle-btn {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.hero,
.about,
.services,
.partners,
.footer-grid,
.copyright {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0 48px;
}

.eyebrow {
  color: red;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow : 1px 0px 0px #ffff; 
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

 h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
  font-family : sans-serif;
 text-shadow : 2px 1px 0px #000;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
 
}

.lede {
  color: #fff; var(--muted);
  font-size: 1.08rem;
  max-width: 38ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: orange;
  color: #000; #16120a;
}

.btn-primary:hover {
  background: gold;
  color:navy;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: #000; var(--text);
  background:aqua;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-visual,
.about-visual,
.footer-visual,
.banner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-visual img,
.about-visual img,
.footer-visual img,
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 56px;
  height: 320px;
}

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 72px;
}

.about-copy h2{
                      text-shadow : 1px 1px  blue;
                      color: #fff; 
             }

.about-copy p{
             color : white;
             border: 2px solid orange;
             width: 20%;
            text-align : center;
            border-radius : 10px; 
    }
.about-facts {
  display: grid;
  gap: 16px;
  margin: 8px 0 28px;
}

.about-facts div {
  background: teal;  var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  border-top : 1px solid #000;
}

.about-facts dt {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-facts dd {
  color: var(--text);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mission-grid article {
  background: teal; var(--surface-2);
  border-radius: 12px;
  padding: 18px;
  border-top: 3px solid var(--gold);
 border-bottom :1px solid navy;
}

.mission-grid h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;

}

.mission-grid p{
                  border:none;
                  width: auto;
                  text-align:left;        
          }
.mission-grid p,
.partner-card p {
  color:#fff; var(--muted);
  font-size: 0.95rem;
 
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2{
                  font-family:sans-serif;
                  text-shadow : 2px 2px 2px blue;
                  font-size : 25px; 
 } 
.service-grid,
.partner-grid {
  display: grid;
  gap: 20px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 72px;
  cursor:pointer; 
}

.card,
.partner-card {
  background: #2f4f4f; var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.partner-card:hover {
  transform: translateY(-4px);
  border-color: 5px 5px 5px var(--gold);
}

.card h3 a {
  color: orange; var(--gold);
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--gold-soft);
}

.card ul {
  list-style: none;
  margin-top: 18px;
}

.card li {
  color: #fff;  var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.card li:last-child {
  border-bottom: 0;
}

.partner-grid {
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 72px;
  cursor:pointer; 
}

.partner-card h3 {
  margin-bottom: 8px;
  color: orange; 
}

.footer {
  background:#2f4f4f;  #0a0d11;
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
}

.contact-panel h2{
             text-shadow : 2px 2px 2px blue;
             font-size : 24px;
     }

.contact-panel p{
                      color: red;
                      border: none;
                      width: 35%;
                      text-align : center;
                     border-radius : 10px; 
                     font-family : sans-serif;
                     font-weight: bold;
                     background : transparent; 
                     text-shadow : 0.5px 0px 0px white;
            }
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-list {
  list-style: none;
  margin: 8px 0 24px;
}

.contact-list li {
  margin-bottom: 16px;
}

.contact-list span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--gold);
}

.copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

#contact .copyright{
       text-align : center; 
   } 

@media (max-width: 1024px) {
  .hero,
  .about,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .banner {
    height: 220px;
  }

  .service-grid,
  .partner-grid,
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle-btn {
    display: grid;
  }

  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .nav-toggle:checked ~ .menu {
    display: block;
  }

  .menu ul {
    flex-direction: column;
    padding: 12px;
  }

  .hero {
    padding-top: 36px;
  }

  .service-grid,
  .partner-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }
}
