/* ===== PAGE BANNER (reuse from gallery) ===== */
.page-banner {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--primary-dark) 100%);
  padding: 140px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s infinite ease-in-out alternate;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s infinite ease-in-out alternate-reverse;
}

.page-banner h1 {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.page-banner p {
  font-size: 17px;
  opacity: 0.8;
  max-width: 550px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.breadcrumb-custom li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-custom li a:hover {
  color: var(--accent-light);
}

.breadcrumb-custom li.active {
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-custom li.active::before {
  content: '›';
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  margin-right: 0;
}

/* ===== MAIN SECTION ===== */
.nts-main {
    padding: 80px 0 60px;
}

/* ===== ABOUT CARD ===== */
.nts-about-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
}

.nts-about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.nts-about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.nts-about-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px 0;
}

.nts-about-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(6, 182, 212, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.nts-about-header h4 {
    font-weight: 700;
    font-size: 20px;
    color: var(--navy-dark);
    margin: 0;
}

.nts-about-header h4::after {
    display: none;
}

.nts-about-header small {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.nts-about-body {
    padding: 24px 32px 32px;
}

.nts-about-body > p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Highlights */
.nts-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.nts-hl-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.02);
    transition: background 0.3s ease;
}

.nts-hl-item:hover {
    background: rgba(13, 148, 136, 0.04);
}

.nts-hl-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.nts-hl-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    color: #3b82f6;
}

.nts-hl-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    color: #10b981;
}

.nts-hl-item h6 {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy-dark);
    margin: 0 0 3px;
}

.nts-hl-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* ===== INFO CARD ===== */
.nts-info-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.nts-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.nts-info-header {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.04), rgba(6, 182, 212, 0.02));
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nts-info-header i {
    font-size: 18px;
    color: var(--primary);
}

.nts-info-header h5 {
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-dark);
    margin: 0;
}

.nts-info-header h5::after {
    display: none;
}

.nts-info-body {
    padding: 8px 16px;
}

.nts-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    gap: 12px;
}

.nts-info-row:last-child {
    border-bottom: none;
}

.nts-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.nts-value {
    font-size: 14px;
    color: var(--navy-dark);
    font-weight: 700;
    text-align: right;
}

/* ===== MEMBER CARD ===== */
.nts-member-card {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.06), rgba(6, 182, 212, 0.04));
    border: 1px solid rgba(13, 148, 136, 0.12);
    border-radius: var(--radius);
    transition: all 0.4s ease;
}

.nts-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.1);
}

.nts-member-inner {
    padding: 28px 24px;
    text-align: center;
}

.nts-member-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin: 0 auto 14px;
}

.nts-member-card h5 {
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.nts-member-card h5::after {
    display: none;
}

.nts-member-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.nts-member-card strong {
    color: var(--primary);
}

.nts-member-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nts-member-link:hover {
    gap: 10px;
    color: var(--accent);
}

/* ===== DARK SECTION — CURRICULUM ===== */
.nts-dark-section {
    padding: 80px 0;
}

/* Year Cards */
.year-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    height: 100%;
}

.year-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.year-badge {
    display: inline-flex;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    margin-bottom: 12px;
}

.year-badge.yr2 {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.year-badge.yr3 {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.year-title {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.year-modules {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mod-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.mod-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mod-item i {
    width: 18px;
    text-align: center;
    font-size: 13px;
    color: var(--accent-light);
    flex-shrink: 0;
}

.mod-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* ===== ADMISSION SECTION ===== */
.nts-admission {
    padding: 80px 0 60px;
}

/* Requirements Card */
.req-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.req-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.req-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.04), rgba(6, 182, 212, 0.02));
}

.req-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(6, 182, 212, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.req-card-header h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--navy-dark);
    margin: 0;
}

.req-card-header h4::after {
    display: none;
}

.req-card-header small {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.req-card-body {
    padding: 20px 24px;
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 10px;
    border-radius: 12px;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.req-list li:last-child {
    border-bottom: none;
}

.req-list li:hover {
    background: rgba(13, 148, 136, 0.04);
}

.req-check {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(6, 182, 212, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.req-list li span {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.req-list li strong {
    color: var(--navy-dark);
}

/* Steps Card */
.steps-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.steps-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.steps-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.04), rgba(251, 191, 36, 0.02));
}

.steps-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(251, 191, 36, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #f59e0b;
    flex-shrink: 0;
}

.steps-header h4 {
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-dark);
    margin: 0;
}

.steps-header h4::after {
    display: none;
}

.steps-body {
    padding: 16px 24px;
}

.step-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 8px;
    position: relative;
}

.step-row::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 46px;
    width: 2px;
    height: calc(100% - 20px);
    background: rgba(245, 158, 11, 0.15);
}

.step-row:last-child::after {
    display: none;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-num.last {
    background: linear-gradient(135deg, #10b981, #059669);
}

.step-row h6 {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy-dark);
    margin: 0 0 3px;
}

.step-row p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* ===== FEE CARD ===== */
.fee-card-nts {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.fee-card-nts:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.fee-nts-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(139, 92, 246, 0.02));
}

.fee-nts-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6366f1;
    flex-shrink: 0;
}

.fee-nts-header h4 {
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-dark);
    margin: 0;
}

.fee-nts-header h4::after {
    display: none;
}

.fee-nts-header small {
    font-size: 12px;
    color: #94a3b8;
}

.fee-nts-body {
    padding: 16px 24px 24px;
}

.fee-nts-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.fee-nts-row.total {
    border-top: 2px solid var(--primary);
    border-bottom: none;
    margin-top: 10px;
    padding-top: 16px;
}

.fee-nts-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.fee-nts-row.total .fee-nts-label {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 15px;
}

.fee-nts-amount {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy-dark);
}

.fee-nts-amount.total-amount {
    font-size: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fee-nts-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(13, 148, 136, 0.04);
    border: 1px solid rgba(13, 148, 136, 0.08);
    margin-top: 16px;
}

.fee-nts-note i {
    color: var(--primary);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.fee-nts-note span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

/* ===== FACILITIES CARD ===== */
.nts-fac-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.nts-fac-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.nts-fac-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nts-fac-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #10b981;
    flex-shrink: 0;
}

.nts-fac-header h4 {
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-dark);
    margin: 0;
}

.nts-fac-header h4::after {
    display: none;
}

.nts-fac-body {
    padding: 16px 20px;
}

.fac-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.fac-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.fac-item:hover {
    background: rgba(16, 185, 129, 0.04);
}

.fac-item i {
    font-size: 14px;
    color: #10b981;
    width: 18px;
    text-align: center;
}

.fac-item span {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

/* ===== NTS CONTACT CARD ===== */
.nts-contact-card {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.nts-contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.nts-contact-inner {
    padding: 32px 28px;
    text-align: center;
    position: relative;
}

.nts-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin: 0 auto 16px;
}

.nts-contact-card h4 {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
}

.nts-contact-card h4::after {
    display: none;
}

.nts-contact-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.nts-contact-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.nts-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #fff;
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nts-call-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-dark);
}

.nts-call-btn.outline {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.nts-call-btn.outline:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.nts-call-btn i {
    font-size: 12px;
}

/* ===== DOWNLOAD BUTTON ===== */
.nts-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(13, 148, 136, 0.25);
    transition: all 0.3s ease;
}

.nts-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(13, 148, 136, 0.35);
    color: #fff;
}

.nts-download-btn i {
    transition: transform 0.3s ease;
}

.nts-download-btn:hover i {
    transform: translateY(2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .nts-main {
        padding: 60px 0 50px;
    }

    .nts-about-header {
        padding: 22px 24px 0;
    }

    .nts-about-body {
        padding: 20px 24px 28px;
    }

    .year-card {
        padding: 28px 20px;
    }

    .nts-admission {
        padding: 60px 0 50px;
    }

    .nts-contact-btns {
        flex-direction: column;
    }

    .nts-call-btn {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .nts-about-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 18px 0;
        gap: 10px;
    }

    .nts-about-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .nts-about-header h4 {
        font-size: 18px;
    }

    .nts-about-body {
        padding: 18px 18px 24px;
    }

    .nts-about-body > p {
        font-size: 13px;
    }

    .nts-hl-item {
        padding: 12px;
        gap: 10px;
    }

    .nts-hl-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .nts-hl-item h6 {
        font-size: 13px;
    }

    .nts-hl-item p {
        font-size: 12px;
    }

    .nts-info-header {
        padding: 16px 18px;
    }

    .nts-info-row {
        padding: 12px 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .nts-value {
        text-align: left;
    }

    .nts-member-inner {
        padding: 22px 18px;
    }

    .year-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .year-badge {
        font-size: 11px;
        padding: 4px 14px;
    }

    .year-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .mod-item {
        padding: 8px 10px;
        gap: 10px;
    }

    .mod-item span {
        font-size: 13px;
    }

    .req-card-header {
        padding: 18px 20px;
        gap: 12px;
    }

    .req-card-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .req-card-header h4 {
        font-size: 16px;
    }

    .req-card-body {
        padding: 14px 16px;
    }

    .req-list li {
        padding: 10px 6px;
        gap: 10px;
    }

    .req-list li span {
        font-size: 13px;
    }

    .req-check {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }

    .steps-header {
        padding: 18px 20px;
    }

    .steps-body {
        padding: 12px 18px;
    }

    .step-row {
        gap: 12px;
        padding: 12px 4px;
    }

    .step-num {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .step-row h6 {
        font-size: 13px;
    }

    .step-row p {
        font-size: 12px;
    }

    .step-row::after {
        left: 15px;
        top: 44px;
    }

    .fee-nts-header {
        padding: 18px 20px;
    }

    .fee-nts-body {
        padding: 12px 18px 20px;
    }

    .fee-nts-row {
        padding: 10px 6px;
    }

    .fee-nts-label {
        font-size: 13px;
    }

    .fee-nts-amount {
        font-size: 14px;
    }

    .fee-nts-amount.total-amount {
        font-size: 18px;
    }

    .fac-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .fac-item {
        padding: 8px 10px;
        gap: 8px;
    }

    .fac-item span {
        font-size: 12px;
    }

    .nts-contact-inner {
        padding: 28px 20px;
    }

    .nts-download-btn {
        padding: 14px 32px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .nts-about-card {
        border-radius: 18px;
    }

    .nts-info-card {
        border-radius: 18px;
    }

    .nts-member-card {
        border-radius: 18px;
    }

    .req-card {
        border-radius: 18px;
    }

    .req-card-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .steps-card {
        border-radius: 18px;
    }

    .fee-card-nts {
        border-radius: 18px;
    }

    .fee-nts-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 8px;
    }

    .fee-nts-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .fee-nts-row.total {
        flex-direction: row;
        align-items: center;
    }

    .nts-fac-card {
        border-radius: 18px;
    }

    .fac-grid {
        grid-template-columns: 1fr;
    }

    .nts-contact-card {
        border-radius: 18px;
    }

    .nts-contact-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .nts-contact-card h4 {
        font-size: 16px;
    }

    .nts-download-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
}



/* ===== TENDER INFO CARD (Dark Section) ===== */

     .about-section {
        background: linear-gradient(160deg, var(--navy-dark), var(--navy), var(--primary-dark));
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .about-glass {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        padding: 40px;
    }

    .about-feature {
        display: flex;
        gap: 16px;
        margin-bottom: 28px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.2));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--accent-light);
        flex-shrink: 0;
    }

    .about-feature h6 {
        font-weight: 600;
        margin-bottom: 4px;
    }

    .about-feature p {
        font-size: 14px;
        opacity: 0.7;
        margin: 0;
    }
    
    /* ===== TENDER INFO CARD (Dark Section) ===== */


.tender-info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.tender-info-header {
  background: rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tender-info-header i {
  font-size: 20px;
  color: var(--accent-light);
}

.tender-info-header h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.tender-info-header h5::after {
  display: none;
}

.tender-info-body {
  padding: 8px 0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 12px;
}

.info-row:last-child {
  border: none;
}

.info-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.info-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-align: right;
}

.tender-info-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-tender-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.2));
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 14px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-tender-contact:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}


/* =====  ===== */

 .about-section {
        background: linear-gradient(160deg, var(--navy-dark), var(--navy), var(--primary-dark));
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .about-glass {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        padding: 40px;
    }

    .about-feature {
        display: flex;
        gap: 16px;
        margin-bottom: 28px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.2));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--accent-light);
        flex-shrink: 0;
    }

    .about-feature h6 {
        font-weight: 600;
        margin-bottom: 4px;
    }

    .about-feature p {
        font-size: 14px;
        opacity: 0.7;
        margin: 0;
    }
    
    