/* ================= GLOBAL ================= */
body {
  margin: 0;
  font-family: Inter, Arial;
  background: #0b0f14;
  color: #fff;
}

a { text-decoration: none; color: #f0b90b; }

/* ================= HEADER / FOOTER ================= */
header, footer {
  background: #000;
  border-bottom: 1px solid #f0b90b;
}

.bar {
  max-width: 1200px;
  margin: auto;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= BRAND LOGO (FIXED) ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-icon{
  width: 46px;     /* ← change size here */
  height: 46px;
  object-fit: contain;
}

/* text beside logo */
.logo-yellow{
  color:#f5c400;
  font-size:28px;
}

.logo-white{
  color:#ffffff;
  font-size:28px;
}

/* ===== Fix Header Logo Size ===== */
header .logo-icon{
  width: 50px;
  height: 50px;
}

header .bar{
  padding: 20px 14px;   /* increase header height */
}

/* ===== Footer Logo (keep smaller if needed) ===== */
footer .logo-icon{
  width: 46px;
  height: 46px;
}
/* ================= NAV ================= */
nav a { margin: 0 12px; color: #fff; }
.icons a { margin-left: 10px; }

/* ================= CATEGORY BUTTONS ================= */
.categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

.cat-btn {
  background: transparent;
  border: 1px solid #f5c400;
  color: #f5c400;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cat-btn.active,
.cat-btn:hover {
  background: #f5c400;
  color: #000;
}

/* ================= FILTERS ================= */
.filters {
  text-align: center;
  padding-bottom: 20px;
}

select {
  background: #000;
  color: #f5c400;
  border: 1px solid #f5c400;
  padding: 8px;
  margin: 0 5px;
}

/* ================= GRID ================= */
.grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

/* ================= CARD ================= */
.card {
  position: relative;
  background: #0e1218;
  border-radius: 14px;
  padding: 18px;
  box-shadow:
    0 0 0 1px #f5c400 inset,
    0 0 20px rgba(240,185,11,.15);
}

/* ================= ACTION BADGE ================= */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}

.badge.Buy { background: #2ecc71; color: #000; }
.badge.Sell { background: #ff4d4f; color: #fff; }
.badge.Closed { background: #bfbfbf; color: #000; }

/* ================= CATEGORY BADGE ================= */
.cat-badge {
  position: absolute;
  top: 44px;
  left: 12px;
  border: 1px solid #f5c400;
  color: #f5c400;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
}

/* ================= PROJECT LOGO ================= */
.project-logo {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  font-weight: 800;   /* STRONG */
  letter-spacing: 1px;
}

.logo-yellow {
  color: #f5c400;
}

.logo-white {
  color: #ffffff;
}

/* ================= CARD TEXT ================= */
.card h3 {
  margin-top: 60px;
  color: #f5c400;
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  margin-top: 10px;
  background: #f5c400;
  color: #000;
  padding: 6px 14px;
  border-radius: 8px;
}

/* ================= PAGINATION ================= */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
}

.pagination button {
  background: transparent;
  border: 1px solid #f5c400;
  color: #f5c400;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.pagination button.active,
.pagination button:hover {
  background: #f5c400;
  color: #000;
}

/* ================= Icons================= */
.icons {
  display: flex;
  align-items: center;   /* vertical alignment */
  gap: 14px;
}

.icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5c400;
  font-size: 16px;
  line-height: 1;
}

.icons img {
  width: 16px;
  height: 16px;
  display: block;
}


/* ===== About Page Styling ===== */

.page-section{
  padding:90px 20px;
  background:#0b0f14;
  color:#fff;
}

.container{
  max-width:1100px;
  margin:auto;
}

.page-title{
  font-size:52px;   /* bigger */
  font-weight:700;
  color:#ffcc00;
  margin-bottom:14px;
}

.page-subtitle{
  opacity:.8;
  margin-bottom:50px;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-bottom:50px;
}

.about-card{
  background:#111722;
  border:1px solid #ffcc00;
  border-radius:14px;
  padding:30px;
  transition:.25s;
}

.about-card:hover{
  transform:translateY(-6px);
  box-shadow:0 0 20px rgba(255,204,0,.25);
}

.about-card h3{
  color:#ffcc00;
  margin-bottom:15px;
}

.btn-primary{
  background:#ffcc00;
  color:#000;
  padding:14px 26px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

/* mobile */
@media(max-width:768px){
  .about-grid{
    grid-template-columns:1fr;
  }
}

.stats{
  display:flex;
  justify-content:space-around;
  margin:60px 0;
  text-align:center;
}

.stats h2{
  color:#ffcc00;
  font-size:32px;
  margin-bottom:6px;
}


/* ===== Contact Professional Layout ===== */

.contact-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:30px;
}

.deal-form{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-top:15px;
}

/* stacked fields */
.deal-form input,
.deal-form textarea{
  width:100%;
  background:#0b0f14;
  border:1px solid #ffcc00;
  color:#fff;
  padding:14px;
  border-radius:10px;
  font-size:14px;
}

.deal-form textarea{
  min-height:120px;
  resize:none;
}

/* full width buttons */
.btn-full{
  width:100%;
  text-align:center;
  margin-top:6px;
}

/* Telegram */
.btn-telegram{
  background:#229ED9;
  color:#fff;
  padding:14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  display:block;
  margin-bottom:12px;
}

/* WhatsApp */
.btn-whatsapp{
  background:#25D366;
  color:#000;
  padding:14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  display:block;
  margin-bottom:12px;
}

/* Email */
.btn-email{
  background:#ffcc00;
  color:#000;
  padding:14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  display:block;
}

.btn-primary:hover,
.btn-telegram:hover,
.btn-whatsapp:hover,
.btn-email:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
  transition:.2s;
}

/* mobile */
@media(max-width:768px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}

/*====Project Page ======*/

.project-wrapper {
  padding: 60px 40px;
  background: #0b0f14;
  color: #fff;
}

.project-card {
  display: flex;
  gap: 40px;
  background: #11161c;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #222;
  align-items: flex-start;
}

.project-left img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background: #000;
  padding: 20px;
  border-radius: 12px;
}

.project-right {
  flex: 1;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.status.available {
  background: #1ecb4f;
  color: #000;
}

.status.sold {
  background: #ff3b3b;
  color: #fff;
}

.stage {
  display: inline-block;
  margin-top: 10px;
  background: gold;
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.token {
  margin: 15px 0;
  font-size: 18px;
}

.market-buttons {
  margin-bottom: 20px;
}

.market-btn {
  display: inline-block;
  padding: 8px 18px;
  margin-right: 10px;
  background: #1e2a38;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid gold;
}

.market-btn:hover {
  background: gold;
  color: #000;
}

.deal-box {
  padding: 20px;
  background: #0d1218;
  border-left: 4px solid gold;
  border-radius: 8px;
  margin-bottom: 20px;
}

.description {
  color: #ccc;
  line-height: 1.6;
}

/* CONTACT BUTTONS */
.contact-section {
  margin-top: 40px;
  text-align: center;
}

.contact-btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 10px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.contact-btn.telegram {
  background: #0088cc;
}

.contact-btn.whatsapp {
  background: #25D366;
}

.contact-btn:hover {
  opacity: 0.8;
}
.title-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* CATEGORY BADGE BASE */
.category {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* CATEGORY COLORS */

.category.equity {
  background: #4CAF50;
  color: #fff;
}

.category.acquisition {
  background: #9C27B0;
  color: #fff;
}

.category.loan {
  background: #2196F3;
  color: #fff;
}

.category.listing {
  background: #FF9800;
  color: #000;
}

.category.mm {
  background: #E91E63;
  color: #fff;
}

.category.btc {
  background: #f7931a;
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .project-card {
    flex-direction: column;
    text-align: center;
  }

  .top-row {
    flex-direction: column;
    gap: 10px;
  }

  .project-left img {
    margin: auto;
  }
}