:root {
    /* Typography Scale per Chart */
    --h1-size: 56px;
    --h1-height: 1.3;
    --h2-size: 45px;
    --h2-height: 1.4;
    --h3-size: 36px;
    --h3-height: 1.5;
    --h4-size: 28px;
    --h4-height: 1.2;

    --text-24: 30px;
    --line-24: 1.2;
    --text-22: 22px;
    --line-22: 1.5;
    --text-20: 20px;
    --line-20: 1.5;
    --text-18: 18px;
    --line-18: 1.4;
    --text-16: 16px;
    --line-16: 1.5;
    --text-14: 14px;
    --line-14: 1.0;
    --text-10: 10px;
    --line-10: 1.2;

    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #FFFFFF;
    color: #1a1a1a;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Global Layout Constraints */
.container,
.hero-card,
.about-section,
.vision-container,
.products-carousel-wrapper,
.why-choose-us-section,
.principles-section,
.enquiry-container,
.footer-top {
    max-width: var(--max-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
}

/* Typography Defaults */
h1,
.hero-title,
.enquiry-title-col h2 {
    font-size: var(--h1-size) !important;
    line-height: var(--h1-height) !important;
}

h2,
.section-title,
.vision-title {
    font-size: var(--h2-size) !important;
    line-height: var(--h2-height) !important;
}

h3,
.footer-col h3 {
    font-size: var(--h3-size) !important;
    line-height: var(--h3-height) !important;
}

h4 {
    font-size: var(--h4-size) !important;
    line-height: var(--h4-height) !important;
}

p {
    font-size: var(--text-16);
    line-height: var(--line-16);
}

/* Global Navigation bar */
.navbar {
    background: white;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: var(--text-16);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0052A3;
}

.logo {
    display: block;
    cursor: pointer;
}

/* REVERTED CTA: Green Pill */
.get-in-touch-header {
    background: #00BA38;
    color: white;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.get-in-touch-header .circle-arrow {
    background: white;
    color: #00BA38;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.get-in-touch-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.get-in-touch-header::after {
    display: none;
    /* Remove circle arrow */
}

/* Full Width Hero Banner */
.hero-section {
    padding: 0 !important;
    /* Remove section padding */
    width: 100%;
}

.hero-card {
    background: linear-gradient(135deg, #0d47a1 0%, #002171 100%);
    border-radius: 32px !important;
    max-width: 1200px !important;
    margin: 2rem auto !important;
    padding: 3rem 4rem;
    min-height: 540px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
    color: white;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
}

/* Hero Image Fill Container */
.hero-image .image-fill-container {
    background-color: transparent;
    border-radius: 16px;
    min-height: 400px;
}

.hero-image .image-fill {
    border-radius: 16px;
}

/* Hero Typography */
.hero-label {
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-family: 'Hedvig Letters Serif', serif !important;
    font-size: 64px !important;
    /* Increased for impact */
    font-weight: 400 !important;
    /* Regular weight */
    line-height: 1.1 !important;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    background: white;
    color: #1a1a1a;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.hero-cta .circle-arrow {
    background: #00BA38;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Product Table Styles (Inner Pages) */
.category-header {
    background: #003278;
    /* Dark Blue */
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px 12px 0 0;
    font-size: 24px;
    font-family: 'Hedvig Letters Serif', serif;
    font-weight: 400;
    margin-top: 3rem;
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.product-table-container {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    background: #E3F2FD;
    /* Light Blue Rectangular Table */
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
}

.product-table th {
    background: #003278;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 600;
}

.product-table td {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #003278;
}

.product-table tr:last-child td {
    border-bottom: none;
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 900px !important;
    /* Narrower for text readability */
}

.section-label {
    text-align: center;
    font-size: 14px;
    color: #0052A3;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    text-transform: none;
}

.section-title {
    font-family: 'Hedvig Letters Serif', Georgia, serif;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.about-content {
    font-size: var(--text-18);
    line-height: var(--line-18);
    color: #4a4a4a;
    text-align: justify;
    text-align-last: center;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content strong {
    color: #0052A3;
    font-weight: 600;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, #0066FF 0%, #003278 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.vision-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vision-label {
    font-size: var(--text-16);
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.vision-title {
    font-family: 'Hedvig Letters Serif', serif !important;
    font-size: 45px !important;
    font-weight: 400 !important;
    line-height: var(--h2-height) !important;
    margin-bottom: 3rem;
    max-width: 900px;
}

.vision-cta {
    background: #00BA38;
    color: white;
    padding: 0.75rem 0.75rem 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.vision-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.vision-cta .circle-arrow {
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00BA38;
    font-size: 18px;
}

/* Products Section */
.products-section {
    padding: 5rem 2rem;
    overflow: hidden;
    background: #F9FAFB;
    min-height: 700px;
    width: 100%;
}

.products-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 500px;
}

.products-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Navigation Arrow Buttons */
.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0066FF;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
    flex-shrink: 0;
}

.nav-arrow:hover {
    background: #003278;
    transform: scale(1.1);
}

.nav-arrow i {
    font-size: 24px;
    color: white;
}


.product-card-3d {
    border-radius: 24px;
    overflow: hidden;
    position: absolute;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #000;
}

.product-card-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.active-card img {
    opacity: 0.85;
}

.card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: white;
    text-align: center;
    z-index: 2;
}

.card-content-overlay h3 {
    font-size: 2rem !important;
    margin-bottom: 0.5rem;
    font-family: 'Hedvig Letters Serif', Georgia, serif;
}

.card-content-overlay p {
    font-size: var(--text-16);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.active-card {
    width: 500px;
    height: 400px;
    z-index: 10;
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: none;
}

.product-list-btn {
    background: white;
    color: #1a1a1a;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.product-list-btn .circle-arrow {
    background: #0066FF;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.product-list-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us */
.why-choose-us-section {
    padding: 5rem 2rem;
    min-height: 600px;
    width: 100%;
}

.partnership-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin-top: 3rem;
    height: 483px;
}

.partnership-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partnership-content h3 {
    font-size: var(--h3-size) !important;
    margin-bottom: 2.5rem;
    font-family: 'Hedvig Letters Serif', serif;
    font-weight: 400;
    color: #1a1a1a;
}

.checklist-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: #003278;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ... unchanged ... */

.check-text h4 {
    font-size: var(--h4-size) !important;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #003278;
}

.check-text p {
    font-size: var(--text-16);
    color: #4a4a4a;
}

.partnership-image {
    height: 100%;
    width: 100%;
    position: relative;
}

.partnership-image .image-fill {
    background-image: url('../img/fills/laboratory.jpg');
    background-position: center center;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    /* Anchor to bottom where scientist is */
    display: block;
    /* Removes bottom spacing */
}

/* Principles Section */
.principles-section {
    padding: 5rem 2rem;
    margin: 0 auto;
    text-align: center;
    min-height: 250px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.principle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    height: 173px;
    width: auto;
    justify-content: flex-start;
}

.principle-icon {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px;
    min-height: 64px;
    max-width: 64px;
    max-height: 64px;
    background: #003278;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    overflow: hidden;
    flex-shrink: 0;
}

.principle-icon i {
    font-size: 32px !important;
    color: white;
}

.principle-card h3 {
    font-size: 24px !important;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.principle-card p {
    font-size: var(--text-16);
    color: #4a4a4a;
    max-width: 300px;
}

/* Enquiry Section V2 */
.enquiry-section-v2 {
    background: linear-gradient(135deg, #0066FF 0%, #003278 100%);
    padding: 5rem 2rem;
    color: white;
    min-height: 600px;
}

.enquiry-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
    padding: 0;
}

.enquiry-heading {
    font-family: 'Hedvig Letters Serif', serif !important;
    font-weight: 400 !important;
    font-size: 56px !important;
    line-height: 1.2 !important;
    color: white !important;
}

.enquiry-form-col {
    padding: 2rem;
}

.form-group label {
    display: block;
    font-size: var(--text-14);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.half {
    width: 100%;
}

.enquiry-section-v2 input,
.enquiry-section-v2 textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(30, 80, 180, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: var(--text-16);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.submit-btn {
    background: #0066FF;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--text-16);
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.corporate-footer {
    background: white;
    padding: 5rem 2rem 2rem;
    color: #1a1a1a;
    min-height: 400px;
    width: 100%;
}

.footer-top {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 5rem;
    margin-bottom: 3rem;
}

.footer-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h3 {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    text-align: left;
}


.contact-links p {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.2s;
}

.address-text,
.footer-col p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.email-link {
    font-size: 16px;
    color: #0066FF;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.email-link:hover {
    text-decoration: underline;
}

.footer-links {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.footer-links a {
    font-size: 15px;
    color: #0066FF;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Utils & Responsive */
.side-card {
    width: 500px;
    height: 400px;
    z-index: 5;
    opacity: 0.4;
    filter: blur(2px) grayscale(50%);
}

.left-card {
    transform: translateX(-65%) scale(0.85);
}

.right-card {
    transform: translateX(65%) scale(0.85);
}

.hidden-card {
    transform: translateX(0) scale(0.6);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.side-card .card-content-overlay p,
.side-card .card-content-overlay .product-list-btn {
    display: none;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0052A3;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1000px) {

    .hero-card,
    .partnership-container,
    .enquiry-container,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-title,
    .enquiry-title-col h2,
    .vision-title {
        font-size: 32px !important;
    }

    .section-title {
        font-size: 28px !important;
    }

    .active-card {
        width: 90%;
        height: 400px;
    }

    .side-card {
        display: none;
    }

    .products-carousel-wrapper {
        gap: 0;
    }

    .navbar {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-card {
        padding: 2rem 2.5rem;
    }

    .enquiry-container {
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partnership-content,
    .hero-card {
        padding: 2rem;
    }

    .about-section,
    .products-section,
    .why-choose-us-section,
    .principles-section {
        padding: 3rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .footer-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .enquiry-section-v2 {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 24px !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Start invisible */
    animation-delay: 0.2s;
    /* Slight delay */
}

/* Specific Updates requested */
.about-section .section-title {
    color: #003278 !important;
}

.about-section .about-content {
    color: #003278 !important;
}

/* Navigation Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 280px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-radius: 12px;
    padding: 0.75rem 0;
    top: 100%;
    left: 0;
    border: 1px solid #f0f0f0;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown-content a {
    color: #1a1a1a;
    padding: 14px 24px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #0052A3;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section Adjustments */
.hero-title {
    line-height: 1.1 !important;
    /* Reduced line spacing */
}

.hero-image {
    width: 100%;
    height: 440px;
    display: flex;
    justify-content: flex-end;
}

.hero-image .image-fill-container {
    width: 100%;
    max-width: 580px;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    /* Extra blue border/glow effect from design */
    border: 8px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image .image-fill {
    transform: scale(1.02);
}

/* Vision Section Adjustments */
/* WhatsApp Button */
.whatsapp-pill {
    background: #00BA38;
    color: white;
    padding: 0.5rem 0.5rem 0.5rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    transition: all 0.3s;
}

.whatsapp-pill .circle-arrow {
    background: white;
    color: #00BA38;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.whatsapp-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
}

/* Strict Alignment Enforcements */
.section-title,
.products-section h2,
.why-choose-us-section h2,
.principles-section h2,
.about-section h2,
.vision-title {
    text-align: center !important;
}

.vision-title+p,
.about-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Font Weight Enforcement */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea,
span,
div,
li {
    font-weight: 400 !important;
}

strong,
b,
.get-in-touch-header,
.hero-cta,
.vision-cta,
.product-list-btn,
.whatsapp-pill,
.footer-main-heading,
.footer-col h3 {
    font-weight: 600 !important;
}

/* Ensure Phosphor Icons render correctly */
i.ph {
    font-weight: normal !important;
    /* Icons usually don't need 400 */
    vertical-align: middle;
}

/* ==========================================================================
   Product Pages & Technical Search
   ========================================================================== */

.product-hero {
    background: linear-gradient(135deg, #0052A3 0%, #002D5A 100%);
    padding: 10rem 2rem 6rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-hero h1 {
    font-family: 'Hedvig Letters Serif', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.search-container {
    max-width: 700px;
    margin: -2.5rem auto 4rem;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.search-widget-wrapper {
    position: relative;
    background: white;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.search-widget-wrapper:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.search-icon {
    font-size: 1.5rem;
    color: #0066FF;
    margin-right: 1rem;
}

.search-widget {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    color: #1a1a1a;
}

.search-widget::placeholder {
    color: #999;
}

.product-category-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.category-header {
    background: #002D5A;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 45, 90, 0.2);
}

.technical-table-wrapper {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    margin-bottom: 4rem;
}

.technical-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.technical-table thead {
    background: #F8FAFF;
}

.technical-table th {
    padding: 1.5rem 2rem;
    color: #0052A3;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #EBF4FF;
}

.technical-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #333;
    transition: background 0.2s;
}

.technical-table tr:last-child td {
    border-bottom: none;
}

.technical-table tr:hover td {
    background: #FAFCFF;
}

.sr-no {
    width: 100px;
    color: #999 !important;
    font-weight: 500;
}

.cas-no {
    font-weight: 600;
    color: #0052A3 !important;
    font-family: 'Inter', sans-serif;
}

.product-name {
    color: #333;
}

.technical-table .product-name a {
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 400 !important;
}

.technical-table .product-name a:hover {
    color: #333 !important;
    text-decoration: none !important;
}

.no-results {
    display: none;
    text-align: center;
    padding: 5rem 2rem;
    background: #fdfdfd;
    border-radius: 24px;
    border: 2px dashed #eee;
    margin: 2rem 0;
}

.no-results i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
    display: block;
}

.no-results p {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }

    .technical-table th,
    .technical-table td {
        padding: 1rem;
    }

    .technical-table-wrapper {
        overflow-x: auto;
    }
}

/* Navbar Logo */
.navbar-logo-img {
    height: 45px;
    width: auto;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

/* Category Sections Spacing */
.category-search-gap {
    margin-bottom: 2rem;
}

/* Search Results UI */
.no-results-box {
    display: none;
    text-align: center;
    padding: 2rem;
}

/* iframe map styling */
.footer-map-frame {
    border: 0;
    border-radius: 12px;
}

/* ==========================================================================
   Image Fill System (Layout Protection)
   ========================================================================== */

.image-fill-container {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    /* Light fallback */
    width: 100%;
    height: 100%;
}

.image-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

/* Product Page Hero Overlays */
.product-hero .image-fill-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.product-hero h1,
.product-hero p {
    position: relative;
    z-index: 1;
}

.image-fill-container:hover .image-fill {
    transform: scale(1.05);
    /* Subtle zoom effect for all fills */
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {

    /* FORCE HIDE Desktop Elements */
    .nav-links,
    .get-in-touch-header {
        display: none !important;
    }

    .navbar {
        padding: 0.8rem 1.2rem;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .navbar-logo-img {
        height: 32px !important;
        /* Constrain huge logo */
        width: auto;
    }

    /* Mobile Hamburger Button */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        z-index: 1001;
    }

    /* Mobile Dropdown Menu */
    .mobile-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        border-bottom: 1px solid #eee;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        z-index: 1000;
        padding-bottom: 1rem;
    }

    .mobile-dropdown.show {
        display: flex !important;
    }

    .mobile-dropdown a {
        padding: 1rem 1.5rem;
        text-decoration: none;
        color: #1a1a1a;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid #f5f5f5;
        font-family: 'Inter', sans-serif;
        text-align: left;
    }

    .mobile-products-toggle {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Submenu (Products) */
    .mobile-products-list {
        display: none;
        flex-direction: column;
        background: #fafafa;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .mobile-products-list a {
        padding-left: 2.5rem;
        font-size: 14px;
        color: #555;
        border-bottom: 1px solid #eee;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
}

/* Hide mobile elements on desktop */
@media (min-width: 769px) {

    .mobile-menu-btn,
    .mobile-dropdown {
        display: none !important;
    }
}

/* Mobile Hero Reorder (Image above Text) */
@media (max-width: 768px) {
    .hero-card {
        display: flex !important;
        flex-direction: column-reverse;
        gap: 2rem;
        padding: 2rem 1.5rem !important;
        text-align: center;
        min-height: auto;
        /* Allow height to adjust */
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
        height: auto;
        /* Reset fixed height if any */
        margin-bottom: 1rem;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Center the CTA button container */
    .hero-cta {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem !important;
        /* Ensure readable title on mobile */
    }
}

/* Footer Map Overlay */
.map-container-footer {
    position: relative !important;
}

.map-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    background: transparent;
}

/* Multi-Product Enquiry Styles */
.product-tag {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin: 0.25rem;
    border: 1px solid #E0E0E0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    gap: 8px;
}

.product-tag:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.product-tag .remove-tag {
    background: #f5f5f5;
    border: none;
    color: #666;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
    padding: 0;
}

.product-tag .remove-tag:hover {
    background: #ffebd7;
    color: #d32f2f;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    min-height: 48px;
    padding: 0;
    border: none;
    background: transparent;
}

.add-to-enquiry-btn {
    background: transparent;
    border: 2px solid #0066FF;
    color: #0066FF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 0.5rem;
    vertical-align: middle;
    flex-shrink: 0;
}

.add-to-enquiry-btn:hover {
    background: #0066FF;
    color: white;
}

.add-to-enquiry-btn.added {
    background: #00BA38;
    border-color: #00BA38;
    color: white;
    cursor: default;
}

.product-name-cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Dynamic CTA Animation */
.get-in-touch-header.active-enquiry {
    background: #003278 !important;
    /* Brand Dark Blue */
    color: white !important;
    animation: pulse-blue 2s infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.get-in-touch-header.active-enquiry:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 50, 120, 0.3);
    background: #00255c !important;
    /* Slightly darker on hover */
    animation: none;
    /* Pause pulse on hover for clarity */
}

.get-in-touch-header.active-enquiry .circle-arrow {
    background: white;
    color: #003278;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.get-in-touch-header.active-enquiry:hover .circle-arrow {
    transform: translateX(4px) rotate(-45deg);
    /* Paper plane flight action */
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    15% {
        opacity: 1;
        transform: translateY(0);
    }

    85% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 50, 120, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 50, 120, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 50, 120, 0);
    }
}

/* Product Index Page Buttons */
.enquiry-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #0066FF;
    color: #0066FF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #0066FF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* SEO Crawlability Links - Hidden Below and Non-Interactive */
.seo-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1;
    /* Hide below unclickable objects */
}

.product-name-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-name-cell a:first-child {
    flex-grow: 1;
}

/* ==========================================================================
   New Product Detail Pages
   ========================================================================== */

.product-detail-page {
    background: #FFFFFF;
}

.product-hero-detailed {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
    text-align: left;
}

.hero-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cas-label {
    display: inline-block;
    background: #EBF4FF;
    color: #0052A3;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-hero-detailed h1 {
    font-family: 'Hedvig Letters Serif', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2 !important;
}

.product-intro {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

.btn-primary {
    background: #0066FF;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.btn-primary:hover {
    background: #0052A3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
    color: white !important;
}

.btn-primary.added {
    background: #00BA38 !important;
    border-color: #00BA38 !important;
    color: white !important;
    cursor: default;
    transform: none !important;
    box-shadow: none !important;
}

.btn-outline {
    background: transparent;
    border: 2px solid #0066FF;
    color: #0066FF;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.btn-outline:hover {
    background: #F0F7FF;
    transform: translateY(-2px);
    color: #0066FF !important;
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 8rem;
}

.info-card {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    border-color: #EBF4FF;
}

.info-card i {
    font-size: 3rem;
    color: #0066FF;
    margin-bottom: 2rem;
    display: block;
}

.info-card h3 {
    font-size: 1.5rem !important;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600 !important;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .product-hero-detailed {
        padding-top: 6rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-outline {
        justify-content: center;
    }
}