* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7f6;
    color: #1e293b;
}
section {
    scroll-margin-top: 50px;
}
/* HIDE hamburger on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff; /* important so it doesn't become transparent */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between; /* pushes logo left & links right */
    height: 80px;
}
.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}
.logo img {
    height: 60px;
    object-fit: contain;
}
/* HERO */
.hero {
    background: linear-gradient(to bottom, #dbeee8, #eaf5f1);
    padding: 80px 0;
    text-align: center;
}

.badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 40px;
    color: #4caf8d;
    margin-bottom: 20px;
}

.desc {
    max-width: 800px;
    margin: auto;
    color: #4b5563;
    margin-bottom: 10px;
}

.desc span {
    color: #4caf8d;
    font-weight: 600;
}

.sub-desc {
    max-width: 750px;
    margin: 15px auto 30px;
    color: #6b7280;
}
.footer-credit {
    margin-top: 12px;
    font-size: 13px;
    color: #64748b;
}

.footer-credit a {
    color: #6ee7b7;
    text-decoration: none;
    border-bottom: 1px solid rgba(110, 231, 183, 0.4);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: #10b981;
    border-color: #10b981;
}
.btn {
    background: #4caf8d;
    color: white;
    border: none;
    padding: 14px 26px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

.btn:hover {
    background: #3e9779;
}

/* CARDS */
/* .features {
    margin-top: -60px;
    padding-bottom: 60px;
} */

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin: 15px 0 10px;
    font-size: 18px;
}

.card p {
    color: #6b7280;
    font-size: 14px;
}

/* ICONS */
.icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.green { background: #10b981; }
.blue { background: #3b82f6; }
.purple { background: #8b5cf6; }
.orange { background: #f59e0b; }


/* ABOUT SECTION */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

/* HEADER */
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    font-size: 36px;
    margin: 15px 0;
}

.underline {
    width: 60px;
    height: 4px;
    background: #4caf8d;
    margin: auto;
    border-radius: 2px;
}

/* CONTENT */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.about-text {
    flex: 1;
}

.about-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-title h3 {
    font-size: 22px;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-text span {
    color: #4caf8d;
    font-weight: 600;
}

/* RIGHT CARDS */
.about-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h4 {
    font-size: 32px;
    margin: 10px 0;
}

.about-card p {
    color: #6b7280;
}
/* EXPERIENCE SECTION */
.experience {
    padding: 80px 0;
    background: #f5f7f6;
}

/* HEADER */
.exp-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 50px;
}

.exp-header h2 {
    font-size: 36px;
    margin: 10px 0;
}

.exp-header h4 {
    margin-top: 20px;
    font-size: 20px;
}

.exp-header p {
    color: #6b7280;
    margin-top: 10px;
}

/* GRID */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.exp-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.exp-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.exp-img {
    position: relative;
    height: 220px;
}

.exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

/* ICON */
.exp-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* CONTENT */
.exp-content {
    padding: 20px;
    color: #6b7280;
    font-size: 14px;
}

/* CERTIFICATIONS */
.certifications {
    padding: 80px 0;
    background: #f8fafc;
}

/* HEADER */
.cert-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 50px;
}

.cert-header h2 {
    font-size: 36px;
    margin: 10px 0;
}

.cert-header h4 {
    margin-top: 20px;
    font-size: 20px;
}

.cert-header p {
    color: #6b7280;
    margin-top: 10px;
}

/* GRID */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* CARD */
.cert-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

/* subtle circle bg */
.cert-card::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 120px;
    height: 120px;
    background: #e6f4ef;
    border-radius: 50%;
}

/* text */
.cert-card span {
    font-weight: 600;
}

/* PREMIUM CERT SECTION */
.premium-cert {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fafc, #eef6f3);
}

/* GRID */
.cert-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.cert-premium-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.cert-premium-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: #e6f4ef;
    border-radius: 50%;
}

.cert-premium-card:hover {
    transform: translateY(-8px);
}

/* TITLE */
.cert-premium-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #1f2937;
}

/* LIST */
.cert-premium-card ul {
    list-style: none;
    padding: 0;
}

.cert-premium-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #4b5563;
}

.cert-premium-card li:last-child {
    border-bottom: none;
}

/* HIGHLIGHT */
.cert-premium-highlight {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ITEM */
.highlight-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.highlight-item i {
    font-size: 28px;
    color: #4caf8d;
    margin-bottom: 10px;
}

.highlight-item:hover {
    transform: translateY(-5px);
}
/* DOCUMENTS SECTION */
.docs-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f3f6f5, #e8eeec);
}

/* HEADER */
.docs-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 50px;
}

.docs-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

.docs-header h2 {
    font-size: 36px;
    margin: 10px 0;
}

.docs-underline {
    width: 60px;
    height: 4px;
    background: #4caf8d;
    margin: 10px auto 20px;
    border-radius: 2px;
}

.docs-header h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.docs-header p {
    color: #6b7280;
}

/* GRID */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.docs-card {
    background: #4b5563;
    color: #fff;
    padding: 30px;
    border-radius: 18px;
    transition: 0.3s;
}

.docs-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.docs-icon {
    width: 55px;
    height: 55px;
    background: #10b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 22px;
}

.docs-icon.small {
    width: 45px;
    height: 45px;
}

/* TEXT */
.docs-card h3 {
    margin-bottom: 8px;
}

.docs-meta {
    display: inline-block;
    background: #6ee7b7;
    color: #064e3b;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 10px;
}

.docs-card p {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 20px;
}

/* BUTTON */
.docs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6ee7b7;
    text-decoration: none;
    font-weight: 500;
}

/* HIGHLIGHT BOX */
.docs-highlight {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    background: #eef6f3;
    border: 1px solid #dbeee8;
    padding: 25px;
    border-radius: 18px;
}

.docs-highlight h3 {
    margin-bottom: 8px;
}

.docs-highlight p {
    color: #6b7280;
}
/* FOOTER */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #cbd5f5;
    padding: 80px 0 30px;
    position: relative;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
}

/* LEFT */
.footer-logo {
    width: 80px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #94a3b8;
    margin-bottom: 20px;
}

.footer-trust {
    color: #6ee7b7;
    font-size: 14px;
}

.footer-trust .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #6ee7b7;
    border-radius: 50%;
    margin-right: 8px;
}

/* CONTACT */
.footer-contact h3,
.footer-links h3 {
    margin-bottom: 20px;
    color: #fff;
}
.footer-links ul a {
    list-style: none;
    text-decoration: none;
    color: #94a3b8;
    transition: 0.3s;
}
.footer-links ul a:hover {
    color: #6ee7b7;
    transform: translateX(5px);
}
.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-icon {
    width: 40px;
    height: 40px;
    background: #1f3b4d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6ee7b7;
}

/* LINKS */
.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    color: #94a3b8;
    cursor: pointer;
    transition: 0.3s;
}

.footer-links li span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #6ee7b7;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-links li:hover {
    color: #6ee7b7;
    transform: translateX(5px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding: 20px;
    text-align: left;
    color: #64748b;
}

.footer-bottom span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

/* SCROLL BUTTON */
.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: none;
    z-index: 999;
}

.scroll-top:hover {
    background: #333;
}
/* SERVICES SECTION */
.srv-section {
    padding: 70px 0;
    background: #f5f7f6;
}

/* HEADER */
.srv-header {
    text-align: center;
    margin-bottom: 40px;
}

.srv-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.srv-header h2 {
    font-size: 34px;
    margin: 10px 0;
}

.srv-underline {
    width: 50px;
    height: 4px;
    background: #4caf8d;
    margin: 10px auto;
    border-radius: 2px;
}

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

/* CARD */
.srv-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.srv-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.srv-icon {
    width: 55px;
    height: 55px;
    margin: auto;
    margin-bottom: 15px;
    background: #10b981;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* TEXT */
.srv-card h3 {
    font-size: 16px;
}
/* GLOBAL SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    margin: 10px 0;
}

.section-underline {
    width: 60px;
    height: 4px;
    background: #4caf8d;
    margin: 10px auto 20px;
    border-radius: 2px;
}

.section-desc {
    max-width: 800px;
    margin: auto;
    color: #6b7280;
}
/* PRODUCTS SECTION - CLEAN WHITE DESIGN */
.products-pro {
    padding: 80px 0;
    background: #ffffff;
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.product-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #eef2f7;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* NUMBER (Premium feel) */
.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #4caf8d;
    background: #ecfdf5;
    padding: 6px 10px;
    border-radius: 8px;
}

/* TITLE */
.product-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #111827;
}

/* LIST */
.product-card ul {
    padding-left: 18px;
}

.product-card ul li {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* HIGHLIGHT */
.product-highlight {
    margin-top: 50px;
    padding: 30px;
    border-radius: 18px;
    background: #f9fbfa;
    border: 1px solid #e6f4ef;
}

.product-highlight h3 {
    margin-bottom: 15px;
}

.product-highlight ul {
    padding-left: 18px;
}

.product-highlight li {
    margin-bottom: 10px;
    color: #4b5563;
}

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

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-highlight li i {
    color: #10b981;
    margin-top: 4px;
}
/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

/* HOVER */
.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* TITLE */
.product-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICON STYLE */
.product-card i {
    background: #ecfdf5;
    color: #10b981;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
}

/* LIST */
.product-card ul {
    padding-left: 18px;
}

.product-card li {
    margin-bottom: 10px;
    color: #4b5563;
    line-height: 1.6;
}

/* BULLETS */
.product-card li::marker {
    color: #10b981;
}

/* HIGHLIGHT BOX */
.product-highlight {
    margin-top: 50px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 30px;
    border-radius: 16px;
}

.product-highlight h3 {
    margin-bottom: 15px;
}

.product-highlight li {
    margin-bottom: 10px;
    color: #4b5563;
}
/* TENDERS / PROJECTS */
.tnr-section {
    padding: 70px 0;
    background: #f5f7f6;
}

/* HEADER */
.tnr-header {
    text-align: center;
    margin-bottom: 40px;
}

.tnr-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.tnr-header h2 {
    font-size: 34px;
    margin: 10px 0;
}

.tnr-underline {
    width: 50px;
    height: 4px;
    background: #4caf8d;
    margin: 10px auto;
    border-radius: 2px;
}

/* GRID */
.tnr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.tnr-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.tnr-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.tnr-icon {
    width: 55px;
    height: 55px;
    margin: auto;
    margin-bottom: 15px;
    background: #10b981;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* TEXT */
.tnr-card h3 {
    font-size: 16px;
}
/* CONTACT SECTION */
.cnt-section {
    padding: 70px 0;
    background: #f8fafc;
}

/* HEADER */
.cnt-header {
    text-align: center;
    margin-bottom: 40px;
}

.cnt-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.cnt-header h2 {
    font-size: 34px;
    margin: 10px 0;
}

.cnt-underline {
    width: 50px;
    height: 4px;
    background: #4caf8d;
    margin: 10px auto;
    border-radius: 2px;
}

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

/* CARD */
.cnt-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.cnt-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.cnt-icon {
    width: 55px;
    height: 55px;
    margin: auto;
    margin-bottom: 15px;
    background: #10b981;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* TEXT */
.cnt-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cnt-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}
.services-detail {
    padding: 90px 0;
    background: linear-gradient(to bottom, #f3f7f5, #ffffff);
}

/* HEADER */
.srvd-header {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 60px;
}

.srvd-header h2 {
    font-size: 36px;
    margin: 15px 0;
}

.srvd-header p {
    color: #6b7280;
    line-height: 1.6;
}

/* GRID */
.srvd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.srvd-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    position: relative;
}

.srvd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ICON */
.srvd-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
}

/* TEXT */
.srvd-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.srvd-card p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* LIST */
.srvd-card ul {
    padding-left: 18px;
}

.srvd-card li {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}
/* SECTION */
.tnr-minimal {
    padding: 80px 0;
    background: #ffffff;
}

/* LIST */
.tnr-list {
    margin-top: 50px;
}

/* ITEM */
.tnr-item {
    padding: 25px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

/* TITLE */
.tnr-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111827;
}

/* TEXT */
.tnr-item p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 6px;
    line-height: 1.6;
}

/* HIGHLIGHT */
.tnr-minimal-highlight {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 2px solid #e5e7eb;
}

.tnr-minimal-highlight h3 {
    margin-bottom: 15px;
}

.tnr-minimal-highlight p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 10px;
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .tnr-grid-pro {
        grid-template-columns: 1fr;
    }

    .tnr-points {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 36px; }
    .hero h2 { font-size: 30px; }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content {
        flex-direction: column;
    }

    .about-cards {
        width: 100%;
    }
    .exp-grid {
        grid-template-columns: 1fr;
    }
    .cert-grid {
        grid-template-columns: 1fr;
    }
    .docs-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        text-align: center;
    }

    .srv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .srvd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tnr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cnt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cert-premium-grid {
        grid-template-columns: 1fr;
    }

    .cert-premium-highlight {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* MOBILE VIEW */
@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-content {
        padding: 18px;
    }
    .nav-main {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /* HIDE LINKS INITIALLY */
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 15px 20px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    /* SHOW MENU */
    .nav-main.active .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* LINKS STYLE */
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        display: block;
        margin: 0;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* BUTTON FIX */
    .nav-links .btn {
        margin-top: 10px;
        text-align: center;
    }

    /* HAMBURGER */
    .hamburger {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }
}
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 60px 20px;
    }

    .hero h1 { font-size: 28px; }
    .hero h2 { font-size: 24px; }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }
    .about-header h2 {
        font-size: 26px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }
    .exp-header h2 {
        font-size: 26px;
    }

    .exp-img {
        height: 180px;
    }
    .cert-header h2 {
        font-size: 26px;
    }

    .cert-highlight {
        flex-direction: column;
    }
    .docs-grid {
        grid-template-columns: 1fr;
    }

    .docs-header h2 {
        font-size: 26px;
    }

    .docs-highlight {
        flex-direction: column;
    }
    .srv-grid {
        grid-template-columns: 1fr;
    }

    .srv-header h2 {
        font-size: 26px;
    }
    .prod-grid {
        grid-template-columns: 1fr;
    }

    .prod-header h2 {
        font-size: 26px;
    }
    .tnr-grid {
        grid-template-columns: 1fr;
    }

    .tnr-header h2 {
        font-size: 26px;
    }
    .cnt-grid {
        grid-template-columns: 1fr;
    }

    .cnt-header h2 {
        font-size: 26px;
    }
    .srvd-grid {
        grid-template-columns: 1fr;
    }

    .srvd-header h2 {
        font-size: 26px;
    }
}
