:root {
    --topbar-height: 64px;
    --menubar-height: 40px;
}

/* ===== RESET ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

body {
    background: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    padding-top: 90px;
}

/* ===== HEADER ===== */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

/* ===== TOPBAR - First Row ===== */
.topbar {
    display: grid;
    /* Desktop: Logo - Search - Contact */
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

/* ===== LOGO + BRAND ===== */
.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
}

.site-logo {
    height: 45px;
    /* Optimized height */
    width: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.logo-link:hover .site-logo {
    transform: scale(1.05);
}

.site-name {
    font-family: "Algerian", "Impact", serif;
    /* Fallback added */
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #4a1e8a 0%, #800080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: color 0.3s ease;
}


/* ===== SEARCH - Center Column ===== */
.search-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    justify-self: center;
    display: flex;
}

.search-wrap input {
    flex: 1;
    padding: 12px 55px 12px 18px;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #e2e8f0, #cbd5e1) border-box;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-wrap input:focus {
    outline: none;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #800080, #800080) border-box;
    box-shadow: 0 4px 20px rgba(128, 0, 128, 0.2);
    transform: translateY(-1px);
}

.search-wrap input::placeholder {
    color: #94a3b8;
}

.search-wrap button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: #800080;
    color: white;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.search-wrap button:hover {
    background: #800080;
    transform: translateY(-50%) scale(1.02);
}

/* ===== CONTACT - Right Column ===== */
.right-contact {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.right-contact span,
.email-link span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #475569;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.email-link {
    text-decoration: none;
}

.right-contact span:hover,
.email-link span:hover {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #800080;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 128, 0.2);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ===== NAVIGATION - Second Row ===== */
.menubar {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 0 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu li {
    position: relative;
}

.menu li a {
    display: block;
    padding: 10px 12px;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    border-radius: 8px;
}

.menu li a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: linear-gradient(90deg, #800080, #800080);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.menu li a:hover {
    color: #800080;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.menu li a:hover::before {
    transform: scaleX(1);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

#dropmenudiv {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    z-index: 1000;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.has-dropdown:hover #dropmenudiv {
    display: block;
}

#dropmenudiv a {
    display: block;
    padding: 13px 20px;
    color: #800080;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: none;
    font-weight: 500;
    border-left: 3px solid transparent;
}

#dropmenudiv a:hover {
    background: linear-gradient(90deg, #f5f3ff 0%, #ede9fe 100%);
    padding-left: 24px;
    border-left-color: #800080;
}

/* Search Results Box */
.search-results-box {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
}

.search-results-box div {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-results-box div:hover {
    background: #f8f9fa;
}

.search-results-box div:last-child {
    border-bottom: none;
}

.search-results-box div {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.search-results-box div:hover {
    background: #f8f9fa;
}

.search-results-box div:last-child {
    border-bottom: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    body {
        padding-top: 150px;
    }

    .topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .site-logo {
        height: 54px;
    }

    .site-name {
        font-size: 24px;
        letter-spacing: 1.6px;
        padding-bottom: 18px;
    }

    .site-name::after {
        height: 14px;
    }

    .search-wrap {
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }

    .right-contact {
        display: none;
    }

    /* MOBILE MENU */
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #800080;
    }

    .menu.mobile-open {
        display: flex;
    }

    .menu li {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, .2);
    }

    .menu li a {
        padding: 14px 0;
        color: #fff;
    }
}

/* FIX HEADER GAP */
.slider {

    width: 100%;
    height: calc(100vh - 250px);
    position: relative;
    overflow: hidden;
    background: #fff;
}


/* ===== EXPERTISE SECTION ===== */
.expertise-section {
    padding: 20px 0;
    background: #fff;
    text-align: center;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    background-color: #000;
    /* Dark background behind the semi-transparent image */
    z-index: 1;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* The requested 0.5 opacity for the image only */
    z-index: -1;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(145, 131, 131, 0.15);
    /* Keep the overlay if needed, or remove if the image opacity is enough */
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    /* Ensure active slide is on top */
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 100%;
    z-index: 2;
    padding: 0 20px;

}

.slide-content h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 17px;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #fff;
    opacity: .6;
    cursor: pointer;
}

.dots button.active {
    opacity: 1;
    background: #ff5722;
}

/* ✅ MOBILE: SHOW SLIDER WITH ADJUSTED HEIGHT */
@media(max-width:768px) {
    .slider {
        height: 300px;
        display: block;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .dots button {
        width: 8px;
        height: 8px;
    }
}

.new-products {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 5px 20px;
    background: #f0f4f8;
}

.np-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 10px; */
    padding: 0 10px;
}

.np-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.view-all {
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(128, 0, 128, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.view-all:hover {
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 128, 0.5);
    color: #fff;
    text-decoration: none;
}

.np-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.np-arrow:hover {
    background-color: #800080;
    color: white;
    border-color: #800080;
}

.np-arrow.left {
    left: 1px;
}

.np-arrow.right {
    right: -0.5px;
}

/* --- Slider Container --- */
.np-wrapper {
    position: relative;
    padding: 0 50px;
    overflow: hidden;
}

.np-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.np-container::-webkit-scrollbar {
    display: none;
}

/* --- Product Card Styling --- */
.np-card {
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.np-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.np-card * {
    background-color: transparent;
}

.np-title {
    font-size: 16px;
    margin: 0;
    color: #800080 !important;
    line-height: 1.4;
    padding: 12px 15px;
    display: block;
    font-weight: 600;
    text-align: center;
    background: none !important;
    background-color: transparent !important;
    min-height: 50px;
}

.np-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    background-color: transparent;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.np-img-wrapper::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
    line-height: 1;
}

.np-img-wrapper:hover::after {
    opacity: 1;
}

.np-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.np-card:hover .np-img-wrapper img {
    transform: scale(1.05);
}

.watermark {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 5px;
    font-size: 10px;
    border-radius: 3px;
    color: #555;
    pointer-events: none;
}

.np-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.np-cas {
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    color: #444;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.np-cas .np-title {
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
    background: transparent !important;
    background-color: transparent !important;
}

.np-cas p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.np-actions {
    margin-top: auto;
    display: flex;
    width: 100%;
    gap: 10px;
    padding: 12px 15px;
    border-top: 1px solid #f0f0f0;
}

.np-actions a {
    text-decoration: none;
    font-size: 10px;
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
    flex: 1;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-more-details {
    background-color: #f0f0f0;
    color: #800080;

    border: none;
}

.btn-more-details:hover {
    background-color: #e0e0e0;
}

.btn-enquire {
    background-color: #800080;
    color: #fff;
    border: none;
}

.btn-enquire:hover {
    background-color: #800080;
}

/* --- Responsive Design --- */
/* Tablet: Show 3 items */
@media (max-width: 1024px) {
    .np-card {
        flex: 0 0 calc(33.333% - 13.3px);
    }
}

/* Mobile Landscape: Show 2 items */
@media (max-width: 768px) {
    .np-card {
        flex: 0 0 calc(50% - 10px);
    }

    .np-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .np-arrow.left {
        left: 0;
    }

    .np-arrow.right {
        right: 0;
    }

    .np-wrapper {
        padding: 0 40px;
    }
}

/* Small Mobile: Show 1 item */
@media (max-width: 480px) {
    .np-card {
        flex: 0 0 100%;
    }

    .np-title {
        font-size: 14px;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px 0;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #800080;
    background: #fff;
    color: #800080;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: #800080;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(128, 0, 128, 0.3);
}

.page-btn.active {
    background: #800080;
    color: #fff;
    cursor: default;
    box-shadow: 0 4px 12px rgba(128, 0, 128, 0.4);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .pagination {
        gap: 5px;
    }

    .page-btn {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
        padding: 6px 10px;
    }
}

/* Image Zoom Modal */
.image-zoom-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-zoom-modal.active {
    display: flex;
}

.zoom-content {
    max-width: 600px;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.zoom-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}

.zoom-close {
    position: absolute;
    top: -15px;
    right: -15px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #e67e22;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.zoom-close:hover {
    background: #d35400;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .zoom-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .zoom-content {
        padding: 10px;
    }
}

/* Expertise Section */
.expertise-section {
    width: 100%;
    background: #fff;
    padding: 80px 6%;
}

.expertise-section h2 {
    font-size: 42px;
    color: #4a1e8a;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 700;
}

.expertise-section .subtitle {
    text-align: left;
    font-size: 20px;
    color: #444;
    margin-bottom: 50px;
}

/* GRID */
.expertise-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

/* CARD */
.expertise-card {
    background: #fff;
    text-align: left;
}

/* TOP ROW — ICON + HEADING */
.card-top {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: -10px;
}

/* Icon */
.card-icon {
    width: 55px;
    height: auto;
}

/* Heading beside icon */
.expertise-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #4a1e8a;
    margin: 0;
    line-height: 1.4;
}

/* ALIGN PARAGRAPH + LINK BELOW HEADING */
.expertise-card .text-content {
    margin-left: 70px;
}

/* Paragraph */
.expertise-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Read More link */
.expertise-card a {
    font-size: 15px;
    color: #800080;
    text-decoration: none;
    font-weight: 600;
}

.expertise-card a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .expertise-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-cards {
        grid-template-columns: 1fr;
    }

    .expertise-section h2 {
        font-size: 32px;
    }

    .expertise-section .subtitle {
        font-size: 18px;
    }

    .expertise-card .text-content {
        margin-left: 0;
    }
}

.experience-section {
    background: url(https://chemicea.com/assets/images/header-footer/homepage-experience.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    padding: 10px 0 !important;
    color: #fff;
    position: relative;
    text-align: center;

}

.experience-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.experience-section .container {
    position: relative;
    z-index: 2;
}

.experience-section .container a {
    display: inline-block;
    color: #fff;
    background-color: #800080;
    text-decoration: none;
    border: none;
    padding: 0.8rem 2.3rem;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

/* Button hover effect */
.experience-section .container a:hover {
    background-color: #800080;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.experience-section .main-heading {
    font-size: 3rem;
    color: #fff;
    /* margin-bottom: 1rem; */
}

.experience-text {
    font-size: 1.5rem;
    color: #f1f1f1;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.experienc-btn {
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .experience-section {
        padding: 4rem 1rem;
    }

    .experience-section .main-heading {
        font-size: 2rem;
    }

    .experience-text {
        font-size: 1.2rem;
    }

    .experienc-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Promo Section Container */
.promo-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
}

/* Card Styling */
.banner-bg {
    flex: 1 1 calc(50% - 2rem);
    border-radius: 15px;
    text-align: center;
    color: #fff;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-bg:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Overlay for better text visibility */
.banner-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 15px;
    z-index: 1;
}

/* Text layering */
.banner-bg h2,
.banner-bg p,
.banner-bg a {
    position: relative;
    z-index: 2;
}

/* Heading Styling */
.banner-bg h2 {
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Paragraph Styling */
.banner-bg p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 400px;
    color: #f9f9f9;
}

/* Buttons as card-like elements */
.banner-bg a {
    display: inline-block;
    color: #fff;
    background-color: #800080;
    text-decoration: none;
    border: none;
    padding: 0.8rem 2.3rem;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

/* Button hover effect */
.banner-bg a:hover {
    background-color: #800080;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Specific background images */
.banner-bg-1 {
    background-image: url('/img/Picture1.png');
}

.banner-bg-2 {
    background-image: url('/img/Picture2.png');
}

/* Responsive for tablets and mobile */
@media (max-width: 768px) {
    .banner-bg {
        flex: 1 1 100%;
        min-height: 250px;
        padding: 2rem 1rem;
    }

    .banner-bg h2 {
        font-size: 1.5rem;
    }

    .banner-bg p {
        font-size: 1rem;
    }

    .banner-bg a {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* Medium device display */
@media (min-width: 768px) {
    .d-md-inline-block {
        display: inline-block !important;
    }
}

/* ==========================
   CLEAN & OPTIMIZED FOOTER CSS
   ========================== */

footer {
    background: #f5f5f5;
    margin-top: 0 !important;
    padding-top: 0 !important;
    font-family: 'Outfit', sans-serif;
}

/* FOOTER BG */
.footer-bg {
    background: #e6e6e6;
    padding: 3rem 3rem 1rem;
}

/* REMOVE COLUMN GAP FIX */
footer .row>div {
    display: block !important;
}

/* HEADINGS */
.footer-bg h5 {
    font-weight: 600;
    color: #4a1e8a;
    margin-bottom: .4rem;
}

.footer-bg hr {
    margin: 0 0 1rem 0;
    border-color: #4a1e8a30;
}

/* LIST LINKS */
.footer-link ul,
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link a {
    text-decoration: none;
    color: #333;
    font-size: .9rem;
    transition: 0.3s ease;
}

.footer-link a:hover {
    color: #4a1e8a;
}

/* ADDRESS */
.footer-address {
    color: #444;
    font-size: .9rem;
    margin-bottom: .7rem;
}

/* CONTACT INFO */
.footer-contact-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-info li {
    margin-bottom: 0.2rem;
}

.footer-contact-info h6 {
    font-size: .9rem;
    font-weight: 600;
    color: #4a1e8a;
    margin-bottom: .3rem;
}

.footer-contact-info span {
    display: block;
    line-height: 1.2;
}

.footer-contact-info i {
    font-size: .85rem;
    margin-right: .3rem;
    color: #4a1e8a;
}

.footer-contact-info a {
    text-decoration: none;
    color: #333;
    font-size: .85rem;
}

/* NEWSLETTER */
.footer-newsletter h3 {
    font-size: 1rem;
    color: #4a1e8a;
    margin-bottom: .6rem;
}

.footer-newsletter form {
    position: relative;
}

.footer-newsletter input {
    width: 100%;
    padding: .7rem .9rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: .9rem;
}

.footer-newsletter button {
    position: absolute;
    right: 10px;
    top: 8px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #4a1e8a;
}

/* SOCIAL MEDIA */
.social-media-icon {
    margin-top: 1rem;
}

.social-media-icon ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a1e8a 0%, #800080 100%);
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(74, 30, 138, 0.3);
}

.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 30, 138, 0.5);
    color: white;
}

.facebook-link:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.social-media-icon img {
    width: 32px;
    transition: 0.3s;
}

.social-media-icon img:hover {
    transform: scale(1.1);
}

/* COPYRIGHT */
.copyright {
    background-color: #757d89;
    color: #fff;
    text-align: center;
    padding: 1rem 5rem;
    font-size: .9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FLOATING BUTTONS */
#back-to-top-btn,
.floating-enquire-now-btn,
.floating-message-btn {
    position: fixed;
    right: 0;
    padding: 10px 0;
    cursor: pointer;
    border-radius: 5px;
}

#back-to-top-btn {
    display: none;
    bottom: 3rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(128, 0, 128, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
}

#back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(128, 0, 128, 0.6);
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
}

#back-to-top-btn::before {
    content: '↑';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

#back-to-top-btn picture,
#back-to-top-btn img {
    display: none;
}

.floating-enquire-now-btn {
    bottom: 8rem;
    z-index: 9999;
}

.floating-message-btn {
    bottom: 7rem;
    z-index: 9999;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-bg {
        padding: 2rem 1.2rem;
    }

    .social-media-icon ul {
        justify-content: center !important;
    }

    .copyright {
        padding: 1rem;
    }
}

.experience-section {
    background: url(https://chemicea.com/assets/images/header-footer/homepage-experience.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    padding: 6rem 0;
    color: #fff;
    position: relative;
    text-align: center;
}

.experience-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.experience-section .container {
    position: relative;
    z-index: 2;
}

.experience-section .container a {
    display: inline-block;
    color: #fff;
    background-color: #800080;
    text-decoration: none;
    border: none;
    padding: 0.8rem 2.3rem;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

/* Button hover effect */
.experience-section .container a:hover {
    background-color: #800080;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.experience-section .main-heading {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.experience-text {
    font-size: 1.5rem;
    color: #f1f1f1;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.experienc-btn {
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .experience-section {
        padding: 4rem 1rem;
    }

    .experience-section .main-heading {
        font-size: 2rem;
    }

    .experience-text {
        font-size: 1.2rem;
    }

    .experienc-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

.accreditations-section {
    position: relative;
    padding: 1rem 0;
}

.accreditations-section .container .row {
    /* position: relative;
    z-index: 2; */
    display: flex;
    justify-content: center;
    justify-content: space-between;

}

.accreditations-section .card {
    /* height: 100%; */
    max-height: 100px;
    min-height: 100px;
    width: 100px;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */

    border: 1px solid #eef2f6;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    /* margin-bottom: 20px; */
    background: #fff;
}

.accreditations-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accreditations-section .card-body {
    /* padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center; */
    /* width: 100%; */
}

.accreditations-section img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
}

.accreditations-section .card:hover img {
    filter: grayscale(0%);
}

.accreditations-object {
    position: absolute;
    top: 0;
    left: 0;
}

.accreditations-section p {
    font: var(--body-font);
    margin-bottom: 3rem;
}

.services-section {
    padding: 5rem 2rem;
    background: #f3f7f9;
}

.services-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a1e8a;
    margin-bottom: 0.5rem;
}

.services-section .section-header p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.services-grid .service-card {
    background: linear-gradient(145deg, #ffffff, #f3f0ff);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-grid .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.services-grid .service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #4a1e8a;
}

.services-grid .service-card .service-icon {
    font-size: 2rem;
    color: #800080;
}

.services-timeline-section {
    background: linear-gradient(120deg, #f3f0ff, #f9f7ff);
    padding: 1rem 2rem;
}

.services-wrap {
    max-width: 100%;
    margin: auto;
    padding: 0 20px;
}

.services-title {
    text-align: center;
    margin-bottom: 2rem;
}

.services-title h2 {
    font-size: 2.7rem;
    font-weight: 700;
    color: #4a1e8a;
}

.services-title p {
    color: #555;
    max-width: 850px;
    margin: auto;
    font-size: 1.1rem;
}

.services-layout {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    align-items: flex-start;
}

/* LEFT TIMELINE */
.services-timeline {
    position: relative;
    text-align: center;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #800080, #4a1e8a);
    transform: translateX(-50%);
}

.services-timeline span {
    display: block;
    width: 44px;
    height: 44px;
    background: #800080;
    color: white;
    border-radius: 50%;
    margin: 35px auto;
    font-weight: bold;
    line-height: 44px;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* RIGHT CONTENT */
.services-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.service-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 1.5rem 1.8rem;
    font-weight: 600;
    color: #4a1e8a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: 0.35s ease;
    border-left: 6px solid #800080;
}

.service-box:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

/* ✅ FORCE SHOW ALL SERVICE BOXES ON MOBILE */
@media (max-width: 768px) {
    .service-box {
        display: block !important;
    }
}

/* ✅ MOBILE CARD VISIBILITY FIX */
@media (max-width: 768px) {

    .services-timeline-section,
    .services-wrap,
    .services-layout,
    .services-content {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
}

/* MOBILE */
@media(max-width: 768px) {
    .services-layout {
        grid-template-columns: 1fr;
    }

    .services-timeline {
        display: none;
    }

    .services-title h2 {
        font-size: 2rem;
    }

    /* 2 Columns for Tablet/Mobile */
    .services-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* SMALL MOBILE */
@media(max-width: 480px) {
    .services-content {
        grid-template-columns: 1fr;
    }
}

.rfq-section {
    padding: 6rem 2rem;
    background: linear-gradient(120deg, #f3f0ff, #f9f7ff);
}

.rfq-container {
    max-width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 20px;
}

/* LEFT INFO */
.rfq-info {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.rfq-info h2 {
    font-size: 2.2rem;
    color: #4a1e8a;
    margin-bottom: 1rem;
}

.rfq-info h3 {
    margin-top: 2rem;
    font-size: 1.3rem;
    color: #4a1e8a;
}

.rfq-info ul {
    padding-left: 1.3rem;
}

.rfq-info li {
    margin-bottom: 8px;
    font-weight: 500;
}

/* RIGHT FORM */
.rfq-form-box {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.rfq-form-box h2 {
    text-align: center;
    color: #4a1e8a;
    font-weight: 700;
    margin-bottom: 2rem;
}

.rfq-form-box input,
.rfq-form-box textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.rfq-form-box textarea {
    min-height: 120px;
    resize: vertical;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.captcha-box img {
    height: 45px;
    border-radius: 6px;
}

.rfq-btn {
    background: #800080;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    width: 100%;
    transition: 0.3s;
}

.rfq-btn:hover {
    background: #4a1e8a;
}

.success-box {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 1rem;
    text-align: center;
}

body {
    padding-top: 130px;
}

/* MOBILE */
@media (max-width: 768px) {
    .rfq-container {
        grid-template-columns: 1fr;
    }
}

.has-dropdown {
    position: relative;
}

/* DROPDOWN BOX */
#dropmenudiv {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #800080;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 9999;
}

/* SHOW ON HOVER */
.has-dropdown:hover #dropmenudiv {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* DROPDOWN LINKS */
#dropmenudiv a {
    display: block;
    padding: 12px 15px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#dropmenudiv a:last-child {
    border-bottom: none;
}

#dropmenudiv a:hover {
    background: rgba(0, 0, 0, 0.15);
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0.2rem !important;
}

/* =========================
   CONTACT PAGE DESIGN
========================= */

/* SECTION */
.contact-section {
    background: linear-gradient(135deg, #f3f0ff, #ffffff);
    padding: 1rem 1.5rem;
}

.contact-container {
    max-width: 100%;
    margin: auto;
    padding: 0 20px;
}

/* TITLE */
.contact-title {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a1e8a;
}

.contact-title p {
    color: #555;
    font-size: 1.05rem;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

/* CARDS */
.contact-form-card,
.contact-info-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.contact-form-card h3,
.contact-info-card h3 {
    color: #4a1e8a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* FORM */
.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 0.95rem;
}

.contact-form-card textarea {
    min-height: 120px;
    resize: none;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: #800080;
}

/* CAPTCHA */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.captcha-row img {
    height: 42px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.captcha-row button {
    border: none;
    background: #800080;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

/* BUTTON */
.contact-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(120deg, #800080, #4a1e8a);
    border: none;
    color: white;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-btn:hover {
    opacity: 0.9;
}

/* INFO TEXT */
.contact-info-card p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 14px;
    font-size: 1rem;
}

/* MAP */
.contact-map {
    margin-top: 1.5rem;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* MOBILE FIX */
@media (max-width: 900px) {
    body {
        padding-top: 110px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-title h2 {
        font-size: 2rem;
    }

    .contact-map {
        height: 220px;
    }
}

/* =======================
   CERTIFICATE PAGE STYLE
======================= */

/* MAIN SECTION */
.certificate-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f3f0ff, #ffffff);
}

.certificate-container {
    max-width: 100%;
    margin: auto;
    padding: 0 20px;
}

/* TITLE */
.certificate-title {
    text-align: center;
    margin-bottom: 4rem;
}

.certificate-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #4a1e8a;
    margin-bottom: 0.8rem;
}

.certificate-title p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* GRID */
.certificate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* CARD */
.certificate-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: 0.35s ease;
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* IMAGE */
.certificate-card img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    padding: 10px;
}

/* TEXT */
.certificate-card h4 {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a1e8a;
}

.certificate-card p {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.4rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .certificate-title h2 {
        font-size: 2rem;
    }
}

/* ======================product page================================================= */
/* MAIN LAYOUT */
.page-area {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(145deg, #f7f3ff, #f0ebff);
    min-height: 650px;
    position: relative;
    width: 100%;
}

/* A-Z FILTER WITH COUNTS */
.capsule-box {
    position: sticky;
    top: 110px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    /* padding: 10px 5px; */
    justify-content: space-between;
    background: #ffffff;
    border-radius: 8px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.capsule {
    flex: 1;
    min-width: 0;
    padding: 8px 0;
    background: #e8e8e8;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    border: none;
    cursor: pointer;
    transition: .2s;
    white-space: nowrap;
    text-align: center;
}

.capsule:hover {
    background: #d0d0d0;
}

.capsule.active {
    background: #800080;
    color: #fff;
}

/* RIGHT PANEL */
.product-panel {
    width: 100%;
    background: white;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 18px;
    padding-top: 2px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.product-panel h2 {
    color: #4a1e8a;
    font-size: 32px;
    font-weight: 800;
    /* margin-bottom: 20px;
    margin-top: 30px; */
    line-height: 1.3;
}

.pd-header-left h1,
.latest-products-header h1 {
    color: #4a1e8a;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    position: relative;
}

.latest-products-header h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: #800080;
    border-radius: 2px;
}

/* Enquiry Modal Styling */
.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.enquiry-modal.active {
    display: flex;
}

.enquiry-modal-content {
    background: #fff;
    width: 95%;
    max-width: 550px;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    animation: modalZoomIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.enquiry-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
}

.enquiry-modal h3 {
    color: #4a1e8a;
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.enquiry-modal input,
.enquiry-modal textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: #fdfdfd;
}

.enquiry-modal textarea {
    height: 90px;
    resize: vertical;
}

.enquiry-modal .captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.enquiry-modal .captcha-row img {
    height: 40px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.enquiry-modal .refresh-captcha {
    color: #800080;
    text-decoration: none;
    font-size: 22px;
}

.enquiry-modal .submit-btn {
    width: 100%;
    padding: 15px;
    background: #800080;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enquiry-modal .submit-btn:hover {
    background: #800080;
    box-shadow: 0 4px 12px rgba(128, 0, 128, 0.3);
}

.alert {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Latest Products Page Styles */
.latest-products-page {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    background: #f9fbfd;
    min-height: calc(100vh - 200px);
}

.latest-products-header {
    text-align: left;
    /* margin-bottom: 40px; */
    border-bottom: 2px solid rgba(74, 30, 138, 0.1);
    padding-bottom: 15px;
}

.latest-products-header p {
    color: #666;
    font-size: 16px;
}

.products-count {
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.latest-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.product-card-latest {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card-latest:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-img-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: #f8f9fa;
    overflow: hidden;
    cursor: zoom-in;
}

.product-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-img-container::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #fff;
    background: rgba(128, 0, 128, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
    line-height: 1;
}

.product-img-container:hover::after {
    opacity: 1;
}

.product-card-latest:hover .product-img-container img {
    transform: scale(1.1);
}

.product-card-content {
    padding: 20px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #800080;
    margin-bottom: 12px;
    min-height: 48px;
    line-height: 1.5;
}

.product-cas {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-details,
.btn-enquire-now {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-details {
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
    color: white;
}

.btn-details:hover {
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 128, 0.3);
    color: white;
}

.btn-enquire-now {
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
    color: white;
}

.btn-enquire-now:hover {
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 128, 0.3);
    color: white;
}

.btn-coa-now {
    flex: 1;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-coa-now:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: white;
}


/* 4 COLUMN GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.product-grid .np-card {
    width: 100% !important;
    min-width: unset !important;
}

.product-item {
    padding: 15px 20px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #800080;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: .2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-item:hover {
    background: #f8f9fa;
    border-left-width: 6px;
    transform: translateX(2px);
}

.product-item span {
    flex: 1;
}

.product-item .arrow-btn {
    background: #800080;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    flex-shrink: 0;
    margin-left: 10px;
}

/* RESPONSIVE */
@media(max-width:1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:700px) {
    .page-area {
        flex-direction: column;
    }

    .capsule-box {
        width: 100%;
        position: relative;
    }

    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.new-products {
    /* padding: 60px 6%; */
    padding-left: 60px;
    padding-right: 60px;
    background: #f9fbfd;
}

.np-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.np-header h2 {
    color: #4a1e8a;
    font-size: 32px;
}

.view-all {
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(128, 0, 128, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.view-all:hover {
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 128, 0.5);
    color: #fff;
    text-decoration: none;
}

.np-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.np-container {
    display: flex;
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.np-card {
    width: 220px;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    text-align: center;
}

.np-title {
    background: #4a1e8a;
    color: #fff;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
}

.np-img-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    text-align: center;
}

.np-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.np-img-wrapper .watermark {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    opacity: 0.2;
    pointer-events: none;
}

.np-info {
    text-align: left;
    padding: 0 18px;
    font-size: 14px;
    line-height: 1.9;
}

.stock {
    color: green;
    font-weight: 600;
}

.np-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 16px;
}

.np-actions button {
    background: #4a1e8a;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.np-arrow {
    background: #4a1e8a;
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.np-arrow.left {
    margin-right: 10px;
}

.np-arrow.right {
    margin-left: 10px;
}

/* MOBILE */
@media(max-width:768px) {
    .np-arrow {
        display: none;
    }

    .np-container {
        overflow-x: auto;
    }

    .view-all {
        font-size: 10px;

    }

    .np-header h2 {
        font-size: 24px;
    }
}

.product-section {
    padding: 40px 20px;
    background: #f7f3ff;
    min-height: 600px;
}

.product-container {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 20px;
}

.product-info,
.product-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.product-info h2 {
    color: #4a1e8a;
    margin-bottom: 15px;
}

.product-info img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-info div {
    margin-bottom: 10px;
    font-size: 16px;
}

.product-form h3 {
    margin-bottom: 20px;
    color: #800080;
}

.product-form input,
.product-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.product-form button {
    padding: 12px 20px;
    background: #800080;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
}

.success-msg {
    color: green;
    margin-bottom: 15px;
    font-weight: 600;
}

@media(max-width:900px) {
    .product-container {
        flex-direction: column;
    }
}

.email-link {
    color: inherit;
    text-decoration: none;
}

.email-link:hover {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.search-wrap {
    position: relative;
    width: 350px;
}

.search-wrap input {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-wrap input:focus {
    border-color: #800080;
    box-shadow: 0 0 0 3px rgba(128, 0, 128, 0.1);
}

.search-wrap button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 5px 10px;
}

.search-results-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 9999;
    display: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.15);
    margin-top: 2px;
}

.search-results-box div {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
    line-height: 1.5;
    transition: background-color 0.2s;
}

.search-results-box div:last-child {
    border-bottom: none;
}

.search-results-box div:hover {
    background: #f5f3ff;
}

.search-results-box div strong {
    color: #800080;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

/* Scrollbar styling for search results */
.search-results-box::-webkit-scrollbar {
    width: 8px;
}

.search-results-box::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-results-box::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.search-results-box::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE & TABLET
======================================== */

/* Large Desktop (1200px+) - Default styles above */

/* Medium Desktop & Laptop (992px - 1199px) */
@media (max-width: 1199px) {
    body {
        padding-top: 130px;
    }

    .topbar {
        padding: 12px 30px;
    }

    .site-logo {
        height: 48px;
    }

    .site-name {
        font-size: 20px;
    }

    .search-wrap {
        max-width: 400px;
    }

    .new-products {
        padding: 15px 10px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    body {
        padding-top: 180px;
    }

    /* Header Adjustments */
    .topbar {
        grid-template-columns: 1fr;
        padding: 12px 20px;
        gap: 15px;
    }

    .logo-wrap {
        justify-content: center;
    }

    .search-wrap {
        max-width: 100%;
        justify-self: stretch;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .right-contact {
        justify-content: center;
        flex-wrap: wrap;
    }

    .site-logo {
        height: 45px;
    }

    .site-name {
        font-size: 18px;
    }

    /* Menu Bar */
    .menubar nav ul {
        gap: 15px;
        padding: 0 15px;
    }

    .menubar nav ul li a {
        font-size: 13px;
        padding: 8px 12px;
    }

    /* Slider */
    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 15px;
    }

    /* Product Cards - 3 per row */
    .np-card {
        flex: 0 0 calc(33.333% - 15px);
        min-width: 250px;
    }

    .np-wrapper {
        padding: 0 45px;
    }

    .np-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    /* Product Page - Responsive */
    .product-layout {
        flex-direction: column;
    }

    .capsule-box {
        top: 180px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
        gap: 8px;
    }

    .capsule {
        flex: none;
        padding: 8px 12px;
        font-size: 14px;
        min-width: 40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobile Landscape & Small Tablet (576px - 767px) */
@media (max-width: 767px) {
    body {
        padding-top: 90px;
    }

    /* Header */
    .topbar {
        padding: 10px 15px;
        gap: 12px;
    }

    .logo-wrap {
        flex-direction: column;
        gap: 8px;
    }

    .site-logo {
        height: 40px;
    }

    .site-name {
        font-size: 16px;
        padding-top: 15px;
    }

    .search-wrap input {
        /* padding: 10px 50px 10px 15px; */
        font-size: 13px;
        /* padding-left: 15px; */


        /* margin-left: 45px; */
        /* padding-bottom: 15px; */
    }

    .search-wrap button {
        padding: 6px 12px;
        font-size: 12px;
    }

    .right-contact span,
    .email-link span {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* Menu Bar - Hamburger Active */
    .menubar {
        padding: 8px 15px;
    }

    /* Slider Visible with Smaller Height */
    .slider {
        height: 250px;
    }

    .slide-content h1 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 13px;
    }

    /* About Section - Stack Vertically */
    .about-flex-container {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .about-section-image {
        width: 100% !important;
        max-width: 100% !important;
        opacity: 0.6 !important;
    }

    .fp-about-section {
        padding: 40px 0 !important;
    }

    .fp-about-container h2 {
        font-size: 24px !important;
    }

    .fp-about-container p {
        font-size: 14px !important;
    }

    /* Product Section */
    .new-products {
        padding: 15px 5px;
    }

    .np-header h2 {
        font-size: 20px;
    }

    /* Product Cards - 2 per row */
    .np-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 200px;
        min-height: 360px;
    }

    .np-wrapper {
        padding: 0 40px;
    }

    .np-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .np-arrow.left {
        left: 2px;
    }

    .np-arrow.right {
        right: 2px;
    }

    .np-title {
        font-size: 14px;
        padding: 10px 12px;
        min-height: 45px;
    }

    .np-cas {
        padding: 8px 12px;
    }

    .np-cas p {
        font-size: 13px;
    }

    .np-actions {
        padding: 10px 12px;
        gap: 8px;
    }

    .np-actions a {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Expertise Section */
    .expertise-section h2 {
        font-size: 28px;
    }

    .expertise-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    /* Experience Section */
    .experience-section .main-heading {
        font-size: 26px;
    }

    .experience-text {
        font-size: 15px;
    }

    /* Product Page - Tablet */
    .product-layout {
        flex-direction: column;
        padding: 30px 15px;
    }

    .capsule-box {
        top: 140px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
        padding: 10px;
        gap: 6px;
    }

    .capsule {
        flex: none;
        font-size: 13px;
        padding: 6px 10px;
        min-width: 35px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 15px;
    }

    .product-item {
        font-size: 14px;
        padding: 10px;
    }

    /* Product Details Page - Stack on Mobile */
    .product-container {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .product-form,
    .product-info {
        padding: 30px 20px !important;
    }

    .product-form h3 {
        font-size: 22px !important;
    }

    .product-info h2 {
        font-size: 20px !important;
    }

    .product-info img {
        max-width: 300px !important;
    }

    /* Related Products Section - Tablet */
    .related-products-section {
        padding: 40px 15px !important;
    }

    .related-products-section h2 {
        font-size: 26px !important;
        margin-bottom: 25px !important;
    }

    .related-product-card {
        flex: 0 0 calc(50% - 12px) !important;
        min-width: 180px !important;
        max-width: none !important;
    }
}

/* Mobile Portrait (480px - 575px) */
@media (max-width: 575px) {
    body {
        padding-top: 130px;
    }

    /* Header Compact */
    .topbar {
        padding: 8px 10px;
        gap: 10px;
    }

    .site-logo {
        height: 50px;
    }

    .site-name {
        font-size: 14px;

        letter-spacing: 0.8px;
    }

    .search-wrap input {
        padding: 8px 45px 8px 12px;
        font-size: 12px;
    }

    .search-wrap button {
        padding: 5px 10px;
        font-size: 11px;
    }

    .right-contact {
        flex-direction: column;
        gap: 8px;
    }

    .right-contact span,
    .email-link span {
        font-size: 11px;
        padding: 5px 8px;
    }

    /* Hero Slider - Compact */
    .slider {
        height: 220px;
    }

    .slide-content h1 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 12px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    /* About Section Responsive */
    .about-flex-container {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .about-section-image {
        width: 100% !important;
    }

    .fp-about-section {
        padding: 30px 0 !important;
    }

    .fp-about-container h2 {
        font-size: 22px !important;
    }

    .fp-about-container p {
        font-size: 13px !important;
    }

    /* Product Section */
    .np-header h2 {
        font-size: 18px;
    }

    /* Product Cards - 1 per row on very small screens */
    .np-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 160px;
        min-height: 340px;
    }

    .np-wrapper {
        padding: 0 35px;
    }

    .np-arrow {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .np-title {
        font-size: 13px;
        padding: 8px 10px;
        min-height: 40px;
    }

    .np-img-wrapper {
        padding-top: 80%;
        /* Slightly taller on mobile */
    }

    .np-cas p {
        font-size: 12px;
    }

    .np-actions {
        flex-direction: column;
        gap: 6px;
    }

    .np-actions a {
        font-size: 11px;
        padding: 8px 10px;
    }

    /* Expertise Section */
    .expertise-section {
        padding: 30px 15px;
    }

    .expertise-section h2 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 13px;
    }

    .expertise-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Experience Section */
    .experience-section {
        padding: 30px 15px;
    }

    .experience-section .main-heading {
        font-size: 22px;
    }

    .experience-text {
        font-size: 14px;
    }

    /* Pagination */
    .pagination {
        gap: 5px;
        margin-top: 20px;
    }

    .page-btn {
        min-width: 32px;
        height: 32px;
        font-size: 14px;
        padding: 6px 8px;
    }

    /* Product Page - Mobile Portrait */
    .product-layout {
        padding: 20px 10px;
    }

    .capsule-box {
        gap: 8px;
        padding: 10px;
    }

    .capsule {
        font-size: 14px;
        padding: 6px 14px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-item {
        font-size: 13px;
        padding: 10px;
    }

    .product-panel {
        padding: 20px 15px;
    }

    .product-panel h2 {
        margin-top: 50px;
        font-size: 20px;
    }

    /* Product Details - Mobile Compact */
    .product-section {
        padding: 40px 15px !important;
    }

    .product-container {
        gap: 20px !important;
    }

    .product-form,
    .product-info {
        padding: 25px 15px !important;
        border-radius: 15px !important;
    }

    .product-form h3 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }

    .product-form input,
    .product-form textarea {
        padding: 12px 15px !important;
        font-size: 14px !important;
    }

    .product-info h2 {
        font-size: 18px !important;
    }

    .product-info img {
        max-width: 250px !important;
    }

    .product-info>div {
        padding: 12px 15px !important;
        font-size: 13px !important;
    }

    /* Related Products Section */
    .related-products-section h2 {
        font-size: 20px !important;
    }

    .related-products-section {
        padding: 30px 10px !important;
    }

    .related-product-card {
        flex: 0 0 calc(50% - 10px) !important;
        min-width: 150px !important;
    }

    #relatedProductsPanel {
        gap: 12px !important;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    body {
        padding-top: 80px;
    }

    /* Ultra Compact Header */
    .topbar {
        padding: 6px 8px;
    }

    .site-logo {
        height: 30px;
    }

    .site-name {
        font-size: 12px;
    }

    /* Hero Slider - Ultra Compact */
    .slider {
        height: 200px;
    }

    .slide-content h1 {
        font-size: 18px;
    }

    .slide-content p {
        font-size: 11px;
    }

    .slider-arrow {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .dots button {
        width: 6px;
        height: 6px;
    }

    /* About Section - Full Width Stack */
    .about-flex-container {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .about-section-image {
        width: 100% !important;
    }

    .fp-about-section {
        padding: 25px 0 !important;
    }

    .fp-about-container {
        padding: 0 15px !important;
    }

    .fp-about-container h2 {
        font-size: 20px !important;
    }

    .fp-about-container p {
        font-size: 12px !important;
        line-height: 1.6 !important;
    }

    /* Product Cards - 1 per view */
    .np-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 100%;
        min-height: 320px;
        margin: 0 10px;
    }

    .np-wrapper {
        padding: 0 30px;
    }

    .np-container {
        gap: 15px;
    }

    .np-arrow {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .np-header h2 {
        font-size: 16px;
    }

    .np-title {
        font-size: 12px;
        padding: 8px;
    }

    .np-actions a {
        font-size: 10px;
        padding: 7px 8px;
    }

    .expertise-section h2 {
        font-size: 20px;
    }

    .experience-section .main-heading {
        font-size: 18px;
    }

    /* Product Page - Tiny Mobile */
    .product-layout {
        padding: 15px 8px;
    }

    .capsule {
        font-size: 12px;
        padding: 5px 12px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-item {
        font-size: 12px;
        padding: 8px;
    }

    .product-panel {
        padding: 15px 10px;
    }

    .product-panel h2 {
        font-size: 18px;
    }

    /* Product Details - Ultra Compact */
    .product-section {
        padding: 30px 10px !important;
    }

    .product-container {
        gap: 15px !important;
    }

    .product-form,
    .product-info {
        padding: 20px 12px !important;
    }

    .product-form h3 {
        font-size: 18px !important;
    }

    .product-form input,
    .product-form textarea {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    .product-form button[type="submit"] {
        padding: 12px 20px !important;
        font-size: 13px !important;
    }

    .product-info h2 {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }

    .product-info img {
        max-width: 200px !important;
    }

    .product-info>div {
        padding: 10px 12px !important;
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }

    .product-info strong {
        font-size: 12px !important;
    }

    /* Related Products - Ultra Compact */
    .related-products-section h2 {
        font-size: 18px !important;
    }

    .related-products-section {
        padding: 25px 8px !important;
    }

    .related-product-card {
        flex: 0 0 calc(100% - 10px) !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    #relatedProductsPanel {
        gap: 15px !important;
        flex-direction: column;
    }

    .related-product-card .np-title {
        font-size: 13px !important;
    }

    .related-product-card .np-cas p {
        font-size: 12px !important;
    }

    .related-product-card .np-actions {
        flex-direction: row !important;
        gap: 8px !important;
    }

    .related-product-card .np-actions a {
        font-size: 11px !important;
        padding: 8px 12px !important;
    }

    /* Captcha Row Responsive */
    .captcha-row {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .captcha-row img {
        width: 100% !important;
        max-width: 180px !important;
    }
}

/* Horizontal Scroll Fix for Mobile */
@media (max-width: 767px) {
    .np-container {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .np-container::-webkit-scrollbar {
        height: 4px;
    }

    .np-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .np-container::-webkit-scrollbar-thumb {
        background: #800080;
        border-radius: 2px;
    }
}

.accreditations-section .row {
    gap: 10px;
    padding: 10px 0;
}

.promo-section {
    padding: 10px 0;
}

.accreditations-section .card {
    width: 180px;
    height: 120px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.accreditations-section .card-body {
    padding: 0 !important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accreditations-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}