@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&display=swap');

/* ================= HERO BACKGROUND STYLE ================= */

.tw-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("images/Advertising.jpg") no-repeat right center;
    background-size: contain;
    background-color: #111;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

/* Dark Gradient Overlay */
.tw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 40%,
        rgba(0,0,0,0.5) 70%,
        rgba(0,0,0,0.1) 100%
    );
}

/* TEXT CONTENT */
.tw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
}

.tw-hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.tw-hero-content h1 span {
    color: #f4b400;
}

.tw-hero-content p {
    margin: 20px 0 35px;
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
}

/* BUTTONS */
.tw-hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #f4b400;
    color: #000;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #ffcc33;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid #f4b400;
    color: #f4b400;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #f4b400;
    color: #000;
}





/* FEATURES */
.features {
  padding: 80px 50px;
  text-align: center;
}

.features-header {
  max-width: 700px;
  margin: 0 auto 50px;
}

.features h2 {
  font-size: 36px;
  margin: 0;
}

.features h2 span {
  color: var(--yellow);
}

.subtitle {
  color: var(--muted);
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ 3 by 3 */
  gap: 50px;
}
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet */
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr; /* Mobile */
  }
}

.feature-card {
  background: white;
  padding: 50px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.feature-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 16px;
}

  /* ================================
   NORTH EAST PRESENCE – JIBON
================================ */

.ne-presence {
  background: #fafafa;
  padding: 80px 20px;
}

.ne-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.ne-header {
  text-align: center;
  margin-bottom: 50px;
}

.ne-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
}

.ne-header h2 span {
  color: #F4C430; /* Jibon yellow */
}

.ne-header p {
  margin-top: 12px;
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards Layout */
.ne-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.ne-card {
  background: #fff;
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.ne-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Icon */
.ne-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

/* City */
.ne-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* Status badge */
.status {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Active */
.status.active {
  background: rgba(244,196,48,0.2);
  color: #C69200;
}

/* Coming Soon */
.status.coming {
  background: #f0f0f0;
  color: #777;
}

/* Description */
.ne-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .ne-cards {
    grid-template-columns: 1fr;
  }
}

