* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F5F7FA;
    color: #111;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.header {
    background: #ffffff;
    border-bottom: 1px solid #eee;

    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;   /* 🔥 ye hi main fix hai */
    padding: 18px 0;       /* header height control */
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #0B3C5D;
	display: flex;
    align-items: center;
}


.menu a {
    margin-left: 25px;
    text-decoration: none;
    color: #6082B6;
    font-weight: 500;
    line-height: 1;   /* extra spacing hata deta hai */
}

.menu a:hover {
    color: #0B3C5D;
}



.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: 
        linear-gradient(rgba(11, 60, 93, 0.85), rgba(50, 140, 193, 0.85)),
        url('../img/hero-bg.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
	position: relative;
    min-height: 500px; 
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-content {
    max-width: 700px;
    padding: 20px;
	 position: relative;
	 text-align: center;
	  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.5px;

    /* subtle shadow (not heavy) */
    text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 13px;
    opacity: 0.95;

    /* subtle, tight shadow */
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}


.search-box {
    display: flex;
    margin-top: 20px;
    border-radius: 50px;
    overflow: hidden;
	background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
	
	 width: 100%;
}

.search-box input {
    padding: 15px;
    border: none;
    outline: none;
    flex: 1;
	  width: auto;
}

.search-box button {
    padding: 15px;
    border: none;
    background: #D9B310;
    cursor: pointer;
}



.results {
 
	 display: none;
	 
}

.results.active {
    display: block;
    margin-top: 40px;
	animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
}





.trust {
    margin-top: 25px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    text-transform: uppercase;

    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;

    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	 transition: 0.3s;
}
.trust span {
    color: #D9B310 !important;
    font-weight: 600;
}


.trust:hover {
    transform: translateY(-2px);
}

.logo img {
    height: 50px;
    width: auto;
    display: block;

    /* 🔥 clarity enhance */
    filter: contrast(1.15) brightness(1.05);

    /* smooth rendering */
    image-rendering: -webkit-optimize-contrast;

    transition: 0.3s ease;
	transform: translateZ(0);
}
.logo img:hover {
    filter: contrast(1.2) brightness(1.08);
}

.footer {
   margin-top: auto;
    padding: 25px 0;

    background: #ffffff;
    border-top: 1px solid #e5e7eb;

    text-align: center;
    font-size: 14px;
    color: #666;

    letter-spacing: 0.3px;

    /* subtle depth */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.03);
}
.footer span {
    color: #0B3C5D;
    font-weight: 500;
}

.card h2 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;

    margin-bottom: 18px;
    padding-bottom: 10px;

    border-bottom: 1px solid #e5e7eb;
}
.empty-row td {
    text-align: center;
    padding: 20px;
    color: #9ca3af;
}

/* Hamburger hidden desktop */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* default (desktop) */
.menu {
    display: flex;
}


/* MOBILE */
/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;

    z-index: 998;
}

/* Menu */
@media (max-width: 768px) {

   .menu {
        position: fixed;
        top: 0;
        right: -260px;

        width: 240px;
        height: 100%;

        /* 🔥 Premium background */
       background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(12px);
border-left: 1px solid rgba(0,0,0,0.06);
        /* glass feel */
        backdrop-filter: blur(10px);

        display: flex;
        flex-direction: column;
        padding: 90px 25px;

        box-shadow: -10px 0 30px rgba(0,0,0,0.15);

        transition: 0.35s ease;
        z-index: 999;
		 
    }

    .menu.active {
        right: 0;
    }

    .menu a {
    font-size: 16px;
    margin: 18px 0;
    color: #1f2937;
    font-weight: 500;

    padding: 8px 10px;
    border-radius: 8px;

    transition: 0.25s ease;
}

.menu a:hover {
    background: rgba(11, 60, 93, 0.08);
    color: #0B3C5D;
    transform: translateX(6px);
}
.menu a.active {
    background: rgba(217, 179, 16, 0.15);
    color: #D9B310;
    font-weight: 600;
}



    /* Overlay active */
    #overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        z-index: 1000;
    }
}





/* Card */
.result-card {
    background: #ffffff;
   padding: 18px;
    border-radius: 14px;
    margin-bottom: 20px;

    border: 1px solid #eef2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: all 0.25s ease;
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Chemical chip */
.chemical-chip {
    display: inline-block;
    background: linear-gradient(135deg, #e6f0f7, #f3f6f9);
    color: #0B3C5D;

    font-size: 12px;
    font-weight: 500;

    padding: 6px 14px;
    border-radius: 20px;
}

/* Supplier */
.supplier-name {
    font-size: 20px;
    font-weight: 600;
    margin: 12px 0;
    color: #111827;
}

/* Tags */
.details {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tag {
    background: #f3f6f9;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: #374151;
}

/* Location */
.location-block {
    margin-bottom: 14px;
}

.location {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
}

.address {
    font-size: 13px;
    color: #6b7280;
}

/* Contact */
.contact-block {
   border-top: 1px solid #e5e7eb;
    padding-top: 10px;
    margin-top: 10px;
}

.person {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.phone, .email {
    font-size: 13px;
    color: #4b5563;
}
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.empty-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.empty-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 5px;
}

.empty-sub {
    font-size: 14px;
}
.search-error {
    position: absolute;
    top: 100%;   /* search box ke neeche */
    left: 50%;
    transform: translateX(-50%);

    margin-top: 8px;

    background: rgba(255,255,255,0.95);
    color: #b91c1c;

    padding: 8px 14px;
    border-radius: 8px;

    font-size: 13px;
    white-space: nowrap;

    box-shadow: 0 4px 12px rgba(0,0,0,0.1);

    opacity: 0;
    pointer-events: none;

    transition: 0.25s ease;
	transform: translate(-50%, 5px);
}

.search-error.active {
    opacity: 1;
}

/* subtle red border */
.search-error::before {
    content: "⚠ ";
}

/* Input error highlight */
.search-box.error {
    border: 1px solid #dc2626;
}


/* About Hero */
.about-hero {
    background:
        linear-gradient(rgba(11, 60, 93, 0.85), rgba(50, 140, 193, 0.85)),
        url('../img/about-bg.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    padding: 90px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-hero p {
    opacity: 0.9;
}

/* About section */
.about {
    margin-top: 50px;
}

.about h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

.about p {
    color: #4b5563;
    line-height: 1.6;
	font-size:15px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
	margin-top: 50px;
}

/* Card */
.feature {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;

    border: 1px solid #eef2f7;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);

    transition: all 0.25s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* Icon */
.icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef4f8;
    border-radius: 10px;

    font-size: 18px;
    margin-bottom: 14px;
}

/* Heading */
.feature h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;

    margin-bottom: 8px;
}

/* Text */
.feature p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
}

/* Mission Section */
.mission {
    margin-top: 70px;
    padding: 20px 0;
}

.mission-box {
    background: linear-gradient(135deg, #f5f7fa, #eef2f7);
color: #111827;

    padding: 40px;
    border-radius: 18px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Heading */
.mission-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Paragraph */
.mission-box p {
    max-width: 750px;
    margin: auto;

    font-size: 15px;
    line-height: 1.7;

    opacity: 0.95;
	color: #374151;
}

/* CTA */
.cta {
    text-align: center;
    padding: 50px 0;
}

.cta-btn {
    display: inline-block;
    background: #D9B310;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.about-highlight {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;

    border: 1px solid #eef2f7;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* Heading */
.about-highlight h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #111827;
}

/* Items */
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 12px;
}

/* Icon */
.highlight-item span {
    color: #0B3C5D;
    font-size: 14px;
    margin-top: 2px;
}

/* Text */
.highlight-item p {
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}

/* Stats */
.stats {
    margin-top: 60px;
    background: #0B3C5D;
    color: white;
    padding: 40px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stats h2 {
    font-size: 28px;
}



/* CTA improvement */
.cta p {
    margin: 10px 0 20px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
}

.how-it-works {
    margin-top: 70px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 35px;
}

/* Grid */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Card */
.step {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);

    padding: 28px 20px;
    border-radius: 18px;

    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* subtle glow effect */
.step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(217,179,16,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.step:hover::before {
    opacity: 1;
}

/* hover lift */
.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Heading */
.step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0B3C5D;
}

/* Text */
.step p {
    font-size: 14px;
    color: #6b7280;
}

.audience {
    margin-top: 60px;
    text-align: center;
}

.audience h2 {
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 600;
	
}

/* List as flex chips */
.audience ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 0;
    list-style: none;
}

/* Each item */
.audience li {
    background: linear-gradient(135deg, #eef4f8, #f8fafc);
    border: 1px solid #e5e7eb;

    padding: 10px 16px;
    border-radius: 30px;

    font-size: 14px;
    color: #1f2937;

    transition: all 0.25s ease;
    cursor: default;
}

/* hover effect */
.audience li:hover {
    transform: translateY(-3px);
    background: #0B3C5D;
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(11,60,93,0.2);
}
@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .audience ul {
        gap: 10px;
    }
}

/* =========================
   WHY SECTION (PREMIUM UI)
========================= */

/* =========================
   WHY SECTION (CLEAN PRO UI)
========================= */

.why {
    margin-top: 70px;
}

/* Heading */
.why h2 {
    font-size: 26px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

/* Subtext */
.why .sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Card (compact horizontal) */
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 16px 18px;
    border-radius: 12px;

    background: #ffffff;
    border: 1px solid #e5e7eb;

    transition: all 0.2s ease;
}

/* Hover subtle */
.why-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* Icon */
.why-card .icon {
    min-width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef4f8;
    border-radius: 10px;

    font-size: 16px;
}

/* Title */
.why-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 3px;
}

/* Text */
.why-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* Remove ugly highlight border */
.why-card:first-child {
    border: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.cta-strong {
    margin-top: 80px;
    padding: 70px 20px;
    text-align: center;

    background: linear-gradient(135deg, #0B3C5D, #328CC1);
    color: white;
    border-radius: 20px;
}

.cta-strong h2 {
    font-size: 28px;
    font-weight: 600;
}

.cta-strong p {
    margin-top: 10px;
    opacity: 0.9;
}

/* Button */
.cta-btn-strong {
    display: inline-block;
    margin-top: 25px;

    background: #D9B310;
    color: #000;

    padding: 14px 28px;
    border-radius: 30px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.cta-btn-strong:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* trust line */
.cta-trust {
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.8;
}

/* =========================
   CONTACT PAGE (SAFE ADDON)
========================= */

/* Hero (reuse theme but slight variation) */
.contact-hero {
    background:
        linear-gradient(rgba(11, 60, 93, 0.85), rgba(50, 140, 193, 0.85)),
        url('../img/contact-bg.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    padding: 90px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 32px;
    font-weight: 600;
}

.contact-hero p {
    margin-top: 8px;
    opacity: 0.9;
    font-size: 14px;
}

/* Section spacing */
.contact {
    margin-top: 60px;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
}

/* Left: Info (match existing card style) */
.contact-info {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;

    border: 1px solid #eef2f7;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.contact-info h3 {
    font-size: 16px;
    margin-bottom: 16px;
}

/* Items */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 16px;
}

/* Icon (match existing .icon style) */
.info-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef4f8;
    border-radius: 10px;

    font-size: 15px;
}

/* Text */
.info-item strong {
    font-size: 12px;
    color: #6b7280;
}

.info-item p {
    font-size: 14px;
    color: #111827;
}

/* Right: Support card */
.contact-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;

    border: 1px solid #eef2f7;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.contact-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-card ul {
    list-style: none;
    padding: 0;
}

.contact-card li {
    font-size: 13px;
    color: #374151;
    margin-bottom: 10px;
}

/* Subtle hover polish */
.contact-info:hover,
.contact-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}









/* FIX placeholder visibility */
.search-box input::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

/* focus pe aur subtle */
.search-box input:focus::placeholder {
    color: rgba(0, 0, 0, 0.35);
}
.search-box input {
    color: #111;   /* actual typing text */
}


/* =========================
   RESULTS SECTION UPGRADE
========================= */

/* remove extra card wrapper feel */
.results .card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* header */
.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
	 position: sticky;
    top: 150px;   

    z-index: 998;

    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
	
	backdrop-filter: blur(8px);
    background: rgba(248, 250, 252, 0.85);
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* title */
.results-header h2 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
	margin-left:20px;
}

/* result count */
.result-count {
    font-size: 12px;
    color: #6b7280;
	padding-right:20px;
}

/* spacing between cards */
.results-list {
    margin-top: 25px;
}

.results-list {
    padding-top: 10px;
}

/* =========================
   RESULT CARD UPGRADE
========================= */



/* top spacing */
.result-top {
    margin-bottom: 8px;
}

/* supplier name stronger */
.supplier-name {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 10px;
}



/* location */
.location {
    font-size: 14px;
    font-weight: 500;
}

.address {
    font-size: 13px;
}



/* row style */
.contact-row {
    font-size: 13px;
    color: #374151;
    margin-bottom: 4px;
}





body.search-active .hero {
    display: none;
}

.hero.compact {
    padding: 40px 0;
}

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




.sticky-search {
    display: none;

    position: fixed;   /* 🔥 change back */
    top: 85px;

    width: 100%;
    z-index: 1000;

    background: rgba(240, 248, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

/* inner container ko center karo */
.sticky-search .search-box {
    max-width: 700px;
    margin: 0 auto;

    background: #ffffff;   /* 🔥 yaha do */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.results {
    position: relative;
    z-index: 999;
	 margin-top: 20px;   /* 🔥 reduce */
    padding-top: 0;
	overflow: visible;
}




body.search-active .results {
    margin-top: 63px;
}
html {
    scroll-behavior: smooth;
}





.chemical-hero {
     background:
        linear-gradient(rgba(11, 60, 93, 0.85), rgba(50, 140, 193, 0.85)),
        url('../img/chemical-bg.webp');
    color: white;
    padding: 90px 0;
    text-align: center;
}

.chemical-hero h1 {
    font-size: 34px;
}


/* 🔥 GRID LAYOUT */
.chemical-content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* MOBILE FIX */
@media(max-width:768px){
    .chemical-content {
        grid-template-columns: 1fr;
    }
}

/* 🔥 CARD IMPROVE */
.chem-card {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid #eef2f7;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.chem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* 🔥 HEADER STYLE */
.chem-card h2 {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 🔥 TEXT */
.chem-card p {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
}

/* 🔥 ICON STYLE */
.chem-icon {
    font-size: 18px;
}

.tag {
    display: inline-block;
    background: #eef6ff;
    color: #2563eb;
    padding: 6px 10px;
    border-radius: 20px;
    margin: 4px;
    font-size: 12px;
}