* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  background: #070d1a;
  color: #eaeef7;
  line-height: 1.6;
}


/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.site-header {
  background: #0b1324;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  color: #f5b942;
  letter-spacing: 1px;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 25px;
}

.main-nav a {
  color: #cfd6e6;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #f5b942;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #fff;
}

.hamburger.active span:nth-child(1){
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(7,13,26,.88), rgba(7,13,26,.92)),
    url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
    rgba(245,185,66,.15),
    transparent 40%);
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero p {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #cfd6e6;
  font-size: 1.1rem;
}


.ad-box {
  background: #0b1324;
  border: 1px dashed rgba(245,185,66,.4);
  border-radius: 12px;
  color: #8893a9;
  text-align: center;
  padding: 30px;
  margin-top: 25px;
}

.ad-box.small {
  padding: 1rem;
}

/* ===== ABOUT CONTENT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 100px 0;
}

.about-text h2 {
  color: #f5b942;
  margin-bottom: 20px;
  font-size: 2rem;
}

.about-text p {
  color: #b6bfd1;
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  transition: .4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* ===== MISSION & VISION ===== */
.mission-vision {
  padding: 80px 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
}

.mv-card {
  background: #0b1324;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 35px;
  text-align: center;
  transition: .3s;
}

.mv-card:hover {
  transform: translateY(-8px);
  border-color: #f5b942;
}

.mv-card h3 {
  color: #f5b942;
  margin-bottom: 15px;
}

.mv-card p {
  color: #b6bfd1;
}

/* ===== CORE VALUES ===== */
.core-values {
  padding: 80px 0;
}

.core-values h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #f5b942;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.value-card {
  background: #0b1324;
  padding: 25px;
  border-radius: 15px;
  border-top: 4px solid #f5b942;
  transition: .3s;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card h4 {
  color: #f5b942;
  margin-bottom: 10px;
}

.value-card p {
  color: #b6bfd1;
}

.editorial-policy {
  padding: 80px 0;
}

.editorial-policy h2 {
  color: #f5b942;
  margin-bottom: 20px;
}

.editorial-policy p {
  color: #b6bfd1;
  margin-bottom: 15px;
}

/* ===== TEAM ===== */
.our-team {
  padding: 80px 0;
}

.our-team h2 {
  text-align: center;
  color: #f5b942;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.team-member {
  background: #0b1324;
  border-radius: 18px;
  overflow: hidden;
  transition: .3s;
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-member img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-member figcaption {
  padding: 20px;
}

.team-member h4 {
  color: #f5b942;
  margin-bottom: 8px;
}

.team-member p {
  color: #b6bfd1;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
  padding: 80px 0;
}

.why-choose-us h2 {
  color: #f5b942;
  margin-bottom: 30px;
}

.why-choose-us ul {
  list-style: none;
}

.why-choose-us li {
  background: #0b1324;
  border-left: 4px solid #f5b942;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ===== STATS SECTION ===== */

.stats {
    width: 90%;
    max-width: 1200px;
    margin: -60px auto 80px;
    position: relative;
    z-index: 20;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat {
    background: #0b1324;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 18px;

    padding: 35px 25px;
    text-align: center;

    transition: all .3s ease;
    overflow: hidden;
    position: relative;
}

.stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #f5b942,
        #ffcf6b
    );
}

.stat:hover {
    transform: translateY(-8px);
    border-color: rgba(245,185,66,.4);
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f5b942;
    margin-bottom: 10px;
}

.stat p {
    color: #b6bfd1;
    font-size: .95rem;
    letter-spacing: .5px;
}

/* ===== CALL TO ACTION ===== */
.cta {
  margin-top: 50px;
  padding: 90px 20px;
  text-align: center;

  background:
    linear-gradient(
      135deg,
      #f5b942,
      #e4a117
    );

  color: #070d1a;
}

.cta h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta p {
  max-width: 700px;
  margin: auto;
}


/* footer */

.site-footer{
  margin-top: 50px;
    background:#020d18;
    border-top:1px solid rgba(243,177,59,.15);
    padding-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.footer-grid h4{
    color:#f3b13b;
    margin-bottom:20px;
}

.footer-grid p,
.footer-grid li{
    color:#b8c4d1;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid ul li{
    margin-bottom:10px;
}

.footer-grid ul li a{
    color:#b8c4d1;
    text-decoration:none;
    transition:.3s;
}

.footer-grid ul li a:hover{
    color:#f3b13b;
}

.copyright{
    text-align:center;
    padding:25px;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.05);
    color:#8b9ab0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-content,
  .mv-grid,
  .values-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav{
   position:absolute;
   top:75px;
  left:0;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0;
   background: #0b1324;
  overflow:hidden;
  max-height:0;
  opacity:0;
  visibility:hidden;
  transition:
   max-height .45s ease,
    opacity .35s ease,
  visibility .35s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
   border-radius:0 0 20px 20px;
    }

    .main-nav.active{
        max-height:500px;
        opacity:1;
        visibility:visible;
    }

    .main-nav a{
        color:#fff;
        width:100%;
        text-align:center;
        padding:18px;
        font-size:17px;
        font-weight:600;
        transition:.5s;
    }

    .main-nav a:hover{
        padding-left:30px;
    }
}
