/* Custom Styles for Gridcore Energy */
:root {
    --primary-blue: #0d47a1;
    --accent-yellow: #ffc107;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

.max-w-700 {
    max-width: 700px;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center/cover no-repeat;
    height: 80vh;
    min-height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9) 0%, rgba(25, 118, 210, 0.7) 100%);
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

/* Cards Hover Effects */
.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent !important;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    border-top: 4px solid var(--primary-blue) !important;
}

.product-card {
    border-left: 4px solid var(--primary-blue) !important;
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.product-card:hover {
    transform: scale(1.03);
    background: #ffffff;
}

/* Utilities */
.text-primary {
    color: var(--primary-blue) !important;
}
.bg-primary {
    background-color: var(--primary-blue) !important;
}
.btn-primary {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}
.btn-primary:hover {
    background-color: #002171 !important;
}

/* Menetapkan saiz gambar produk menjadi lebih kecil */
.product-card img {
    height: 150px !important; 
    transition: transform 0.4s ease-in-out !important; 
}

/* Kesan membesar (zoom) apabila tetikus ditumpukan (hover) */
.product-card:hover img {
    transform: scale(1.5) !important; 
}