{"id":240,"date":"2026-01-10T12:44:37","date_gmt":"2026-01-10T04:44:37","guid":{"rendered":"https:\/\/ssciex.org.my\/home\/?page_id=240"},"modified":"2026-03-10T12:04:36","modified_gmt":"2026-03-10T04:04:36","slug":"visit-explore","status":"publish","type":"page","link":"https:\/\/ssciex.org.my\/home\/visit-explore\/","title":{"rendered":"VISIT &amp; EXPLORE"},"content":{"rendered":"\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Science Centre | Visit &#038; Explore<\/title>\n    <style>\n        :root {\n            \/* Updated to match your color palette *\/\n            --science-blue: #4C5FD6;\n            --science-dark: #032c41;\n            --science-cyan: #39c7eb;\n        }\n\n        * { margin: 0; padding: 0; box-sizing: border-box; }\n\n        \/* Banner Container: Controlled height to avoid \"too wide\" look *\/\n        .hero-banner {\n            position: relative;\n            width: 100%;\n            height: 60vh; \n            min-height: 450px;\n            background-color: #fff;\n            overflow: hidden;\n            display: flex;\n            align-items: center;\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        }\n\n        \/* Background Image - Positioned to keep the right-side graphics visible *\/\n        .hero-bg {\n            position: absolute;\n            top: 0;\n            right: 0;\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n            object-position: right center;\n            z-index: 1;\n        }\n\n        \/* Content Wrapper - Aligned to the empty white space on the left *\/\n        .hero-container {\n            position: relative;\n            z-index: 2;\n            width: 100%;\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 0 5%;\n        }\n\n        .hero-text {\n            max-width: 480px; \n            opacity: 0;\n            transform: translateX(-20px);\n            animation: fadeInRight 0.8s ease-out forwards;\n        }\n\n        .hero-text h1 {\n            font-size: clamp(2.5rem, 5vw, 4.2rem);\n            color: var(--science-blue); \/* Updated color *\/\n            text-transform: uppercase;\n            line-height: 1.1;\n            margin-bottom: 20px;\n            font-weight: 900;\n            \/* Border and Shadow added below *\/\n            -webkit-text-stroke: 2.5px white;\n            paint-order: stroke fill;\n            text-shadow: 2px 2px 8px rgba(0,0,0,0.15);\n        }\n\n        .hero-text p {\n            font-size: 1.15rem;\n            color: var(--science-dark); \/* Updated color *\/\n            line-height: 1.6;\n            margin-bottom: 30px;\n        }\n\n        \/* Clean Bold tags for SEO keywords - No underline *\/\n        .hero-text strong {\n            color: #000;\n            font-weight: 700;\n        }\n\n        .hero-btn {\n            display: inline-block;\n            padding: 14px 32px;\n            background: var(--science-blue); \/* Updated color *\/\n            color: #fff;\n            text-decoration: none;\n            font-weight: bold;\n            border-radius: 4px;\n            transition: 0.3s;\n            box-shadow: 0 4px 15px rgba(76, 95, 214, 0.3); \/* Updated shadow *\/\n        }\n\n        .hero-btn:hover {\n            background: var(--science-cyan); \/* Updated color on hover *\/\n            transform: translateY(-2px);\n            box-shadow: 0 6px 20px rgba(57, 199, 235, 0.5); \/* Updated hover shadow *\/\n        }\n\n        \/* Animation *\/\n        @keyframes fadeInRight {\n            to { opacity: 1; transform: translateX(0); }\n        }\n\n        \/* Mobile Optimization *\/\n        @media (max-width: 768px) {\n            .hero-banner {\n                height: 70vh;\n                text-align: center;\n            }\n            .hero-bg {\n                opacity: 0.25; \/* Lighten image to make text pop on small screens *\/\n            }\n            .hero-text {\n                max-width: 100%;\n                margin: 0 auto;\n            }\n        }\n        \/* This forces the container to ignore the 100px padding *\/\n        [class*=\"p-j2c\"] {\n            padding-top: 0 !important;\n            padding-bottom: 0 !important;\n            padding-left: 0 !important;\n            padding-right: 0 !important;\n        }\n\n        \/* Also ensure the banner section itself is flush *\/\n        .banner {\n            padding: 0 !important;\n            margin: 0 !important;\n        }\n    <\/style>\n<\/head>\n<body>\n\n    <section class=\"hero-banner\">\n        <img decoding=\"async\" src=\"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/03\/visit-explore-1-scaled.webp\" alt=\"Science Centre Exhibition Hall and Discovery Lab\" class=\"hero-bg\">\n        \n        <div class=\"hero-container\">\n            <div class=\"hero-text\">\n                <h1>Visit &#038; Explore<\/h1>\n                <p>\n                    Embark on a scientific journey. Prepare with our <strong>Visitor Guideline<\/strong>, \n                    easily <strong>Plan Your Visit<\/strong>, or dive deeper with our \n                    <strong>Common Science Lab<\/strong>.\n                <\/p>\n            <\/div>\n        <\/div>\n    <\/section>\n\n<\/body>\n<\/html>\n\n\n\n\n\n<h2>VISIT &amp; EXPLORE<\/h2>\n\n\n\n\n\n<div class=\"bg-gray-50 font-sans py-12 px-6\">\n    <style>\n        \/* Custom animation for the icons on card hover *\/\n        .group:hover .lucide-icon {\n            transform: scale(1.1) rotate(15deg);\n            filter: drop-shadow(0 4px 6px rgba(76, 95, 214, 0.4)); \/* Updated to Brand Blue shadow *\/\n        }\n        \n        .lucide-icon {\n            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);\n        }\n\n        \/* Adding a gentle bounce keyframe for a more dynamic feel *\/\n        @keyframes subtleBounce {\n            0%, 100% { transform: translateY(0) rotate(0); }\n            50% { transform: translateY(-8px) rotate(10deg); }\n        }\n\n        .group:hover .animate-icon {\n            animation: subtleBounce 0.8s ease-in-out infinite;\n        }\n    <\/style>\n\n    <div class=\"max-w-6xl mx-auto\">\n        <div class=\"grid grid-cols-1 md:grid-cols-3 gap-8\">\n            \n            <div class=\"group bg-white p-8 rounded-2xl shadow-xl text-center transition-all duration-300 hover:-translate-y-2 border-t-4 border-[#4C5FD6] animate__animated animate__fadeInUp\" style=\"animation-delay: 0.2s;\">\n                <div class=\"flex justify-center mb-4\">\n                    <div class=\"animate-icon\">\n                        <i data-lucide=\"calendar\" class=\"lucide-icon w-12 h-12 text-[#4C5FD6]\"><\/i>\n                    <\/div>\n                <\/div>\n                <h2 class=\"text-2xl font-bold mb-4 text-[#4C5FD6]\">Plan Your Visit<\/h2>\n                <p class=\"text-[#032c41] mb-6 opacity-80\">\n                    Hours, admission, and how to get here.\n                <\/p>\n                <a href=\"https:\/\/ssciex.org.my\/home\/plan-your-visit\/\" class=\"inline-block bg-[#032c41] text-white px-8 py-3 rounded-full hover:bg-[#4C5FD6] transition-colors duration-300 shadow-lg font-medium\">\n                    View Details\n                <\/a>\n            <\/div>\n\n            <div class=\"group bg-white p-8 rounded-2xl shadow-xl text-center transition-all duration-300 hover:-translate-y-2 border-t-4 border-[#4C5FD6] animate__animated animate__fadeInUp\" style=\"animation-delay: 0.2s;\">\n                <div class=\"flex justify-center mb-4\">\n                    <div class=\"animate-icon\">\n                        <i data-lucide=\"info\" class=\"lucide-icon w-12 h-12 text-[#4C5FD6]\"><\/i>\n                    <\/div>\n                <\/div>\n                <h2 class=\"text-2xl font-bold mb-4 text-[#4C5FD6]\">Visitor Guidelines<\/h2>\n                <p class=\"text-[#032c41] mb-6 opacity-80\">\n                    Safety, accessibility, and visitor information.\n                <\/p>\n                <a href=\"https:\/\/ssciex.org.my\/home\/visitor-guidelines\/\" class=\"inline-block bg-[#032c41] text-white px-8 py-3 rounded-full hover:bg-[#4C5FD6] transition-colors duration-300 shadow-lg font-medium\">\n                    View Details\n                <\/a>\n            <\/div>\n\n            <div class=\"group bg-white p-8 rounded-2xl shadow-xl text-center transition-all duration-300 hover:-translate-y-2 border-t-4 border-[#4C5FD6] animate__animated animate__fadeInUp\" style=\"animation-delay: 0.2s;\">\n                <div class=\"flex justify-center mb-4\">\n                    <div class=\"animate-icon\">\n                        <i data-lucide=\"beaker\" class=\"lucide-icon w-12 h-12 text-[#4C5FD6]\"><\/i>\n                    <\/div>\n                <\/div>\n                <h2 class=\"text-2xl font-bold mb-4 text-[#4C5FD6]\">CSL Miri<\/h2>\n                <p class=\"text-[#032c41] mb-6 opacity-80\">\n                    Booked a common science lab in Miri managed by SSCiEX.\n                <\/p>\n                <a href=\"https:\/\/ssciex.org.my\/home\/practical-science-csl-miri\/\" class=\"inline-block bg-[#032c41] text-white px-8 py-3 rounded-full hover:bg-[#4C5FD6] transition-colors duration-300 shadow-lg font-medium\">\n                    View Details\n                <\/a>\n            <\/div>\n\n        <\/div>\n    <\/div>\n<\/div>\n\n<script src=\"https:\/\/unpkg.com\/lucide@latest\"><\/script>\n<script>lucide.createIcons();<\/script>\n<script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n<link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/animate.css\/4.1.1\/animate.min.css\"\/>\n","protected":false},"excerpt":{"rendered":"<p>Science Centre | Visit &#038; Explore Visit &#038; Explore Embark on a scientific journey. Prepare with our Visitor Guideline, easily Plan Your Visit, or dive deeper with our Common Science Lab. Plan Your Visit Hours, admission, and how to get here. View Details Visitor Guidelines Safety, accessibility, and visitor information. View Details CSL Miri Booked [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"pagelayer_contact_templates":[],"_pagelayer_content":"","footnotes":""},"class_list":["post-240","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>VISIT &amp; EXPLORE | Sarawak Science Centre (SSCiEX) | Official Website<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ssciex.org.my\/home\/visit-explore\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"VISIT &amp; EXPLORE | Sarawak Science Centre (SSCiEX) | Official Website\" \/>\n<meta property=\"og:description\" content=\"Science Centre | Visit &#038; Explore Visit &#038; Explore Embark on a scientific journey. Prepare with our Visitor Guideline, easily Plan Your Visit, or dive deeper with our Common Science Lab. Plan Your Visit Hours, admission, and how to get here. View Details Visitor Guidelines Safety, accessibility, and visitor information. View Details CSL Miri Booked [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ssciex.org.my\/home\/visit-explore\/\" \/>\n<meta property=\"og:site_name\" content=\"Sarawak Science Centre (SSCiEX) | Official Website\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/Sarawak-Science-Centre\/61579936965360\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-10T04:04:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/03\/visit-explore-1-scaled.webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ssciex.org.my\/home\/visit-explore\/\",\"url\":\"https:\/\/ssciex.org.my\/home\/visit-explore\/\",\"name\":\"VISIT &amp; EXPLORE | Sarawak Science Centre (SSCiEX) | Official Website\",\"isPartOf\":{\"@id\":\"https:\/\/ssciex.org.my\/home\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/ssciex.org.my\/home\/visit-explore\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/ssciex.org.my\/home\/visit-explore\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/03\/visit-explore-1-scaled.webp\",\"datePublished\":\"2026-01-10T04:44:37+00:00\",\"dateModified\":\"2026-03-10T04:04:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/ssciex.org.my\/home\/visit-explore\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ssciex.org.my\/home\/visit-explore\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/ssciex.org.my\/home\/visit-explore\/#primaryimage\",\"url\":\"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/03\/visit-explore-1-scaled.webp\",\"contentUrl\":\"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/03\/visit-explore-1-scaled.webp\",\"width\":2560,\"height\":1280},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ssciex.org.my\/home\/visit-explore\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/ssciex.org.my\/home\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"VISIT &amp; EXPLORE\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/ssciex.org.my\/home\/#website\",\"url\":\"https:\/\/ssciex.org.my\/home\/\",\"name\":\"Sarawak Science Centre (SSCiEX)\",\"description\":\"Igniting Curiousity\",\"publisher\":{\"@id\":\"https:\/\/ssciex.org.my\/home\/#organization\"},\"alternateName\":\"SSCiEX\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/ssciex.org.my\/home\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/ssciex.org.my\/home\/#organization\",\"name\":\"Sarawak Science Centre (SSCiEX)\",\"url\":\"https:\/\/ssciex.org.my\/home\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/ssciex.org.my\/home\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/01\/cropped-cropped-update-logo.png\",\"contentUrl\":\"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/01\/cropped-cropped-update-logo.png\",\"width\":512,\"height\":512,\"caption\":\"Sarawak Science Centre (SSCiEX)\"},\"image\":{\"@id\":\"https:\/\/ssciex.org.my\/home\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/people\/Sarawak-Science-Centre\/61579936965360\/\",\"https:\/\/www.instagram.com\/sarawaksciencecentre?igsh=N2FxZ3FjMXdqcDQx\",\"https:\/\/www.tiktok.com\/@ssciex.official\",\"https:\/\/www.linkedin.com\/in\/ssciex\/\",\"https:\/\/www.youtube.com\/@sarawaksciencecentre\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"VISIT &amp; EXPLORE | Sarawak Science Centre (SSCiEX) | Official Website","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ssciex.org.my\/home\/visit-explore\/","og_locale":"en_GB","og_type":"article","og_title":"VISIT &amp; EXPLORE | Sarawak Science Centre (SSCiEX) | Official Website","og_description":"Science Centre | Visit &#038; Explore Visit &#038; Explore Embark on a scientific journey. Prepare with our Visitor Guideline, easily Plan Your Visit, or dive deeper with our Common Science Lab. Plan Your Visit Hours, admission, and how to get here. View Details Visitor Guidelines Safety, accessibility, and visitor information. View Details CSL Miri Booked [&hellip;]","og_url":"https:\/\/ssciex.org.my\/home\/visit-explore\/","og_site_name":"Sarawak Science Centre (SSCiEX) | Official Website","article_publisher":"https:\/\/www.facebook.com\/people\/Sarawak-Science-Centre\/61579936965360\/","article_modified_time":"2026-03-10T04:04:36+00:00","og_image":[{"url":"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/03\/visit-explore-1-scaled.webp","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/ssciex.org.my\/home\/visit-explore\/","url":"https:\/\/ssciex.org.my\/home\/visit-explore\/","name":"VISIT &amp; EXPLORE | Sarawak Science Centre (SSCiEX) | Official Website","isPartOf":{"@id":"https:\/\/ssciex.org.my\/home\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ssciex.org.my\/home\/visit-explore\/#primaryimage"},"image":{"@id":"https:\/\/ssciex.org.my\/home\/visit-explore\/#primaryimage"},"thumbnailUrl":"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/03\/visit-explore-1-scaled.webp","datePublished":"2026-01-10T04:44:37+00:00","dateModified":"2026-03-10T04:04:36+00:00","breadcrumb":{"@id":"https:\/\/ssciex.org.my\/home\/visit-explore\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ssciex.org.my\/home\/visit-explore\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/ssciex.org.my\/home\/visit-explore\/#primaryimage","url":"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/03\/visit-explore-1-scaled.webp","contentUrl":"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/03\/visit-explore-1-scaled.webp","width":2560,"height":1280},{"@type":"BreadcrumbList","@id":"https:\/\/ssciex.org.my\/home\/visit-explore\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ssciex.org.my\/home\/"},{"@type":"ListItem","position":2,"name":"VISIT &amp; EXPLORE"}]},{"@type":"WebSite","@id":"https:\/\/ssciex.org.my\/home\/#website","url":"https:\/\/ssciex.org.my\/home\/","name":"Sarawak Science Centre (SSCiEX)","description":"Igniting Curiousity","publisher":{"@id":"https:\/\/ssciex.org.my\/home\/#organization"},"alternateName":"SSCiEX","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ssciex.org.my\/home\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/ssciex.org.my\/home\/#organization","name":"Sarawak Science Centre (SSCiEX)","url":"https:\/\/ssciex.org.my\/home\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/ssciex.org.my\/home\/#\/schema\/logo\/image\/","url":"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/01\/cropped-cropped-update-logo.png","contentUrl":"https:\/\/ssciex.org.my\/home\/wp-content\/uploads\/2026\/01\/cropped-cropped-update-logo.png","width":512,"height":512,"caption":"Sarawak Science Centre (SSCiEX)"},"image":{"@id":"https:\/\/ssciex.org.my\/home\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/Sarawak-Science-Centre\/61579936965360\/","https:\/\/www.instagram.com\/sarawaksciencecentre?igsh=N2FxZ3FjMXdqcDQx","https:\/\/www.tiktok.com\/@ssciex.official","https:\/\/www.linkedin.com\/in\/ssciex\/","https:\/\/www.youtube.com\/@sarawaksciencecentre"]}]}},"_links":{"self":[{"href":"https:\/\/ssciex.org.my\/home\/wp-json\/wp\/v2\/pages\/240","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ssciex.org.my\/home\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ssciex.org.my\/home\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ssciex.org.my\/home\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/ssciex.org.my\/home\/wp-json\/wp\/v2\/comments?post=240"}],"version-history":[{"count":34,"href":"https:\/\/ssciex.org.my\/home\/wp-json\/wp\/v2\/pages\/240\/revisions"}],"predecessor-version":[{"id":1218,"href":"https:\/\/ssciex.org.my\/home\/wp-json\/wp\/v2\/pages\/240\/revisions\/1218"}],"wp:attachment":[{"href":"https:\/\/ssciex.org.my\/home\/wp-json\/wp\/v2\/media?parent=240"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}