﻿:root {
--primary: #0F2C59;
--primary-light: #1e4b8a;
--accent: #334155;
--highlight: #0ea5e9;
--gold: #c56565;
--text-dark: #1e293b;
--text-gray: #64748b;
--bg-body: #ffffff;
--bg-section: #f8fafc;
--border: #e2e8f0;
--font-heading: 'Montserrat', sans-serif;
--font-body: 'Inter', sans-serif;
--container: 1400px;
--radius: 2px;
--dark: #0B1120;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
img,
video {
max-width: 100%;
height: auto;
}
html,
body {
font-family: var(--font-body);
color: var(--text-dark);
background-color: var(--bg-body);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
width: 100%;
}
a {
text-decoration: none;
color: inherit;
transition: 0.3s;
}
/* Animations */
.text-reveal-wrapper {
overflow: hidden;
display: inline-block;
vertical-align: top;
}
.text-reveal {
display: inline-block;
transform: translateY(100%);
opacity: 1;
transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}
.text-reveal.visible {
transform: translateY(0);
opacity: 1;
}
.fade-up {
opacity: 0;
transform: translateY(30px);
transition: 0.8s ease;
}
.fade-up.visible {
opacity: 1;
transform: translateY(0);
}
/* Typography - Fluid */
.text-xl {
font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
letter-spacing: -1px;
line-height: 1.1;
font-weight: 300;
font-family: var(--font-heading);
}
.text-lg {
font-size: clamp(1.8rem, 4vw + 0.5rem, 3rem);
letter-spacing: -0.5px;
line-height: 1.2;
font-weight: 400;
font-family: var(--font-heading);
}
.text-md {
font-size: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
font-weight: 600;
font-family: var(--font-heading);
}
.text-sm {
font-size: 0.875rem;
color: var(--text-gray);
}
/* Utility: Text Colors */
.text-gray {
color: var(--text-gray);
}
/* Product Display Classes (Homepage variants) */
.prod-name {
font-size: 1.1rem;
font-weight: 700;
color: white;
font-family: var(--font-heading);
margin-bottom: 0.5rem;
display: block;
}
.prod-cat {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.9);
text-transform: uppercase;
font-weight: 600;
display: block;
margin-bottom: 0.5rem;
}
/* Buttons */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.85rem 1.75rem;
/* Adjusted padding */
font-family: var(--font-heading);
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
/* Increased letter spacing */
border-radius: 50px;
/* Pill shape */
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-primary {
background: var(--primary);
color: white;
border: 1px solid var(--primary);
}
.btn-primary:hover {
background: var(--primary-light);
border-color: var(--primary-light);
}
.btn-outline {
background: transparent;
color: var(--primary);
border: 1px solid var(--primary);
}
.btn-outline:hover {
background: var(--primary);
color: white;
}
.btn-link {
padding: 0;
color: var(--primary);
border-bottom: 1px solid transparent;
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-weight: 600;
font-size: 0.9rem;
}
.btn-link:hover {
border-bottom-color: var(--primary);
}
.btn-sm {
padding: .5rem 1rem;
font-size: .75rem;
text-transform: uppercase;
font-weight: 700;
border-radius: 2px;
letter-spacing: .5px;
}
/* Layout */
.container {
max-width: var(--container);
margin: 0 auto;
padding: 0 clamp(1rem, 3vw, 2rem);
}
.section {
padding: clamp(3rem, 5vw, 6rem) 0;
}
.bg-light {
background-color: var(--bg-section);
}
.bg-dark {
background-color: #0f172a;
color: white;
}
/* Header */
.top-nav {
background: #0f172a;
color: white;
padding: .4rem 0;
font-size: .9rem;
}
.top-nav .marquee-container {
width: 100%;
margin: 0;
padding: 0 20px;
display: flex;
overflow: hidden;
}
@keyframes marquee {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
.mini-marquee-wrapper {
width: 100%;
flex: 1;
overflow: hidden;
position: relative;
height: 30px;
mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
-webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
display: flex;
align-items: center;
}
.marquee-track {
display: flex;
width: max-content;
animation: marquee var(--marquee-speed, 30s) linear infinite;
}
.marquee-set {
display: flex;
align-items: center;
gap: 8rem;
padding-right: 8rem;
flex-shrink: 0;
}
.marquee-set span {
position: relative;
}
.marquee-set span::after {
content: "";
position: absolute;
right: -4.5rem;
color: var(--highlight);
opacity: .5;
}
.site-header {
border-bottom: 1px solid var(--border);
background: white;
position: sticky;
top: 0;
z-index: 1000;
}
.header-inner {
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
flex-wrap: wrap;
gap: 1rem;
}
.logo {
font-family: var(--font-heading);
font-size: 1.8rem;
font-weight: 700;
color: var(--primary);
letter-spacing: -.5px;
cursor: pointer;
}
.logo-img {
height: 45px;
width: auto;
}
.nav-menu {
display: flex;
gap: clamp(1rem, 2vw, 3rem);
align-items: center;
flex-wrap: wrap;
}
.nav-link {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: .9rem;
font-weight: 500;
color: var(--text-dark);
position: relative;
}
.nav-link.active,
.nav-link:hover {
color: var(--primary);
font-weight: 700;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 1px;
background: var(--primary);
transition: 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #fff;
min-width: 200px;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
z-index: 1001;
border-radius: var(--radius);
padding: .5rem 0;
top: 100%;
left: 0;
border: 1px solid var(--border);
}
.dropdown:hover .dropdown-content {
display: block;
animation: fadeIn 0.2s ease;
}
.dropdown-content a {
color: var(--text-dark);
padding: 12px 20px;
text-decoration: none;
display: block;
font-size: 0.9rem;
font-weight: 500;
border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.dropdown-content a:hover {
background-color: var(--bg-section);
color: var(--primary);
padding-left: 25px;
}
.header-actions {
display: flex;
gap: 1.5rem;
align-items: center;
}
.mobile-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
}
/* Hero */
.hero-slider-container {
position: relative;
height: 90vh;
min-height: 600px;
background: #0f172a;
overflow: hidden;
}
.hero-slide {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 1s ease;
z-index: 1;
}
.hero-slide.active {
opacity: 1;
z-index: 2;
}
.hero-video {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
z-index: 0;
}
.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.9));
z-index: 1;
}
.hero-content {
position: relative;
z-index: 10;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
color: white;
padding-left: 5%;
}
.hero-number {
font-size: clamp(3rem, 10vw, 8rem);
font-family: var(--font-heading);
font-weight: 800;
opacity: 0.1;
line-height: 0.8;
position: absolute;
top: 20%;
left: 4%;
}
.hero-overline {
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 1.5rem;
display: flex;
align-items: center;
gap: 1rem;
}
.slider-nav {
position: absolute;
right: 3rem;
top: 50%;
transform: translateY(-50%);
z-index: 20;
display: flex;
flex-direction: column;
gap: 1rem;
}
.nav-dot {
width: 12px;
height: 12px;
border-radius: 50%;
border: 2px solid rgba(255, 255, 255, 0.3);
background: transparent;
cursor: pointer;
transition: 0.3s;
}
.nav-dot.active {
background: white;
border-color: white;
transform: scale(1.2);
}
.slider-progress-bar {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 4px;
background: rgba(255, 255, 255, 0.1);
z-index: 20;
}
.progress-fill {
height: 100%;
background: var(--highlight);
width: 0%;
}
/* Trust Strip */
.trust-strip {
background: var(--primary);
color: white;
padding: 1.5rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-grid {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
gap: 1rem;
color: white;
}
.trust-item {
display: flex;
align-items: center;
gap: 1rem;
font-family: var(--font-heading);
font-size: 0.9rem;
letter-spacing: 0.5px;
font-weight: 500;
}
/* Products Grid - Responsive without Media Queries */
.product-showcase-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.prod-card {
position: relative;
height: 400px;
/* Increased height */
overflow: hidden;
border-radius: 8px;
/* Softer radius */
isolation: isolate;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
transition: 0.3s ease;
}
.prod-card:hover {
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
transform: translateY(-4px);
}
.prod-card.featured {
grid-column: span 2;
grid-row: span 2;
}
.prod-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.prod-card:hover .prod-img {
transform: scale(1.05);
/* Subtler zoom */
}
.prod-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 40%, transparent 100%);
display: flex;
align-items: flex-end;
padding: 2rem;
}
.prod-details {
color: white;
width: 100%;
transform: translateY(0);
/* Always visible */
transition: 0.4s ease;
}
/* Remove hover transform for details to keep it cleaner */
.prod-card:hover .prod-details {
transform: translateY(0);
}
.prod-badge {
position: absolute;
top: 1.5rem;
left: 1.5rem;
background: var(--gold);
color: white;
font-weight: 700;
font-size: 0.7rem;
padding: 0.25rem 0.75rem;
text-transform: uppercase;
letter-spacing: 1px;
z-index: 10;
font-family: var(--font-heading);
}
/* Certifications */
.cert-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 3rem;
margin-top: 4rem;
text-align: center;
}
.cert-card {
padding: 2rem;
border: 1px solid var(--border);
transition: 0.3s;
}
.cert-card:hover {
border-color: var(--gold);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.cert-icon {
width: 64px;
height: 64px;
margin: 0 auto 1.5rem;
color: var(--primary);
}
/* Slider Arrivals */
.arrivals-track-container {
position: relative;
overflow: hidden;
padding: 1rem 0;
}
.arrivals-track {
display: flex;
gap: 2rem;
overflow-x: auto;
scroll-behavior: smooth;
scrollbar-width: none;
-ms-overflow-style: none;
scroll-snap-type: x mandatory;
}
.arrivals-track::-webkit-scrollbar {
display: none;
}
.arrival-slide {
background: white;
border-radius: var(--radius);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: 0.3s;
display: flex;
flex-direction: column;
overflow: hidden;
min-width: 280px;
max-width: 320px;
/* Match product card height */
height: 400px;
}
.arrival-slide:hover {
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}
.arrival-img-box {
height: 220px;
/* Increased to match proportions */
overflow: hidden;
position: relative;
}
.arrival-img-box img {
width: 100%;
height: 100%;
object-fit: cover;
transition: 0.5s;
}
.arrival-slide:hover .arrival-img-box img {
transform: scale(1.1);
}
.arrival-content-box {
padding: 1.25rem;
/* Balanced padding */
flex: 1;
display: flex;
flex-direction: column;
}
.slider-controls {
display: flex;
justify-content: flex-end;
gap: 1rem;
margin-top: 2rem;
}
.slider-arrow {
width: 40px;
height: 40px;
border-radius: 50%;
border: 1px solid var(--border);
background: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: 0.3s;
color: var(--text-dark);
}
.slider-arrow:hover {
background: var(--primary);
color: white;
border-color: var(--primary);
}
/* Infrastructure */
.infra-section {
background: url('https://images.unsplash.com/photo-1565515263728-90eec1163159?q=80&w=2070') center/cover fixed;
height: 600px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
}
.infra-overlay {
position: absolute;
inset: 0;
background: rgba(15, 23, 42, 0.85);
}
/* News */
.news-section-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
}
.news-item {
margin-bottom: 2rem;
border-bottom: 1px solid var(--border);
padding-bottom: 2rem;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
html {
scroll-behavior: smooth;
}
/* Floating Icons (Fixed) */
.floating-actions {
position: fixed;
bottom: 2rem;
right: 2rem;
display: flex;
flex-direction: column;
gap: 1rem;
z-index: 2147483647;
/* Max Z-Index */
}
.fab-btn {
width: 56px;
height: 56px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fab-btn:hover {
transform: scale(1.1);
}
.fab-btn.whatsapp {
background-color: #25D366;
}
.fab-btn.call {
background-color: #3b82f6;
}
/* Footer */
footer {
background: white;
padding-top: 4rem;
border-top: 1px solid var(--border);
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}
.footer-heading {
font-family: var(--font-heading);
font-weight: 700;
margin-bottom: 1.5rem;
color: var(--primary);
}
/* Product Page Details */
.product-detail-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}
@media (min-width: 768px) {
.product-detail-grid {
grid-template-columns: 1fr 1fr;
gap: 4rem;
}
}
.product-category-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
}
.prod-thumbs {
display: flex;
gap: 1rem;
margin-top: 1rem;
overflow-x: auto;
}
.prod-thumb {
width: 80px;
height: 80px;
object-fit: cover;
border: 2px solid transparent;
cursor: pointer;
border-radius: var(--radius);
transition: 0.3s;
}
.prod-thumb.active,
.prod-thumb:hover {
border-color: var(--primary);
}
.spec-table {
width: 100%;
border-collapse: collapse;
}
.spec-table td {
padding: 1rem;
border-bottom: 1px solid var(--border);
}
.spec-table td:first-child {
font-weight: 600;
width: 40%;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 0.75rem;
}
.footer-links a {
color: var(--text-gray);
font-size: 0.95rem;
}
.footer-links a:hover {
color: var(--primary);
padding-left: 5px;
}
.footer-btm {
border-top: 1px solid var(--border);
padding: 2rem 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 1rem;
font-size: 0.9rem;
color: var(--text-gray);
}
.footer-legal {
display: flex;
gap: 1.5rem;
}
/* Popup */
.popup-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.7);
z-index: 10000;
display: none;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s;
}
.popup-overlay.active {
display: flex;
opacity: 1;
}
.popup-modal {
background: white;
width: 90%;
max-width: 450px;
border-radius: var(--radius);
overflow: hidden;
position: relative;
animation: popupUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.popup-close {
position: absolute;
top: 10px;
right: 10px;
background: white;
border-radius: 50%;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
}
.popup-img {
width: 100%;
height: 200px;
object-fit: cover;
}
.popup-body {
padding: 2rem;
text-align: center;
}
@keyframes popupUp {
from {
transform: scale(0.8) translateY(20px);
opacity: 0;
}
to {
transform: scale(1) translateY(0);
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Mobile - Minimal overrides purely for layout shifts */
@media (max-width: 992px) {
.nav-menu,
.header-actions {
display: none;
}
.mobile-toggle {
display: block;
}
}
/* Mobile Menu */
.mobile-menu-overlay {
position: fixed;
inset: 0;
background: white;
z-index: 10001;
transform: translateX(100%);
transition: 0.3s ease-in-out;
display: flex;
flex-direction: column;
}
.mobile-menu-overlay.active {
transform: translateX(0);
}
.mobile-menu-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
border-bottom: 1px solid var(--border);
}
.mobile-links {
padding: 2rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
overflow-y: auto;
}
.mobile-links a {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-dark);
}
.mobile-dropdown-content {
display: none;
padding-left: 1.5rem;
flex-direction: column;
gap: 1rem;
margin-top: 1rem;
}
.mobile-dropdown-content.active {
display: flex;
}
/* Testimonials - RESTORED */
.testimonial-carousel {
display: flex;
gap: 2rem;
overflow-x: auto;
scroll-behavior: smooth;
scrollbar-width: none;
-ms-overflow-style: none;
scroll-snap-type: x mandatory;
padding: 1rem 0;
}
.testimonial-carousel::-webkit-scrollbar {
display: none;
}
.testimonial-slide {
min-width: clamp(280px, 80vw, 400px);
background: white;
padding: 2rem;
border-radius: var(--radius);
border: 1px solid var(--border);
scroll-snap-align: start;
display: flex;
flex-direction: column;
gap: 1rem;
}
@media (min-width: 1024px) {
.testimonial-slide {
min-width: calc((100% - 4rem) / 3);
flex: 0 0 calc((100% - 4rem) / 3);
}
}
.t-header {
display: flex;
align-items: center;
gap: 1rem;
}
.t-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}
.t-info h4 {
font-size: 1rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 0.2rem;
}
.t-info p {
font-size: 0.85rem;
color: var(--text-gray);
}
.t-quote {
font-style: italic;
color: var(--text-dark);
line-height: 1.6;
font-size: 0.95rem;
}
/* Events (in footer/sidebar) - RESTORED */
.events-list {
background: var(--primary);
color: white;
padding: 2rem;
border-radius: var(--radius);
}
.event-row {
display: flex;
gap: 1rem;
margin-bottom: 1.5rem;
align-items: flex-start;
}
.event-date-box {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 0.5rem;
text-align: center;
border-radius: 4px;
min-width: 60px;
}
.event-date-num {
font-size: 1.5rem;
font-weight: 700;
display: block;
line-height: 1;
}
.event-title {
font-weight: 700;
margin-bottom: 0.2rem;
line-height: 1.2;
}
/* News Details - RESTORED */
.news-meta {
font-size: 0.8rem;
color: var(--text-gray);
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 600;
}
.news-link {
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.1rem;
color: var(--primary);
transition: 0.3s;
}
.news-link:hover {
color: var(--highlight);
}
/* ---------------- News Page Styles ---------------- */
.news-layout {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 4rem;
padding-top: 4rem;
}
.news-card {
display: flex;
gap: 2rem;
margin-bottom: 3rem;
align-items: flex-start;
}
.news-thumb {
width: 300px;
height: 200px;
object-fit: cover;
border-radius: var(--radius);
background: #eee;
flex-shrink: 0;
}
@media(max-width: 768px) {
.news-card {
flex-direction: column;
}
.news-thumb {
width: 100%;
height: 250px;
}
}
.news-main-title {
font-size: 1.5rem;
line-height: 1.3;
margin-bottom: 1rem;
color: var(--primary);
font-family: var(--font-heading);
font-weight: 700;
}
.news-excerpt {
color: var(--text-gray);
margin-bottom: 1rem;
}
.sidebar-title {
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 1.5rem;
border-bottom: 2px solid var(--primary);
padding-bottom: 0.5rem;
display: inline-block;
}
.event-widget {
background: var(--bg-section);
padding: 2rem;
border-radius: var(--radius);
}
.event-item {
display: flex;
gap: 1rem;
margin-bottom: 1.5rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--border);
}
.event-item:last-child {
border: none;
margin: 0;
padding: 0;
}
.event-date {
text-align: center;
background: white;
padding: 0.5rem;
border-radius: 4px;
min-width: 60px;
height: fit-content;
border: 1px solid var(--border);
}
.date-day {
display: block;
font-size: 1.5rem;
font-weight: 700;
line-height: 1;
color: var(--primary);
}
.date-month {
font-size: 0.7rem;
text-transform: uppercase;
font-weight: 600;
color: var(--text-gray);
}
@media(max-width: 1024px) {
.news-layout {
grid-template-columns: 1fr;
}
.news-card {
flex-direction: column;
}
.news-thumb {
width: 100%;
height: 250px;
}
}
/* ---------------- Sustainability Page Styles ---------------- */
.sus-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
margin-bottom: 6rem;
}
.sus-img {
width: 100%;
border-radius: var(--radius);
}
.sus-stat-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
text-align: center;
margin-top: 3rem;
background: #f0fdf4;
padding: 4rem;
border-radius: var(--radius);
}
.sus-stat-num {
font-size: 3rem;
font-weight: 700;
color: #16a34a;
/* Green */
font-family: var(--font-heading);
margin-bottom: 0.5rem;
}
@media(max-width: 1024px) {
.sus-grid {
grid-template-columns: 1fr;
}
.sus-stat-grid {
grid-template-columns: 1fr;
}
}
/* ---------------- Products Page Styles ---------------- */
.page-hero {
position: relative;
padding: 6rem 0;
background: #0f172a;
color: white;
text-align: center;
overflow: hidden;
}
.page-hero-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
opacity: 0.3;
z-index: 0;
}
.page-hero-content {
position: relative;
z-index: 10;
}
.breadcrumb {
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
margin-bottom: 1.5rem;
display: flex;
justify-content: center;
gap: 0.5rem;
}
.products-layout {
display: grid;
grid-template-columns: 250px 1fr;
gap: 3rem;
padding-top: 2rem;
}
.sidebar {
position: sticky;
top: 100px;
height: fit-content;
}
.filter-group {
margin-bottom: 2rem;
}
.filter-title {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--border);
}
.filter-list {
list-style: none;
}
.filter-item {
margin-bottom: 0.5rem;
}
.filter-item a {
display: flex;
justify-content: space-between;
color: var(--text-gray);
padding: 0.5rem;
border-radius: var(--radius);
transition: 0.2s;
font-size: 0.95rem;
}
.filter-item a:hover,
.filter-item a.active {
background: var(--bg-section);
color: var(--primary);
font-weight: 600;
}
.prod-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.prod-card {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
transition: 0.3s;
height: 100%;
display: flex;
flex-direction: column;
}
.prod-card:hover {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
transform: translateY(-5px);
}
.prod-img-box {
height: 250px;
overflow: hidden;
position: relative;
background: #f8fafc;
}
.prod-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: 0.5s;
}
.prod-card:hover .prod-img {
transform: scale(1.05);
}
.prod-content {
padding: 1.5rem;
flex: 1;
display: flex;
flex-direction: column;
}
.prod-cat-label {
font-size: 0.75rem;
color: var(--text-gray);
text-transform: uppercase;
font-weight: 600;
margin-bottom: 0.5rem;
display: block;
}
.prod-title {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: var(--text-dark);
}
.btn-full {
margin-top: auto;
width: 100%;
}
@media(max-width: 992px) {
.products-layout {
grid-template-columns: 1fr;
}
.sidebar {
display: none;
/* simple mobile hide for now, or could change to top */
}
}
/* Homepage News Redesign */
.home-news-card {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
align-items: flex-start;
padding-bottom: 2rem;
border-bottom: 1px solid var(--border);
}
.home-news-card:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.home-news-img {
width: 140px;
height: 100px;
object-fit: cover;
border-radius: var(--radius);
background: #f1f5f9;
flex-shrink: 0;
}
.home-news-content {
flex: 1;
}
.home-news-date {
font-size: 0.75rem;
color: var(--gold);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 0.5rem;
display: block;
}
.home-news-title {
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.1rem;
line-height: 1.3;
margin-bottom: 0.5rem;
color: var(--text-dark);
display: block;
transition: 0.2s;
}
.home-news-title:hover {
color: var(--primary);
}
.home-news-excerpt {
font-size: 0.9rem;
color: var(--text-gray);
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
@media(max-width: 600px) {
.home-news-card {
flex-direction: column;
gap: 1rem;
}
.home-news-img {
width: 100%;
height: 180px;
}
}
/* --- RESTORED UTILITIES --- */
/* Header & Marquee Utilities */
.marquee-bg {
background: var(--primary);
color: white;
}
.marquee-static {
background-color: var(--primary);
color: white;
text-align: center;
padding: 0.5rem;
font-size: 0.9rem;
font-weight: 500;
}
.marquee-spacer {
margin: 0 2rem;
}
/* Footer Utilities */
.footer-logo-img {
height: 60px;
width: auto;
margin-bottom: 1rem;
background: white;
padding: 5px;
border-radius: 4px;
}
.footer-desc {
color: #94a3b8;
font-size: 0.9rem;
margin-top: 0.5rem;
line-height: 1.5;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-icon {
color: #94a3b8;
transition: color 0.3s;
}
.social-icon:hover {
color: white;
}
.footer-contact-info {
margin-top: 1.5rem;
color: #94a3b8;
font-size: 0.9rem;
}
.footer-btm {
margin-top: 3rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-legal {
display: flex;
gap: 1.5rem;
}
.footer-legal a {
color: #94a3b8;
font-size: 0.85rem;
transition: color 0.3s;
}
.footer-legal a:hover {
color: var(--gold);
}
.power-link {
color: var(--text-gray);
text-decoration: underline;
}
.power-link:hover {
color: var(--primary);
}
/* Index Page Utilities */
.section-header-flex {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 2rem;
}
.section-header-center {
text-align: center;
margin-bottom: 3rem;
}
.section-subtext {
margin-top: 1rem;
color: var(--text-gray);
max-width: 600px;
margin-inline: auto;
}
.text-primary {
color: var(--primary);
}
.mb-half {
margin-bottom: 0.5rem;
}
.mb-3 {
margin-bottom: 3rem;
}
/* --- RESTORED COMPANY PAGE STYLES --- */
/* Split Layout */
.split-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.split-layout.reverse {
direction: rtl;
/* simple way to reverse grid */
}
.split-layout.reverse>* {
direction: ltr;
/* reset content direction */
}
.split-image img {
width: 100%;
border-radius: var(--radius);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.sub-heading {
display: inline-block;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 700;
color: var(--primary);
margin-bottom: 1rem;
padding-bottom: 0.5rem;
position: relative;
}
.sub-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background: var(--gold);
}
.text-justify {
text-align: justify;
}
/* Cert Strip */
.cert-strip {
background: #f8fafc;
border-bottom: 1px solid var(--border);
padding: 1.5rem 0;
}
.cert-flex {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
gap: 1.5rem;
}
.cert-flex span {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
font-size: 0.9rem;
color: var(--primary);
}
/* Leadership Grid */
.leader-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.leader-card {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
transition: 0.3s;
}
.leader-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.leader-img {
height: 320px;
overflow: hidden;
background: #f1f5f9;
}
.leader-img img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top;
transition: 0.5s;
}
.leader-card:hover .leader-img img {
transform: scale(1.05);
}
.leader-info {
padding: 2rem;
}
.leader-info h3 {
font-size: 1.25rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 0.25rem;
}
.leader-role {
font-size: 0.85rem;
text-transform: uppercase;
font-weight: 600;
color: var(--gold);
display: block;
margin-bottom: 1rem;
}
.leader-bio {
font-size: 0.9rem;
color: var(--text-gray);
line-height: 1.6;
}
/* Philosophy */
.philosophy-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
}
.ph-card {
text-align: center;
padding: 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background: rgba(255, 255, 255, 0.03);
border-radius: var(--radius);
transition: 0.3s;
}
.ph-card:hover {
background: rgba(255, 255, 255, 0.08);
transform: translateY(-5px);
}
.ph-icon {
width: 60px;
height: 60px;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
background: var(--gold);
color: white;
border-radius: 50%;
}
.divider-center {
width: 60px;
height: 3px;
background: var(--gold);
margin: 1.5rem auto 0;
}
/* Stats */
.stat-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
text-align: center;
}
.stat-card {
padding: 2rem;
background: #f8fafc;
border-radius: var(--radius);
}
.stat-num {
font-size: 3.5rem;
font-weight: 800;
color: var(--primary);
line-height: 1;
margin-bottom: 0.5rem;
font-family: var(--font-heading);
}
@media(max-width: 992px) {
.split-layout {
grid-template-columns: 1fr;
gap: 3rem;
}
.split-layout.reverse {
direction: ltr;
/* reset for mobile */
}
.split-layout.reverse .split-image {
order: -1;
/* image top on mobile */
}
}
/* --- RESTORED SUSTAINABILITY PAGE STYLES --- */
/* Pillars Grid */
.pillars-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 5rem;
}
.pillar-card {
text-align: center;
padding: 2.5rem 2rem;
background: white;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
border-radius: var(--radius);
border-top: 4px solid var(--primary);
transition: 0.3s;
}
.pillar-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.pillar-icon {
margin-bottom: 1.5rem;
color: #16a34a;
/* green */
}
/* Air Quality Section */
.air-quality-section {
background: #f0fdf4;
/* Light green bg */
padding: 5rem 0;
margin-bottom: 5rem;
}
.air-quality-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
/* Compliance Grid */
.compliance-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin-bottom: 6rem;
}
.compliance-card {
display: flex;
gap: 1.5rem;
padding: 1.5rem;
background: white;
border: 1px solid var(--border);
border-radius: var(--radius);
align-items: flex-start;
}
.comp-icon {
width: 50px;
height: 50px;
background: var(--bg-section);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
flex-shrink: 0;
}
/* CSR Grid */
.csr-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
background: #fff7ed;
/* Light orange/warm bg */
border-radius: var(--radius);
overflow: hidden;
}
.csr-img img {
width: 100%;
height: 100%;
object-fit: cover;
min-height: 400px;
}
.csr-content {
padding: 4rem;
}
@media(max-width: 992px) {
.air-quality-grid,
.csr-grid {
grid-template-columns: 1fr;
}
.csr-img img {
height: 250px;
}
.csr-content {
padding: 2rem;
}
}
/* --- RESTORED CAREERS PAGE STYLES --- */
/* Job List */
.job-list {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.job-card {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 2rem;
transition: 0.3s;
}
.job-card:hover {
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.job-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 1rem;
flex-wrap: wrap;
gap: 1rem;
}
.job-meta {
display: flex;
gap: 1rem;
font-size: 0.9rem;
color: var(--text-gray);
margin-top: 0.5rem;
flex-wrap: wrap;
}
.job-meta span {
display: flex;
align-items: center;
gap: 0.4rem;
}
.job-desc {
color: var(--text-gray);
font-size: 0.95rem;
line-height: 1.6;
}
/* Badges */
.vacancy-badge {
background: var(--primary);
color: white;
font-size: 0.8rem;
padding: 0.2rem 0.6rem;
border-radius: 20px;
vertical-align: middle;
margin-left: 0.5rem;
}
.tag-badge {
font-size: 0.75rem;
padding: 0.1rem 0.5rem;
border-radius: 4px;
background: #f1f5f9;
color: var(--text);
border: 1px solid var(--border);
font-weight: 600;
}
.tag-badge.active {
background: #dcfce7;
color: #166534;
border-color: #bbf7d0;
}
.tag-badge.recent {
background: #e0f2fe;
color: #075985;
border-color: #bae6fd;
}
/* Application Form */
.form-box {
background: white;
padding: 3rem;
border-radius: var(--radius);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
max-width: 700px;
margin: 0 auto;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
font-size: 0.95rem;
}
.form-control {
width: 100%;
padding: 0.8rem;
border: 1px solid var(--border);
border-radius: 6px;
font-size: 1rem;
transition: 0.3s;
}
.form-control:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
@media(max-width: 768px) {
.job-header {
flex-direction: column;
}
.btn-block-mobile {
width: 100%;
text-align: center;
}
.form-box {
padding: 1.5rem;
}
}
/* --- RESTORED CERTIFICATIONS PAGE STYLES --- */
/* Cert Grid */
.cert-display-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-bottom: 5rem;
}
.cert-item {
text-align: center;
}
.cert-frame {
position: relative;
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
margin-bottom: 1.5rem;
transition: 0.3s;
}
.cert-frame:hover {
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.cert-badge {
position: absolute;
top: 1rem;
right: 1rem;
width: 32px;
height: 32px;
background: #16a34a;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8rem;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
z-index: 2;
}
/* Quality Block */
.quality-block {
background: var(--dark);
color: white;
border-radius: var(--radius);
padding: 4rem;
display: grid;
grid-template-columns: 1fr 300px;
gap: 4rem;
align-items: center;
position: relative;
overflow: hidden;
}
.quality-block::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 300px;
height: 100%;
background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05));
transform: skewX(-20deg);
}
.quality-title {
color: var(--gold);
margin-bottom: 1.5rem;
}
.quality-desc {
font-size: 1.2rem;
line-height: 1.6;
font-weight: 300;
font-style: italic;
margin-bottom: 2rem;
opacity: 0.9;
}
.quality-features {
list-style: none;
padding: 0;
display: flex;
gap: 2rem;
flex-wrap: wrap;
}
.quality-feature-item {
display: flex;
align-items: center;
gap: 0.8rem;
font-size: 0.95rem;
font-weight: 500;
}
.quality-feature-icon {
color: var(--gold);
}
.btn-quality {
background: white;
color: var(--dark);
border: none;
font-weight: 700;
}
.btn-quality:hover {
background: var(--gold);
color: white;
}
@media(max-width: 992px) {
.quality-block {
grid-template-columns: 1fr;
padding: 2rem;
gap: 2rem;
text-align: center;
}
.quality-features {
justify-content: center;
}
.quality-action {
margin-top: 1rem;
}
}
/* --- RESTORED PRODUCT PAGE STYLES --- */
/* Layout */
.products-layout {
display: grid;
grid-template-columns: 250px 1fr;
gap: 3rem;
align-items: flex-start;
}
/* Sidebar */
.sidebar {
background: white;
padding: 1.5rem;
border: 1px solid var(--border);
border-radius: var(--radius);
position: sticky;
top: 100px;
}
.filter-group {
margin-bottom: 2rem;
}
.filter-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--border);
color: var(--primary);
}
.filter-list {
list-style: none;
}
.filter-item a {
display: flex;
justify-content: space-between;
padding: 0.5rem 0;
color: var(--text-gray);
font-size: 0.95rem;
transition: 0.2s;
}
.filter-item a:hover,
.filter-item a.active {
color: var(--primary);
font-weight: 600;
}
.count {
background: #f1f5f9;
padding: 0.1rem 0.5rem;
border-radius: 10px;
font-size: 0.75rem;
color: var(--text-dark);
}
/* Product Grid */
.prod-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 2rem;
}
.prod-card {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
transition: 0.3s;
display: flex;
flex-direction: column;
}
.prod-card:hover {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border-color: var(--primary);
transform: translateY(-5px);
}
.prod-img-box {
height: 250px;
background: #f8fafc;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 1rem;
}
.prod-img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
transition: 0.5s;
}
.prod-card:hover .prod-img {
transform: scale(1.05);
}
.prod-content {
padding: 1.5rem;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.prod-cat-label {
font-size: 0.8rem;
text-transform: uppercase;
color: var(--gold);
font-weight: 600;
display: block;
margin-bottom: 0.5rem;
}
.prod-title {
font-size: 1.1rem;
margin-bottom: 1.5rem;
color: var(--text-dark);
font-weight: 600;
flex-grow: 1;
}
.btn-full {
display: block;
width: 100%;
text-align: center;
margin-top: auto;
}
@media(max-width: 992px) {
.products-layout {
grid-template-columns: 1fr;
}
.sidebar {
position: static;
margin-bottom: 2rem;
}
}
/* --- RESTORED BLOG/NEWS PAGE STYLES --- */
/* Filter Tabs */
.filter-tabs {
display: flex;
gap: 1rem;
margin-bottom: 3rem;
flex-wrap: wrap;
}
.filter-tab {
background: white;
border: 1px solid var(--border);
padding: 0.6rem 1.5rem;
border-radius: 50px;
font-size: 0.9rem;
font-weight: 500;
color: var(--text-gray);
cursor: pointer;
transition: 0.3s;
}
.filter-tab:hover,
.filter-tab.active {
background: var(--primary);
color: white;
border-color: var(--primary);
}
/* News Grid */
.news-grid {
display: flex;
flex-direction: column;
gap: 2rem;
}
.news-card {
display: flex;
gap: 0;
background: white;
border-radius: var(--radius);
overflow: hidden;
border: 1px solid var(--border);
transition: 0.3s;
align-items: stretch;
}
.news-card:hover {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border-color: var(--primary);
}
.news-card-img {
width: 260px;
height: 210px;
object-fit: cover;
object-position: center;
flex-shrink: 0;
display: block;
}
.news-card-body {
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: center;
flex-grow: 1;
}
.news-card-meta {
display: flex;
gap: 1rem;
font-size: 0.85rem;
margin-bottom: 0.5rem;
color: var(--text-gray);
}
.news-card h3 {
font-size: 1.25rem;
margin-bottom: 1rem;
color: var(--text-dark);
}
.news-card p {
color: var(--text-gray);
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 1.5rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
@media(max-width: 768px) {
.news-card {
flex-direction: column;
}
.news-card-img {
width: 100%;
height: 220px;
min-height: unset;
}
.news-card-body {
padding: 1.5rem;
}
}
/* --- RESTORED CONTACT PAGE STYLES --- */
/* Contact Grid */
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
}
.contact-card {
background: white;
padding: 3rem;
border-radius: var(--radius);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.info-row {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
align-items: flex-start;
}
.info-icon {
width: 50px;
height: 50px;
background: #f1f5f9;
color: var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
/* Map Section */
.map-section {
height: 500px;
background: #e2e8f0;
margin-top: 5rem;
}
/* Form Styles Override (if needed) */
.form-input {
width: 100%;
padding: 0.8rem;
border: 1px solid var(--border);
border-radius: 6px;
font-size: 1rem;
background: #f8fafc;
transition: 0.3s;
}
.form-input:focus {
outline: none;
border-color: var(--primary);
background: white;
}
@media(max-width: 992px) {
.contact-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.contact-card {
padding: 2rem;
}
.map-section {
height: 350px;
/* Smaller map on mobile */
}
}
/* --- RESPONSIVE FIXES --- */
/* Mobile Menu Toggle */
.mobile-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
color: var(--primary);
padding: 0.5rem;
}
@media (max-width: 1024px) {
/* Layout Adjustments */
.container {
padding: 0 1.5rem;
width: 100%;
max-width: 100%;
}
/* Trust Strip Stacking */
.trust-grid {
flex-direction: column;
gap: 1rem;
text-align: center;
align-items: center;
justify-content: center;
}
/* Hero Adjustments */
.hero-slider-container {
height: 60vh;
min-height: 500px;
}
.hero-number {
font-size: 4rem;
top: 15%;
color: rgba(255, 255, 255, 0.1);
}
.text-xl {
font-size: 2.5rem;
/* Force smaller size */
}
/* Navigation - Mobile Menu */
.nav-menu {
display: none;
/* Hidden by default */
position: fixed;
top: 90px;
left: 0;
width: 100%;
background: white;
flex-direction: column;
padding: 2rem;
border-bottom: 1px solid var(--border);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
z-index: 999;
gap: 1.5rem;
align-items: flex-start;
}
.nav-menu.active {
display: flex;
animation: fadeIn 0.3s ease;
}
.mobile-toggle {
display: block;
}
.header-actions {
gap: 1rem;
}
}
@media (max-width: 768px) {
/* Product Grid - Force 1 Column */
/* Use !important to override any specific inline-like specificity if present */
.product-showcase-grid {
grid-template-columns: 1fr !important;
grid-template-rows: auto !important;
}
.prod-card {
height: 300px;
/* Smaller cards */
}
.prod-card.featured {
grid-column: auto !important;
/* Remove span */
grid-row: auto !important;
}
/* Hide top nav on small screens */
.top-nav {
display: none;
}
/* Adjust header elements */
.header-inner {
height: 70px;
}
.nav-menu {
top: 70px;
/* Adjust for shorter header */
}
.btn-primary {
padding: 0.75rem 1.2rem;
/* Smaller button */
}
/* Hero Text */
.text-xl {
font-size: 2rem;
}
.hero-overline {
font-size: 0.75rem;
}
/* Footer Stacking */
.footer-grid {
grid-template-columns: 1fr !important;
gap: 2rem;
text-align: left;
}
.footer-btm {
flex-direction: column;
text-align: center;
gap: 1.5rem;
}
.footer-legal {
justify-content: center;
flex-wrap: wrap;
}
/* Remove horizontal overflows */
.trust-item {
width: 100%;
justify-content: center;
}
/* Slider Controls */
.slider-nav {
right: 1rem;
}
.slider-controls {
justify-content: center;
}
/* Fix Arrivals Slider width */
.arrival-slide {
min-width: 260px;
width: 80vw;
}
}
@media (max-width: 480px) {
/* Very small screens */
.header-actions .btn {
display: none;
/* Hide 'Partner' button, keep only menu/search */
}
.logo {
font-size: 1.4rem;
}
}
/* --- PRELOADER --- */
/* --- PRELOADER --- */
#preloader {
position: fixed;
inset: 0;
background-color: #f8fafc;
/* Clean Slate-50 */
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
#preloader.loaded {
transform: translateY(-100%);
}
.preloader-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
/* Clean layout without the heavy card */
}
/* Preloader Layout */
.preloader-row {
display: flex;
align-items: center;
gap: 1.5rem;
margin-bottom: 1rem;
}
/* Industrial Gears */
.industrial-gears {
position: relative;
width: 60px;
height: 60px;
display: flex;
justify-content: center;
align-items: center;
}
.gear-svg {
position: absolute;
width: 40px;
height: 40px;
}
.gear-larg {
width: 50px;
height: 50px;
top: -10px;
left: -10px;
animation: spinGear 4s linear infinite;
opacity: 0.8;
}
.gear-small {
width: 30px;
height: 30px;
bottom: -5px;
right: -5px;
animation: spinGearReverse 3s linear infinite;
opacity: 0.6;
}
@keyframes spinGear {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes spinGearReverse {
from {
transform: rotate(0deg);
}
to {
transform: rotate(-360deg);
}
}
/* Logo Split Container */
.split-logo-container {
position: relative;
display: flex;
align-items: center;
justify-content: center;
height: 80px;
/* Margin handled by row gap now */
}
/* Common Image Styles */
.logo-img-ref {
height: 60px;
width: auto;
max-width: none;
}
/* Part 1: Icon - HYDRAULIC PRESS EFFECT */
.logo-part-icon {
width: 50px;
overflow: hidden;
position: relative;
z-index: 2;
opacity: 0;
/* Start large and slam down */
transform: scale(3);
animation: slamIcon 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
/* Part 2: Text - TELESCOPIC SLIDE */
.logo-part-text {
width: 0px;
overflow: hidden;
position: relative;
margin-left: -2px;
opacity: 0;
animation: revealText 1.0s cubic-bezier(0.23, 1, 0.32, 1) forwards;
animation-delay: 0.6s;
/* Wait for slam */
border-right: 2px solid #e63946;
/* Laser edge */
}
/* Shift left matching the Icon width to align perfectly */
.logo-part-text .logo-img-ref {
margin-left: -50px;
}
/* Keyframes */
@keyframes slamIcon {
0% {
opacity: 0;
transform: scale(3);
}
70% {
opacity: 1;
transform: scale(0.9);
}
/* Over-compress */
100% {
opacity: 1;
transform: scale(1);
}
/* Rebound */
}
@keyframes revealText {
from {
width: 0px;
opacity: 1;
border-right-width: 2px;
}
to {
width: 200px;
opacity: 1;
border-right-width: 0px;
}
}
/* Tagline - MACHINE READOUT */
.anim-tagline {
font-family: 'Courier New', monospace;
/* Monospace is key for manufacturing */
font-size: 0.8rem;
font-weight: 700;
color: #334155;
letter-spacing: 1px;
text-transform: uppercase;
margin-top: 1rem;
margin-bottom: 2rem;
opacity: 0;
transition: opacity 0.5s;
background: #e2e8f0;
padding: 2px 8px;
border-radius: 2px;
}
/* Manufacturing Process Styles Removed */
@keyframes popP {
to {
opacity: 1;
transform: scale(1);
}
}
@keyframes slideArko {
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes fadeTagline {
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInTrack {
to {
opacity: 1;
}
}
@keyframes loadProgressFill {
0% {
width: 0%;
}
100% {
width: 100%;
}
}
/* --- COMPANY PAGE STYLES (Added Fix) --- */
/* Split Layout */
.split-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.split-layout.reverse .split-content {
order: 2;
/* Switch order on desktop */
}
.split-image img {
width: 100%;
border-radius: var(--radius);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
.split-layout,
.split-layout.reverse {
display: flex !important;
flex-direction: column !important;
gap: 2rem;
}
.split-content {
order: 1 !important;
}
.split-image {
order: 2 !important;
margin-top: 1rem;
margin-bottom: 3rem;
/* Extra space after image */
}
}
/* Cert Strip */
.cert-strip {
background: var(--bg-section);
padding: 1rem 0;
border-bottom: 1px solid var(--border);
}
.cert-flex {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
font-size: 0.9rem;
font-weight: 500;
color: var(--text-gray);
}
.cert-flex span {
display: flex;
align-items: center;
gap: 0.5rem;
}
/* Leader Grid */
.leader-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.leader-card {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
transition: 0.3s;
}
.leader-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.leader-img {
height: 350px;
background: var(--bg-section);
overflow: hidden;
}
.leader-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: 0.3s;
}
.leader-card:hover .leader-img img {
transform: scale(1.05);
}
.leader-info {
padding: 1.5rem;
}
.leader-info h3 {
font-family: var(--font-heading);
font-size: 1.2rem;
margin-bottom: 0.25rem;
}
.leader-role {
color: var(--primary);
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
display: block;
margin-bottom: 1rem;
}
/* Philosophy */
.philosophy-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.ph-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 2rem;
border-radius: var(--radius);
}
.ph-icon {
color: var(--highlight);
margin-bottom: 1rem;
}
/* Stats */
.stat-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
text-align: center;
}
.stat-num {
font-size: 3rem;
font-weight: 800;
color: var(--primary);
line-height: 1;
margin-bottom: 0.5rem;
}
/* -------------------------------------------
BLOG DETAIL UI ENHANCEMENTS
------------------------------------------- */
/* Reading Progress Bar */
.reading-progress-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: transparent;
z-index: 1000;
}
.reading-progress-bar {
height: 100%;
background: var(--primary);
width: 0%;
transition: width 0.1s;
}
/* Blog Layout Grid */
.blog-layout-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
position: relative;
}
@media (min-width: 992px) {
.blog-layout-grid {
grid-template-columns: 1fr 300px;
/* Content + Sidebar */
}
}
/* Typography Enhancements */
.drop-cap-wrapper::first-letter {
float: left;
font-size: 3.5rem;
line-height: 0.8;
padding: 0.1em 0.1em 0 0;
color: var(--primary);
font-family: var(--font-heading);
font-weight: 700;
}
.blog-main-content .content-body h2 {
font-family: var(--font-heading);
font-size: 1.8rem;
margin-top: 2.5rem;
margin-bottom: 1rem;
color: var(--primary);
font-weight: 700;
}
.blog-main-content .content-body h3 {
font-family: var(--font-heading);
font-size: 1.4rem;
margin-top: 2rem;
margin-bottom: 0.8rem;
color: var(--secondary);
font-weight: 600;
}
.blog-main-content .content-body blockquote {
border-left: 4px solid var(--highlight);
background: var(--bg-section);
padding: 1.5rem;
margin: 2rem 0;
font-style: italic;
font-size: 1.25rem;
color: var(--text-dark);
border-radius: 0 var(--radius) var(--radius) 0;
}
/* Author Bio */
.author-bio {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 2rem;
background: white;
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.author-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
background: var(--bg-section);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
/* Sidebar & Sticky Widget */
.blog-sidebar {
margin-top: 0;
}
.sticky-sidebar {
position: sticky;
top: 100px;
/* Adjust based on header height */
display: flex;
flex-direction: column;
gap: 2rem;
}
.sidebar-widget {
background: white;
padding: 1.5rem;
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.widget-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--primary);
border-bottom: 2px solid var(--border);
padding-bottom: 0.5rem;
}
.share-links-vertical {
display: flex;
flex-direction: row;
/* Default layout for mobile/widget */
gap: 1rem;
justify-content: center;
}
@media (min-width: 992px) {
.share-links-vertical {
flex-direction: column;
/* Stack vertically if desired, or keep grid */
}
}
.share-btn {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
border: 1px solid var(--border);
background: white;
color: var(--text-gray);
transition: all 0.2s;
cursor: pointer;
}
.share-btn:hover {
transform: translateY(-2px);
border-color: var(--highlight);
color: var(--highlight);
box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}
.share-btn.whatsapp:hover {
color: #25D366;
border-color: #25D366;
}
.share-btn.email:hover {
color: #EA4335;
border-color: #EA4335;
}
/* Newsletter Widget */
.newsletter-widget {
background: var(--primary);
color: white;
border: none;
}
.newsletter-widget .widget-title {
color: white;
border-color: rgba(255, 255, 255, 0.2);
}
.newsletter-widget .text-sm {
color: rgba(255, 255, 255, 0.8);
}
/* Table of Contents */
.toc-list {
list-style: none;
padding: 0;
margin: 0;
}
.toc-list li {
margin-bottom: 0.5rem;
}
.toc-list a {
font-size: 0.9rem;
color: var(--text-gray);
text-decoration: none;
transition: color 0.2s;
display: block;
padding-left: 10px;
border-left: 2px solid transparent;
}
.toc-list a:hover {
color: var(--primary);
border-left-color: var(--primary);
}
/* Feature Grid */
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}
.feature-card {
background: white;
padding: 2rem;
border-radius: 2px;
border: 1px solid #e2e8f0;
transition: 0.3s;
text-align: center;
}
.feature-card:hover {
border-color: #0F2C59;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
transform: translateY(-5px);
}
/* Preloader - Added by Assistant */
#preloader {
position: fixed;
inset: 0;
z-index: 9999;
background: white;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.loaded {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
