* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  background: #000;
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
}
.container{
width: 90%;
}
/**Header**/
.header,.footer{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.logo img{
         width: 12.9rem;
         height: 3.2rem;
         max-width: fit-content;
}
.nav-flex{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    background-clip: border-box;
    border-radius: 8px;
}
.nav-flex a{
    color: #000;
    text-decoration: none;
}
.nav{
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item {
  position: relative;
  display: inline-block;
}
/* ===== MEGA MENU ===== */

.mega-menu {
  position: absolute;
  top: 100%; /* attaches directly below */

  left: 50%;
  transform: translateX(-50%) translateY(10px);

  width: 500px;

  background: #f5f5f5;
  padding: 20px;
  border-radius: 12px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.25s ease;
}

/* GRID */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ITEMS */
.mega-grid a {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #eaeaea;
  padding: 12px 14px;
  border-radius: 8px;

  color: #111;
  text-decoration: none;
  font-size: 14px;
}

/* ARROW STYLE */
.mega-grid .arrow {
  background: #D3A338;
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
}

/* HOVER EFFECT */
.mega-grid a:hover {
  background: #ddd;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* ===== MOBILE ===== */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}
.mobile-submenu{
  display: none;
}
/* Tablet + Mobile */
@media (max-width: 992px) {

  .menu-toggle {
    display: block;
    color: #000;
    z-index: 1001;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;

    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 80px 20px;
    gap: 20px;

    transition: 0.3s ease;
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav a,
  .nav span {
    font-size: 18px;
    width: 100%;
  }

  /* Hide desktop mega */
  .mega-menu {
    display: none !important;
  }

  /* Services block */
  .nav-item {
    width: 100%;
  }

  .nav-item > a {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  /* MOBILE SUBMENU */
  .mobile-submenu {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding-left: 10px;
  }

  .mobile-submenu a {
    font-size: 14px;
    color: #333;
  }

  .nav-item.active .mobile-submenu {
    display: flex;
  }

}


/***footer **/

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  background: #f5f5f5;
  color: #111;
  padding: 60px 0 30px;
  border-radius: 12px;
  padding: 20px;
}

/* LEFT */
.footer-left p {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.6;
}


/* SUBSCRIBE */
.subscribe-form {
  margin: 20px 0;
}

.subscribe-form input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
}

.subscribe-form button {
  width: 100%;
  background: #D3A338;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* LINKS */
.footer h4 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
   font-weight: 300;
}

/* SOCIAL */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  background: #111;
  color: #fff;
  padding: 8px;
  border-radius: 6px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
}



/****/


.section { padding: 80px 0; }
.container { width: 90%; margin: auto; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* HERO */
.about-hero h1 {
  font-size: 60px;
  line-height: 1.1;
}

/* IMAGE STACK */
.img-stack img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  border: 3px solid #ff5a3c;
}

/* STATS */
.stats-dark {
  background: #111;
  padding: 60px 0;
}

.stat-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
}

/* WHY BOX */
.why-box {
  background: #f5f5f5;
  color: #000;
  padding: 60px;
  border-radius: 15px;
}

/* CTA */
.cta-dark {
  background: #111;
  padding: 80px 0;
  text-align: center;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff5a3c;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}









.seo-hero { padding: 100px 0; }

.tag {
  background: #ff5a3c;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.btn-group { margin-top: 20px; }

.btn-outline {
  border: 1px solid #ff5a3c;
  color: #ff5a3c;
  padding: 10px 20px;
  margin-left: 10px;
}

.light-box {
  background: #f5f5f5;
  padding: 50px;
  border-radius: 15px;
}

.tabs button {
  display: block;
  margin-bottom: 10px;
  padding: 10px;
  background: #ddd;
  border: none;
}

.tabs .active {
  background: #0a5c4a;
  color: #fff;
}

.case-card {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.price-card {
  background: #0f2e2b;
  padding: 30px;
  border-radius: 10px;
}

.process {
  display: grid;
  grid-template-columns: repeat(5,1fr);
}

.cta-gradient {
  background: linear-gradient(135deg,#0f2e2b,#1b7a6b);
  padding: 80px 0;
}