body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #1e3a5f;
    margin: 0;
    padding: 0;
}
.featured-products {
    background-color: #ffffff;
    padding: 60px 0;
}
.intro {
    background-color: #ffffff;
    padding: 60px 0;
}
.container {
    width: 90%;
    margin: auto;
}

/* Navbar */
.navbar {
    background: #0d1b2a;
    color: white;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline;
    margin-left: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
}
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand container */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo */
.brand-logo {
    height: 48px;
    width: auto;
}

/* Company name */
.brand-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}
/* Hero */
.hero {
    text-align: center;
    padding: 2rem 0;
}

.hero img {
    width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #1b263b;
    color: #fff;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

/* Sections */
.content-section {
    padding: 2rem 0;
    text-align: center;
}

/* Products Grid */
.grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    width: 30%;
    margin: 1rem 0;
}

/* Footer */
.footer {
    background: #0d1b2a;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
/* Marquee */
.marquee-section {
    background: #1e3a5f;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-size: 1rem;
    font-weight: 600;
    color: #f8f9fa;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-card {
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.product-card:hover {
    transform: translateY(-6px);
    transition: 0.3s;
}
.back-btn {
    margin-bottom: 20px;
    display: inline-block;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.data-table th, .data-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

.data-table th {
    background: var(--secondary);
    color: white;
}
/* Watermark Hero Section */
.watermark-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(255,255,255,0.9),
            rgba(255,255,255,0.9)
        ),
        url("https://source.unsplash.com/1600x900/?mineral,ore,rocks");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Keep text above watermark */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Optional: softer look */
.watermark-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.25);
}
.bg-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-image: url("images/image2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

/* overlay so text is readable */
.bg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}
.highlight-text {
    color:#0d1b2a;   /* change to any color you want */
}
@media (max-width: 768px) {
    .nav-flex {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
}

/* =========================
   MOBILE RESPONSIVE STYLES
   ========================= */

@media (max-width: 768px) {

    /* Container spacing */
    .container {
        width: 92%;
    }

    /* Navbar */
    .nav-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .brand {
        gap: 10px;
    }

    .brand-logo {
        height: 40px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    /* Nav links */
    .nav-links {
        width: 100%;
        padding-left: 0;
    }

    .nav-links li {
        display: block;
        margin: 8px 0;
    }

    .nav-links a {
        font-size: 1rem;
    }

    /* Hero section */
    .hero,
    .bg-hero {
        min-height: 65vh;
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Buttons */
    .btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

    h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    /* Product grid */
    .grid {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        width: 100%;
    }

    .card img {
        width: 100%;
        height: auto;
    }

    /* Tables (product details pages) */
    .data-table {
        font-size: 0.9rem;
    }

    .data-table th,
    .data-table td {
        padding: 8px;
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 20px 10px;
        color:#eef3fb;
    }
}
/* Horizontal scroll product layout */
.product-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 20px 0;
}

/* Individual product card */
.product-tile {
    min-width: 220px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    padding: 10px;
    text-align: center;
    flex-shrink: 0;
}

.product-tile img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.product-tile h4 {
    font-size: 0.95rem;
    margin: 10px 0 6px;
}

.product-tile .price {
    color: #1e3a5f;
    font-weight: 600;
}

/* Smooth scrollbar */
.product-scroll::-webkit-scrollbar {
    height: 6px;
}

.product-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
/* Business Info Section */
.business-info {
    background: #ffffff;
    padding: 60px 0;
}

.business-info h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Grid layout */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Individual card */
.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Icon */
.info-icon {
    font-size: 28px;
    background: #eaf0f8;
    color: #1e3a5f;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.info-title {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 4px;
}

.info-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .info-card {
        padding: 16px;
    }
}
/* Infrastructure section layout */
.infra-section {
    background: #ffffff;
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* Two-column grid */
.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left text */
.infra-text h2 {
    margin-bottom: 10px;
    color: #1e3a5f;
}

.infra-text ul {
    margin-bottom: 30px;
    padding-left: 20px; /* aligns bullets left */
}

.infra-text ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Right image */
.infra-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .infra-grid {
        grid-template-columns: 1fr;
    }

    .infra-image {
        order: 2;
    }

    .infra-text {
        order: 1;
    }
}
.infra-lab-img {
    width: 100%;
    max-width: 500px;   /* controls width */
    height: 320px;      /* controls height */
    object-fit: cover;  /* prevents distortion */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
/* Why Choose Us section */
.why-us {
    background: #ffffff;
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a5f;
}

/* Grid layout */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card */
.why-card {
    background: #fdfdfd;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Icon */
.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #eef3fb;
    color: #1e3a5f;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.why-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
    .why-card {
        padding: 25px 18px;
    }
}
.why-grid {
    justify-items: center;
}
.why-grid {
    justify-items: center;
}

.why-card {
    max-width: 320px;
    width: 100%;
}
/* About Section Styling */
.about-section {
    background: #ffffff;
    padding: 80px 0;
}

.about-content {
    max-width: 900px;          /* key for professionalism */
    margin: 0 auto;
    text-align: center;
}

.about-content h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 22px;
}

/* Slight emphasis for first paragraph */
.about-content p:first-of-type {
    font-size: 1.1rem;
    color: #333;
}

/* Mobile refinement */
@media (max-width: 768px) {
    .about-content {
        padding: 0 20px;
        text-align: left;
    }

    .about-content h1 {
        font-size: 1.8rem;
    }
}
footer {
    background: #0b1a2a; /* keep your dark footer */
    color: #ffffff;
}

footer p,
footer a,
footer span {
    color: #ffffff;
}
.site-footer {
    padding: 30px 0;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
/* Infrastructure images section */
.infra-images-section {
    padding: 50px 0 80px;
    background: #ffffff;
}

/* Two-column layout */
.infra-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Image container */
.infra-image-box {
    width: 100%;
    height: 320px; /* consistent height */
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Image styling */
.infra-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* no distortion */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .infra-image-grid {
        grid-template-columns: 1fr;
    }

    .infra-image-box {
        height: 240px;
    }
}
/* Infrastructure Intro Section */
.infra-intro {
    background: #ffffff;
    padding: 80px 0 60px;
}

.infra-title {
    text-align: center;
    font-size: 2.2rem;
    color: #1e3a5f;
    margin-bottom: 30px;
}

/* Lead paragraph */
.infra-lead {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Normal text */
.infra-text {
    max-width: 900px;
    margin: 0 auto 18px;
    text-align: center;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #555;
}

/* Highlights grid */
.infra-highlights {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* Highlight box */
.highlight-box {
    background: #f9fbff;
    padding: 22px 18px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

.highlight-box span {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 0.95rem;
    color: #333;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .infra-title {
        font-size: 1.8rem;
    }

    .infra-lead,
    .infra-text {
        padding: 0 20px;
        text-align: left;
    }
}
.hero-tagline {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #1e3a5f;
    letter-spacing: 0.5px;
}
.marquee-strip {
    background: #0b1a2a;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
}

.marquee-content {
    display: inline-block;
    animation: scroll-marquee 18s linear infinite;
}

.marquee-content span {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0 18px;
    letter-spacing: 0.4px;
}

@keyframes scroll-marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.home-about {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.home-about h2 {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.home-about-lead {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 1.1rem;
    color: #333;
}

.home-about-text {
    max-width: 850px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.btn-primary {
    background: #1e3a5f;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: #152a45;
}
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

.product-card img {
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

.product-card img {
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}
/* Home Trust Section */
.home-trust-section {
    background: #f8fafc;
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    color: #555;
}

/* Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.trust-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Icon */
.trust-icon {
    width: 70px;
    height: 70px;
    background: #eef3fb;
    color: #1e3a5f;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Card text */
.trust-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #222;
}

.trust-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Buttons */
.trust-cta {
    margin-top: 50px;
    text-align: center;
}

.btn-primary {
    background: #1e3a5f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 12px;
}

.btn-primary:hover {
    background: #142b46;
}

.btn-outline {
    border: 2px solid #1e3a5f;
    color: #1e3a5f;
    padding: 10px 26px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-outline:hover {
    background: #1e3a5f;
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .home-trust-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
/* Shared Specs Sections */
.home-specs-section,
.home-packaging-section {
    padding: 90px 0;
    background: #ffffff;
}

/* Horizontal row */
.specs-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* Card */
.spec-card {
    width: 260px;
    background: #f9fbff;
    padding: 32px 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover animation */
.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Animated glow */
.spec-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(30,58,95,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.spec-card:hover::before {
    opacity: 1;
}

/* Icon */
.spec-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #eef3fb;
    color: #1e3a5f;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

/* Icon animation */
.spec-card:hover .spec-icon {
    transform: rotateY(180deg);
}

/* Text */
.spec-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #222;
}

.spec-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .spec-card {
        width: 100%;
        max-width: 320px;
    }
}
/* Mesh + Packing Section */
.mesh-pack-section {
    background: #ffffff;
    padding: 90px 0;
    text-align: center;
}

/* Titles */
.mesh-pack-section .section-title {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.mt-80 {
    margin-top: 80px;
}

/* ===================== */
/* Mesh Circles */
/* ===================== */
.mesh-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mesh-circle {
    width: 110px;
    height: 110px;
    background: #1e3a5f; /* brand color */
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover animation */
.mesh-circle:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 18px 40px rgba(30,58,95,0.4);
}

/* Pulse animation */
.mesh-circle::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(30,58,95,0.4);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* ===================== */
/* Packing Section */
/* ===================== */
.packing-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.packing-card {
    width: 260px;
    text-align: center;
    transition: transform 0.4s ease;
}

.packing-card:hover {
    transform: translateY(-8px);
}

/* Icon */
.packing-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 3px solid #1e3a5f;
    color: #1e3a5f;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

/* Icon hover animation */
.packing-card:hover .packing-icon {
    background: #1e3a5f;
    color: #ffffff;
    transform: rotate(6deg) scale(1.1);
}

.packing-card p {
    font-size: 1rem;
    color: #333;
}

/* Mobile */
@media (max-width: 768px) {
    .mesh-circle {
        width: 90px;
        height: 90px;
        font-size: 1.3rem;
    }

    .packing-row {
        gap: 40px;
    }
}
/* Product Detail Layout */
.product-detail {
    padding: 80px 0;
    background: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
}

/* Images */
.product-images .main-image {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.product-images .main-image:hover {
    transform: scale(1.02);
}

.thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumb-row img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: transform 0.3s, opacity 0.3s;
}

.thumb-row img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Button */
.photo-btn {
    margin-top: 20px;
    background: transparent;
    border: 2px solid #1e3a5f;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    color: #1e3a5f;
    transition: all 0.3s ease;
}

.photo-btn:hover {
    background: #1e3a5f;
    color: #fff;
}

/* Product Info */
.product-info h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.price a {
    color: #1e3a5f;
    margin-left: 10px;
    font-size: 0.95rem;
}

.moq {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Spec Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.spec-table td {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 0.95rem;
}

.spec-table td:first-child {
    background: #f5f7fa;
    font-weight: 600;
    width: 40%;
}

/* Description */
.description {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

/* CTA */
.cta-btn {
    display: inline-block;
    background: #0b7a66;
    color: #fff;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #075c4d;
}

/* Mobile */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
/* ===================================
   PRODUCT PAGE ENHANCEMENTS
   =================================== */

/* Product Page Container */
.product-page {
    background: #ffffff;
    padding: 60px 0;
}

.product-page h1 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 30px;
    text-align: center;
}

.product-page h2 {
    font-size: 1.8rem;
    color: #1e3a5f;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #eef3fb;
}

/* Product Image Wrapper */
.product-image-wrapper {
    text-align: center;
    margin: 30px 0 40px;
}

.product-main-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.product-main-image:hover {
    transform: scale(1.03);
}

/* Product Description */
.product-description {
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.product-description p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.product-description strong {
    color: #1e3a5f;
    font-weight: 600;
}

/* Applications Section */
.applications-section {
    background: #f9fbff;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.applications-section h2 {
    margin-top: 0;
}

.applications-list {
    list-style: none;
    padding: 0;
}

.applications-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.02rem;
    line-height: 1.6;
    color: #333;
}

.applications-list li:before {
    content: "►";
    position: absolute;
    left: 0;
    color: #1e3a5f;
    font-size: 0.9rem;
}

/* Table Responsive */
.table-responsive {
    overflow-x: auto;
    margin: 25px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.data-table thead {
    background: #1e3a5f;
    color: #ffffff;
}

.data-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.data-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.data-table tbody tr:hover {
    background: #f9fbff;
}

.data-table td {
    padding: 14px 15px;
    font-size: 0.95rem;
    color: #333;
}

/* Pricing Table Highlight */
.pricing-table tbody tr:hover {
    background: #fff9e6;
}

.pricing-table td:last-child {
    font-weight: 600;
    color: #1e3a5f;
    font-size: 1.05rem;
}

/* Features Section */
.features-section {
    margin: 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.feature-box {
    background: #f9fbff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #1e3a5f;
    color: #ffffff;
    border-radius: 50%;
    line-height: 45px;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
}

/* Packaging Info */
.packaging-info {
    background: #f9fbff;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.packaging-info h2 {
    margin-top: 0;
}

.packaging-info ul {
    list-style: none;
    padding: 0;
}

.packaging-info li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.02rem;
}

.packaging-info li:before {
    content: "📦";
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4d7d 100%);
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 12px 30px rgba(30,58,95,0.3);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #e8f0ff;
}

.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #1e3a5f;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-btn:hover {
    background: #f0f8ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Mobile Responsive for Product Pages */
@media (max-width: 768px) {
    .product-page h1 {
        font-size: 1.9rem;
    }

    .product-page h2 {
        font-size: 1.5rem;
    }

    .product-main-image {
        max-width: 100%;
    }

    .product-description {
        padding: 0 20px;
    }

    .applications-section,
    .packaging-info {
        padding: 20px;
        margin: 20px 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .data-table {
        font-size: 0.85rem;
    }

    .data-table th,
    .data-table td {
        padding: 10px 8px;
    }

    .cta-section {
        padding: 35px 20px;
    }

    .cta-section h3 {
        font-size: 1.6rem;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-btn,
    .cta-section,
    footer {
        display: none;
    }

    .product-main-image {
        max-width: 400px;
    }
}
.products-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4d7d 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.products-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e8f0ff;
}

.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1e3a5f;
}

.product-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.product-meta {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.meta-tag {
    background: #eef3fb;
    color: #1e3a5f;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Product Categories */
.product-categories {
    padding: 70px 0;
    background: #ffffff;
}

.product-categories h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #1e3a5f;
}

.category-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-tab {
    background: #f9fbff;
    padding: 35px 25px;
    border-radius: 16px;
    border-left: 5px solid #1e3a5f;
    transition: all 0.3s ease;
}

.category-tab:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.category-tab h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e3a5f;
}

.category-tab ul {
    list-style: none;
    padding: 0;
}

.category-tab li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.category-tab li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e3a5f;
}

/* Quality Section */
.quality-section {
    background: linear-gradient(135deg, #eef3fb 0%, #ffffff 100%);
    padding: 70px 0;
}

.quality-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #1e3a5f;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.quality-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.quality-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1e3a5f;
}

.quality-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Products CTA */
.products-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4d7d 100%);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.products-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.products-cta p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #e8f0ff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ffffff;
    color: #1e3a5f;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1e3a5f;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4d7d 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-hero p {
    font-size: 1.15rem;
    color: #e8f0ff;
}

.contact-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

/* Contact Form */
.contact-form-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1e3a5f;
}

.form-intro {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.btn-submit {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4d7d 100%);
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

/* Contact Information */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1e3a5f;
}

.info-box p {
    color: #555;
    line-height: 1.8;
}

.contact-link {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.info-detail {
    font-size: 0.9rem;
    color: #888;
}

.hours-table {
    width: 100%;
    margin-top: 10px;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-table td:first-child {
    font-weight: 600;
    color: #333;
}

.hours-table td:last-child {
    text-align: right;
    color: #666;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-btn {
    flex: 1;
    padding: 10px 20px;
    background: #eef3fb;
    color: #1e3a5f;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #1e3a5f;
    color: #ffffff;
}

/* Map Section */
.map-section {
    padding: 70px 0;
    background: #ffffff;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #1e3a5f;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #1e3a5f;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #1e3a5f;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1e3a5f;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* ===================================
   QUARTZ STONES SPECIFIC STYLES
   =================================== */

.stone-varieties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stone-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.stone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.stone-color {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid #f0f0f0;
}

.rose-quartz {
    background: linear-gradient(135deg, #ffb3ba 0%, #ffccd5 100%);
}

.amethyst {
    background: linear-gradient(135deg, #9b59b6 0%, #c39bd3 100%);
}

.citrine {
    background: linear-gradient(135deg, #f39c12 0%, #f8c471 100%);
}

.smoky-quartz {
    background: linear-gradient(135deg, #6c5b47 0%, #a39382 100%);
}

.clear-quartz {
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.mixed-quartz {
    background: linear-gradient(135deg, #16a085 0%, #5dade2 70%, #eb984e 100%);
}

.stone-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e3a5f;
}

.stone-card p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #555;
}

.pricing-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    /* Products Page */
    .products-hero h1 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .category-tabs {
        grid-template-columns: 1fr;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* Contact Page */
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Quartz Stones */
    .stone-varieties {
        grid-template-columns: 1fr;
    }

    .stone-color {
        width: 100px;
        height: 100px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .products-cta,
    .contact-form,
    footer {
        display: none;
    }
}
/* ===================================
   COMPLETE MODERN & TRENDY CSS
   Hanumant Minchem Industries
   Updated: 2026
   =================================== */

/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e3a5f;
    --primary-light: #2a4d7d;
    --primary-dark: #152a45;
    --secondary: #0d1b2a;
    --accent: #3b7dd6;
    --accent-light: #5a9ef0;
    
    --gray-50: #f8f9fa;
    --gray-100: #f0f2f5;
    --gray-200: #e4e6eb;
    --gray-300: #d0d3d9;
    --gray-400: #b0b3b8;
    --gray-500: #8a8d91;
    --gray-600: #65676b;
    --gray-700: #4b4d51;
    --gray-800: #343638;
    --gray-900: #1c1e21;
    
    --white: #ffffff;
    --black: #000000;
    
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2a4d7d 100%);
    --gradient-accent: linear-gradient(135deg, #3b7dd6 0%, #5a9ef0 100%);
    --gradient-light: linear-gradient(135deg, #eef3fb 0%, #ffffff 100%);
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 40px rgba(0,0,0,0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================
   MODERN NAVBAR
   =================================== */

.modern-nav {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-logo {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.modern-links {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.modern-links a {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.modern-links a:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.modern-links a.active {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   MODERN MARQUEE
   =================================== */

.modern-marquee {
    background: var(--gradient-primary);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0 30px;
}

.marquee-separator {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   HERO SECTION - MODERN
   =================================== */

.hero-modern {
    min-height: 85vh;
    background: linear-gradient(135deg, #0f2537 0%, #1e3a5f 50%, #2a4d7d 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59,125,214,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(90,158,240,0.1) 0%, transparent 50%);
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInDown 0.8s ease;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #5a9ef0 0%, #9bc4f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-modern {
    background: var(--white);
    color: var(--primary);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.3);
}

.btn-secondary-modern {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-modern:hover {
    background: var(--white);
    color: var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ===================================
   SECTION MODERN
   =================================== */

.section-modern {
    padding: 90px 0;
}

.section-header-modern {
    margin-bottom: 60px;
}

.section-header-modern.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #eef3fb 0%, #dae7f7 100%);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   FEATURE CARDS
   =================================== */

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card-modern {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon-modern {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card-modern h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-card-modern p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   CTA BANNER
   =================================== */

.cta-banner-modern {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
    box-shadow: var(--shadow-xl);
}

.cta-content h3 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
}

.btn-white-modern {
    background: var(--white);
    color: var(--primary);
}

.btn-white-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.3);
}

.btn-large-modern {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* Continue in next part... */
/* ===================================
   PRODUCTS HOME SECTION
   =================================== */

.products-showcase-home {
    background: var(--gray-50);
}

.products-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card-home {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-card-home:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image-home {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-home:hover .product-image-home img {
    transform: scale(1.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.product-info-home {
    padding: 25px;
}

.product-info-home h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-info-home p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
}

.view-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.product-card-home:hover .view-link {
    gap: 10px;
}

.view-all-products {
    text-align: center;
    margin-top: 50px;
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-modern:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   INDUSTRIES SECTION
   =================================== */

.industries-modern {
    background: var(--white);
}

.industries-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.industry-card-modern {
    background: var(--gray-50);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.industry-card-modern:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.industry-card-modern h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.industry-card-modern p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ===================================
   TRUST SECTION
   =================================== */

.trust-section-modern {
    background: var(--gradient-light);
    padding: 80px 0;
}

.trust-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.trust-item-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.trust-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    font-weight: 700;
}

.trust-item-modern h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.trust-item-modern p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section-modern {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content-modern p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   PAGE HERO
   =================================== */

.page-hero-modern {
    background: var(--gradient-primary);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-breadcrumb {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.hero-breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: var(--transition);
}

.hero-breadcrumb a:hover {
    color: var(--white);
}

.hero-breadcrumb span {
    margin: 0 10px;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ===================================
   WHO WE ARE SECTION
   =================================== */

.who-we-are {
    background: var(--white);
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

.our-story {
    background: var(--gray-50);
}

.story-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.story-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-highlights {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.highlight-box {
    text-align: center;
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    flex: 1;
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.highlight-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.visual-card:hover {
    transform: translateX(-10px);
}

.visual-stat {
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.visual-stat h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.visual-stat p {
    color: var(--gray-600);
}

/* ===================================
   VALUES SECTION
   =================================== */

.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.value-card {
    background: var(--gray-50);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.value-icon-wrapper {
    margin-bottom: 20px;
}

.value-icon {
    font-size: 3rem;
    display: inline-block;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ===================================
   WHY CHOOSE US
   =================================== */

.why-choose-modern {
    background: var(--gradient-light);
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: start;
}

.reason-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.reason-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.reason-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.reason-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reason-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.reason-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.why-choose-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.stat-card-modern {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.stat-card-modern:hover {
    transform: scale(1.05);
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.stat-card-modern p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ===================================
   CERTIFICATIONS
   =================================== */

.certifications-modern {
    background: var(--white);
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.cert-card {
    background: var(--gray-50);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cert-card:hover {
    background: var(--white);
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.cert-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.cert-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* ===================================
   TEAM COMMITMENT
   =================================== */

.team-commitment {
    background: var(--gray-50);
}

.commitment-box {
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.commitment-content p {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 20px;
}

.commitment-cta {
    margin-top: 40px;
}

/* Continue in next part for Infrastructure & Footer... */
/* ===================================
   INFRASTRUCTURE PAGE STYLES
   =================================== */

.facility-overview {
    background: var(--white);
}

.overview-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.overview-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.facility-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--gray-50);
    padding: 20px;
    border-radius: 16px;
    transition: var(--transition);
}

.feature-badge:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.badge-icon {
    font-size: 2rem;
}

.feature-badge strong {
    display: block;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-badge span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.overview-visual {
    position: relative;
}

.visual-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visual-stat-box {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.visual-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon-modern {
    font-size: 2.5rem;
}

.stat-info {
    flex: 1;
}

/* ===================================
   FACILITY GALLERY
   =================================== */

.facility-gallery {
    background: var(--gray-50);
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 30px 25px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

/* ===================================
   CAPABILITIES SECTION
   =================================== */

.capabilities-section {
    background: var(--gray-50);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.capability-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.capability-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.capability-card p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.capability-list {
    list-style: none;
    padding: 0;
}

.capability-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.capability-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ===================================
   LABORATORY SECTION
   =================================== */

.laboratory-section {
    background: var(--white);
}

.lab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lab-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.lab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.lab-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.lab-badge span:first-child {
    font-size: 2rem;
}

.lab-badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.lab-badge span:last-child {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.lab-intro {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin: 20px 0 30px;
}

.lab-tests {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.test-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.test-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.test-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.test-info p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   BUSINESS INFO MODERN
   =================================== */

.business-info-modern {
    background: var(--gradient-light);
}

.business-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.business-card-modern {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.business-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.business-card-modern.highlight {
    background: var(--gradient-primary);
}

.business-card-modern.highlight .business-icon {
    background: var(--white);
    color: var(--primary);
}

.business-card-modern.highlight .info-label,
.business-card-modern.highlight .info-value {
    color: var(--white);
}

.business-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.business-info {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 4px;
    font-weight: 500;
}

.info-value {
    display: block;
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 700;
}

/* ===================================
   PROCESS FLOW
   =================================== */

.process-flow-section {
    background: var(--white);
    padding: 80px 0;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gray-200);
    z-index: 0;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   VISIT CTA
   =================================== */

.visit-cta-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.visit-cta-box {
    background: var(--gradient-primary);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.visit-cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.visit-cta-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* ===================================
   MODERN FOOTER
   =================================== */

.footer-modern {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: auto;
}

.footer-brand h3 {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-400);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--gray-400);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-badges {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */

@media (max-width: 968px) {
    .container {
        width: 95%;
    }
    
    .hero-title-modern,
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .story-layout,
    .why-choose-layout,
    .overview-layout,
    .lab-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-banner-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .facility-features {
        grid-template-columns: 1fr;
    }
    
    .visual-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-cta-box,
    .commitment-box {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .modern-links {
        display: none; /* For hamburger menu implementation */
    }
    
    .hero-title-modern,
    .page-hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle-modern,
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-modern {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .products-grid-home,
    .features-showcase,
    .industries-grid-modern,
    .trust-grid-modern,
    .values-grid,
    .capabilities-grid,
    .business-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .section-modern {
        padding: 60px 0;
    }
    
    .cta-section-modern {
        padding: 70px 0;
    }
    
    .cta-content-modern h2 {
        font-size: 2rem;
    }
    
    .reason-item:hover {
        transform: none;
    }
    
    .stat-card-modern:hover,
    .feature-card-modern:hover {
        transform: none;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.mt-80 {
    margin-top: 80px;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .modern-nav,
    .modern-marquee,
    .cta-section-modern,
    .footer-modern {
        display: none;
    }
}
/* ===================================
   ADDITIONAL CSS FOR PRODUCTS & CONTACT
   Add this to your existing styles.css
   =================================== */

/* ===================================
   PRODUCTS PAGE STYLES
   =================================== */

.products-intro-section {
    background: var(--white);
}

.intro-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.products-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.product-stat-box {
    background: var(--gradient-light);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-stat-box .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.product-stat-box .stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Products Grid Main */
.products-grid-section {
    background: var(--gray-50);
}

.products-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
}

.product-card-main {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-card-main:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.product-image-main {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.product-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-main:hover .product-image-main img {
    transform: scale(1.15);
}

.product-badge-main {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.product-badge-main.best-seller {
    background: linear-gradient(135deg, #f39c12 0%, #f8c471 100%);
}

.product-badge-main.high-purity {
    background: linear-gradient(135deg, #16a085 0%, #48c9b0 100%);
}

.product-badge-main.premium {
    background: linear-gradient(135deg, #8e44ad 0%, #a569bd 100%);
}

.product-badge-main.special {
    background: linear-gradient(135deg, #e74c3c 0%, #ec7063 100%);
}

.product-overlay-main {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-main:hover .product-overlay-main {
    opacity: 1;
}

.overlay-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-content-main {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content-main h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-features-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.feature-tag {
    background: var(--gray-100);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-price-range {
    font-size: 1.05rem;
    color: var(--accent);
    font-weight: 700;
}

/* Product Categories Modern */
.product-categories-modern {
    background: var(--white);
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.category-box-modern {
    background: var(--gradient-light);
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 5px solid var(--primary);
}

.category-box-modern:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.category-icon-modern {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.category-box-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.category-list-modern {
    list-style: none;
    padding: 0;
}

.category-list-modern li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    color: var(--gray-700);
}

.category-list-modern li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Specifications Section */
.specs-section-modern {
    background: var(--gray-50);
}

.specs-packaging-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.specs-box {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.specs-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.mesh-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.mesh-circle-modern {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    margin: 0 auto;
}

.mesh-circle-modern:hover {
    transform: scale(1.1) rotate(5deg);
}

.specs-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
}

.packaging-options-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.packaging-item-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 16px;
    transition: var(--transition);
}

.packaging-item-modern:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

.pack-icon {
    font-size: 2.5rem;
    width: 60px;
    text-align: center;
}

.pack-info {
    flex: 1;
}

.pack-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.pack-info span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Quality Assurance Products */
.quality-assurance-products {
    background: var(--white);
}

.quality-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.quality-feature-box {
    background: var(--gradient-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.quality-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.quality-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.quality-feature-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.quality-feature-box p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-quick-methods {
    background: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.quick-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.quick-method-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 2px solid transparent;
}

.quick-method-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
}

.method-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-info {
    flex: 1;
}

.method-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.method-info p {
    font-size: 1.05rem;
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 4px;
}

.method-subtitle {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Contact Main Section */
.contact-main-section {
    background: var(--gray-50);
}

.contact-layout-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.form-header p {
    font-size: 1.05rem;
    color: var(--gray-600);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-800);
    font-size: 0.95rem;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.form-group-modern textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-group-modern {
    flex-direction: row;
    align-items: center;
}

.checkbox-group-modern input[type="checkbox"] {
    width: auto;
    margin-right: 12px;
}

.checkbox-group-modern label {
    margin-bottom: 0;
    font-weight: normal;
}

.btn-submit-modern {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card-modern {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.info-card-modern:hover {
    box-shadow: var(--shadow-lg);
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card-modern h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-card-modern p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.contact-link-modern {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-link-modern:hover {
    text-decoration: underline;
}

.info-detail-modern {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.highlight-card {
    background: var(--gradient-light);
}

.business-details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.detail-label {
    font-weight: 600;
    color: var(--gray-600);
}

.detail-value {
    font-weight: 700;
    color: var(--primary);
}

.working-hours-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
}

.working-hours-card h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

.hour-row.closed {
    opacity: 0.6;
}

/* Map Section */
.map-section-modern {
    background: var(--white);
    padding: 80px 0;
}

.map-container-modern {
    margin-top: 40px;
    box-shadow: var(--shadow-xl);
    border-radius: 20px;
    overflow: hidden;
}

/* FAQ Section Modern */
.faq-section-modern {
    background: var(--gray-50);
}

.faq-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item-modern {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

.faq-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.faq-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-item-modern h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-item-modern p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Trust Badges Section */
.trust-badges-section {
    background: var(--gradient-light);
    padding: 70px 0;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.trust-badge-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.trust-badge-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.badge-icon-large {
    font-size: 4rem;
    margin-bottom: 15px;
}

.trust-badge-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.trust-badge-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* ===================================
   RESPONSIVE - PRODUCTS & CONTACT
   =================================== */

@media (max-width: 968px) {
    .products-grid-main {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .specs-packaging-layout {
        grid-template-columns: 1fr;
    }
    
    .mesh-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout-modern {
        grid-template-columns: 1fr;
    }
    
    .contact-form-box {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .products-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
    }
    
    .quick-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .mesh-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mesh-circle-modern {
        width: 80px;
        height: 80px;
        font-size: 1.4rem;
    }
}
/* ===================================
   EXTRAORDINARY ANIMATIONS & EFFECTS
   Add this to your styles.css
   =================================== */

/* ===================================
   ADVANCED KEYFRAME ANIMATIONS
   =================================== */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 125, 214, 0.4); }
    50% { box-shadow: 0 0 40px rgba(59, 125, 214, 0.8); }
}

@keyframes shine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scale-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-bottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom-in {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(59, 125, 214, 0.5),
                     0 0 20px rgba(59, 125, 214, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(59, 125, 214, 0.8),
                     0 0 40px rgba(59, 125, 214, 0.5);
    }
}

@keyframes border-dance {
    0%, 100% {
        border-color: var(--primary);
    }
    25% {
        border-color: var(--accent);
    }
    50% {
        border-color: var(--accent-light);
    }
    75% {
        border-color: var(--primary-light);
    }
}

/* ===================================
   ENHANCED NAVBAR WITH GLASSMORPHISM
   =================================== */

.modern-nav {
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    animation: slide-in-bottom 0.8s ease;
}

.brand-logo {
    animation: float 3s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.brand-logo:hover {
    animation: rotate-slow 2s linear infinite;
}

.brand-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

.modern-links a {
    position: relative;
    overflow: hidden;
}

.modern-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
}

.modern-links a:hover::before,
.modern-links a.active::before {
    width: 100%;
}

.modern-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 125, 214, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-links a:hover::after {
    width: 100%;
    height: 100%;
}

.nav-cta {
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

/* ===================================
   ANIMATED MARQUEE ENHANCEMENTS
   =================================== */

.modern-marquee {
    position: relative;
    overflow: hidden;
}

.modern-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(30, 58, 95, 1) 0%,
        rgba(42, 77, 125, 1) 50%,
        rgba(30, 58, 95, 1) 100%);
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 200%;
}

.marquee-content {
    position: relative;
    z-index: 1;
}

.marquee-item {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.marquee-item:nth-child(1) { --i: 0; }
.marquee-item:nth-child(3) { --i: 1; }
.marquee-item:nth-child(5) { --i: 2; }
.marquee-item:nth-child(7) { --i: 3; }
.marquee-item:nth-child(9) { --i: 4; }

/* ===================================
   HERO SECTION - EXTRAORDINARY
   =================================== */

.hero-modern {
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59,125,214,0.1) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

.hero-particles {
    background: 
        radial-gradient(circle at 20% 50%, rgba(59,125,214,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(90,158,240,0.15) 0%, transparent 50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Add floating particles */
.hero-modern::after {
    content: '✨';
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite, 
               shimmer 3s ease-in-out infinite;
    top: 20%;
    left: 10%;
}

.hero-badge {
    animation: zoom-in 0.8s ease, pulse-glow 3s ease-in-out infinite;
}

.hero-title-modern {
    animation: slide-in-bottom 0.8s ease 0.2s both;
}

.gradient-text {
    animation: gradient-shift 3s ease infinite, text-glow 2s ease-in-out infinite;
    background-size: 200% 200%;
}

.hero-subtitle-modern {
    animation: slide-in-bottom 0.8s ease 0.4s both;
}

.stat-item {
    animation: zoom-in 0.8s ease both;
    animation-delay: calc(0.6s + var(--i) * 0.1s);
}

.stat-item:nth-child(1) { --i: 0; }
.stat-item:nth-child(3) { --i: 1; }
.stat-item:nth-child(5) { --i: 2; }

.stat-number {
    animation: scale-pulse 2s ease-in-out infinite;
}

.btn-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-primary-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59,125,214,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary-modern:hover::after {
    left: 100%;
}

/* ===================================
   ENHANCED CARD ANIMATIONS
   =================================== */

.feature-card-modern,
.product-card-home,
.product-card-main,
.industry-card-modern,
.trust-item-modern,
.value-card,
.cert-card,
.quality-feature-box,
.info-card-modern,
.faq-item-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-card-modern::before,
.product-card-home::before,
.product-card-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59,125,214,0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.feature-card-modern:hover::before,
.product-card-home:hover::before,
.product-card-main:hover::before {
    transform: scale(1);
}

.feature-card-modern:hover,
.product-card-home:hover,
.product-card-main:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Shimmer effect on cards */
.feature-card-modern::after,
.product-card-main::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.feature-icon-modern,
.industry-icon,
.trust-icon-modern,
.value-icon,
.cert-icon,
.quality-icon-large {
    animation: float 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-icon-modern,
.industry-card-modern:hover .industry-icon,
.trust-item-modern:hover .trust-icon-modern {
    animation: none;
    transform: scale(1.2) rotate(10deg);
}

/* ===================================
   PRODUCT CARDS EXTRAORDINARY
   =================================== */

.product-image-main {
    position: relative;
}

.product-image-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(59,125,214,0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-main:hover .product-image-main::after {
    opacity: 1;
}

.product-badge-main {
    animation: float 2s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
}

.overlay-text {
    animation: slide-in-right 0.5s ease;
}

.feature-tag {
    transition: all 0.3s ease;
    position: relative;
}

.feature-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.feature-tag:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.feature-tag:hover::before {
    opacity: 1;
}

/* ===================================
   SECTION ANIMATIONS
   =================================== */

.section-tag {
    animation: slide-in-left 0.6s ease;
    position: relative;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    animation: shimmer 2s infinite;
}

.section-title-modern {
    animation: slide-in-bottom 0.8s ease;
    position: relative;
}

.section-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: shimmer 3s infinite;
}

/* ===================================
   MESH CIRCLES - 3D EFFECT
   =================================== */

.mesh-circle-modern {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.mesh-circle-modern::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
}

.mesh-circle-modern:hover {
    transform: translateY(-15px) rotateY(180deg) scale(1.15);
    box-shadow: 0 20px 40px rgba(30,58,95,0.6);
}

.mesh-circle-modern:hover::before {
    opacity: 0.5;
}

/* ===================================
   FORM ENHANCEMENTS
   =================================== */

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    animation: border-dance 2s infinite;
    transform: scale(1.02);
}

.btn-submit-modern {
    position: relative;
    overflow: hidden;
}

.btn-submit-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit-modern:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit-modern:active {
    transform: scale(0.95);
}

/* ===================================
   FOOTER ANIMATIONS
   =================================== */

.footer-modern {
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    animation: shimmer 3s infinite;
}

.footer-links a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-links a:hover {
    padding-left: 10px;
    color: var(--accent-light);
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease both;
}

/* Stagger animation for grid items */
.products-grid-main > *:nth-child(1) { animation-delay: 0.1s; }
.products-grid-main > *:nth-child(2) { animation-delay: 0.2s; }
.products-grid-main > *:nth-child(3) { animation-delay: 0.3s; }
.products-grid-main > *:nth-child(4) { animation-delay: 0.4s; }
.products-grid-main > *:nth-child(5) { animation-delay: 0.5s; }
.products-grid-main > *:nth-child(6) { animation-delay: 0.6s; }
.products-grid-main > *:nth-child(7) { animation-delay: 0.7s; }

/* ===================================
   GLASSMORPHISM EFFECTS
   =================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-card-modern,
.quick-method-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* ===================================
   LOADING SPINNER (Optional)
   =================================== */

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===================================
   RIPPLE EFFECT ON CLICK
   =================================== */

.ripple-container {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* ===================================
   TEXT EFFECTS
   =================================== */

.gradient-text-animated {
    background: linear-gradient(90deg, 
        var(--primary) 0%,
        var(--accent) 50%,
        var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s linear infinite;
}

.text-shadow-glow {
    animation: text-glow 2s ease-in-out infinite;
}

/* ===================================
   PARALLAX EFFECT (Simple)
   =================================== */

.parallax-slow {
    transform: translateY(calc(var(--scroll) * 0.3));
}

.parallax-medium {
    transform: translateY(calc(var(--scroll) * 0.5));
}

/* ===================================
   ENHANCED HOVER STATES
   =================================== */

.enhanced-hover {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.enhanced-hover:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

/* ===================================
   NEON GLOW EFFECT
   =================================== */

.neon-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.neon-border {
    border: 2px solid var(--accent);
    box-shadow: 0 0 10px var(--accent),
                inset 0 0 10px var(--accent);
    animation: border-dance 3s infinite;
}

/* ===================================
   PARTICLE BACKGROUND (Optional)
   =================================== */

.particle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-light);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
}

/* ===================================
   SMOOTH SCROLL
   =================================== */

html {
    scroll-behavior: smooth;
}

/* ===================================
   PERFORMANCE OPTIMIZATION
   =================================== */

* {
    will-change: auto;
}

.product-card-main,
.feature-card-modern,
.btn-modern {
    will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
