.gmb-section {
    padding: 40px 20px;
}

.gmb-container {
    max-width: 1200px;
    margin: auto;
}

.gmb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gmb-card {
    position: relative;
    padding: 30px 25px;
    border-radius: 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}

/* Glow color */
.gmb-card {
    --border-color: #00c6ff;
}

.gmb-card {
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

/* Hover effect */
.gmb-card:hover {
    border-color: #0d6efd;
    transform: translateY(-5px);
}


.gmb-card.active {
    border: 2px solid #0d6efd;
    background: rgba(13, 110, 253, 0.08);
}

/* Number */
.gmb-number {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 14px;
    color: #0d6efd;
    font-weight: 600;
}

/* Text */
.gmb-card p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
}


.gmb-card:hover::before {
    background: linear-gradient(135deg, #00e0ff, #3b82f6);
}

.gmb-card.active::before {
    background: linear-gradient(135deg, #00c6ff, #3b82f6);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.5);
}

.gmb-card:nth-child(1) {
    border-bottom: none;
}

.gmb-card:nth-child(2) {
    border-top: none;
}

.gmb-card:nth-child(3) {
    border-bottom: none;
}

.gmb-card:nth-child(4) {
    border-bottom: none;
}

.gmb-card:nth-child(5) {
    border-top: none;
}

.gmb-card:nth-child(6) {
    border-bottom: none;
}

/* Tablet */
@media (max-width: 992px) {
    .gmb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .gmb-grid {
        grid-template-columns: 1fr;
    }

    .gmb-card {
        padding: 25px 20px;
    }

    .gmb-card:not(:last-child) {
        border-bottom: none !important;
        border-top: 1px solid #00c6ff !important;
    }
}

.seo-invest-section {
    padding: 40px 20px;
}

.seo-container {
    max-width: 1200px;
    margin: auto;
}

.seo-title {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    font-size: 32px;
}

/* Grid */
.seo-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-top: 30px;
}

/* Card */
.seo-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s ease;
}

/* Hover */
.seo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.25);
    border-color: #00c6ff;
}

/* Image */
.seo-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Content */
.seo-card-content {
    padding: 20px;
}

.seo-card-content p {
    color: #fff;
    line-height: 1.6;
    text-align: center;
}

/* Tablet */
@media (max-width: 992px) {
    .seo-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .seo-card-grid {
        grid-template-columns: 1fr;
    }

    .seo-title {
        font-size: 24px;
    }
}

.spec-banner {
    background: url('../images/main/banner.png') center/cover no-repeat;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Overlay (dark blue gradient like image) */
.spec-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.spec-grid-section {
    padding: 20px;
}

.spec-container {
    max-width: 1200px;
    margin: auto;
    width: 100%;
    padding: 0 20px;
}

.spec-container h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.spec-item {
    padding: 25px 20px;
    color: #fff;
    position: relative;
    border-right: 1px solid rgba(0, 198, 255, 0.25);
}

.spec-item:nth-child(3n) {
    border-right: none;
}

.spec-item:nth-child(-n+3) {
    border-bottom: 1px solid rgba(0, 198, 255, 0.25);
}

.spec-inner {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.spec-icon img {
    width: 45px;
    min-width: 45px;
}

.spec-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #046EE4;
}

.spec-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #cfd8dc;
}

/* =========================
   HOVER EFFECT
========================= */
.spec-item:hover h4 {
    color: #00c6ff;
}

.spec-item:hover {
    background: rgba(0, 198, 255, 0.03);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-item:nth-child(2n) {
        border-right: none;
    }

    .spec-item:nth-child(-n+4) {
        border-bottom: 1px solid rgba(0, 198, 255, 0.25);
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .spec-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 198, 255, 0.25);
    }

    .spec-item:last-child {
        border-bottom: none;
    }

    .spec-inner {
        gap: 12px;
    }

    .spec-icon img {
        width: 40px;
    }
}


.pill-border {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  padding: 18px 25px;
  color: #fff;

  border-radius: 50px;

  /* 3 sides */
  border-top: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  border-left: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  border-right: none !important;

  background: rgba(0, 20, 40, 0.6) !important;
  backdrop-filter: blur(6px) !important;

  position: relative;
  overflow: hidden;
}

/* 🔥 Thin right edge glow (FIXED) */
.pill-border::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  height: 80%;
  width: 3px; /* VERY THIN */
  border-radius: 50px;
  pointer-events: none;
}
