/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-black: #000000;
    --primary-gold: #FFD700;
    --primary-white: #FFFFFF;
    --text-gray: #666666;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

/* Header Styles */
.header {
    background-color: var(--primary-black);
    color: var(--primary-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    background: none;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: bold;
}

.logo-text p {
    font-size: 0.8rem;
    color: #ccc;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-black);
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 1rem;
    color: var(--primary-white);
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #333;
    color: var(--primary-gold);
}

.dropdown-menu a:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 1.5rem;
    cursor: pointer;
}


/* Section Styles */
.section {
    display: none;
    min-height: 100vh;
}

.section.active {
    display: block;
}

.page-hero {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
  padding: 80px 20px;
  min-height: 260px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;                       /* top:0; right:0; bottom:0; left:0 */
  background-color: rgba(0,0,0,0.7); /* change opacity as needed */
  z-index: 1;                     /* overlay above background */
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 2; /* text overlay ke upar rahe */
}
.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero .highlight {
    color: var(--primary-gold);
}

.page-hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--primary-white);
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-white);
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-gold);
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gold);
}

/* Introduction Section */
.intro-section {
    text-align: center;
    padding: 5rem 0;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.intro-section .highlight {
    color: var(--primary-gold);
}

.intro-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.feature-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.contact-form-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.benefits-list i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

/* About Page Styles */
.about-intro {
    text-align: center;
    padding: 3rem 0;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.vision-mission-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.vision-mission-card p,
.vision-mission-card ul {
    color: var(--text-gray);
    line-height: 1.8;
}

.vision-mission-card ul {
    list-style: none;
}

.vision-mission-card li {
    margin-bottom: 0.5rem;
}

/* Chairman Section */
.chairman-section {
    background: var(--primary-white);
    padding: 5rem 0;
    margin: 3rem 0;
}

.chairman-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chairman-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chairman-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.chairman-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.chairman-signature {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.chairman-signature p {
    margin-bottom: 0.5rem;
}

.chairman-signature p:first-child {
    font-weight: bold;
    color: var(--primary-black);
}

/* Team Section */
.team-section {
    text-align: center;
    padding: 5rem 0;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.team-section > p {
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.team-slider {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.team-slide {
    display: none;
}

.team-slide.active {
    display: block;
}

.team-card {
    background: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.team-info .designation {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-info .email {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.team-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.team-btn:hover {
    background: #e6c200;
}

.team-btn.prev {
    left: -60px;
}

.team-btn.next {
    right: -60px;
}

.team-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}


/* Products Page */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.product-category-card {
    background: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.hero-vehicle-parts{
    background: url('images/vehicle-banner.jpg') no-repeat center center/cover;
}
.hero-cleaning{
    background: url('images/cleaning-banner.jpg') no-repeat center center/cover;
}
.hero-food{
    background: url('images/food-banner.jpg') no-repeat center center/cover;
}
.hero-hardware{
    background: url('images/hardware-banner.jpg') no-repeat center center/cover;
}
.hero-packaging-safety{
    background: url('images/packaging_banner.jpg') no-repeat center center/cover;
}
.hero-cleaning::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}
.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.category-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.category-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.category-items span {
    background: var(--light-gray);
    color: var(--text-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.why-choose-section {
    background: var(--primary-white);
    padding: 5rem 0;
    text-align: center;
    margin-top: 3rem;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-black);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    padding: 2rem;
}

.why-choose-number {
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-black);
    margin: 0 auto 1.5rem;
}

.why-choose-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.why-choose-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Product Detail Pages */
.product-detail .page-hero {
    position: relative;
}

.product-hero-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.product-hero-icon i {
    font-size: 3rem;
    color: var(--primary-black);
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.product-category {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
  overflow: hidden;
  align-items: stretch;
  min-height: 140px;
}

.product-category .category-image{
    width: 210px;                   /* adjust width as needed */
  margin: 32px;
    flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.product-category ul {
    list-style: none;
}

.product-category li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.product-category i {
    color: var(--primary-gold);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-header i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.product-features {
    background: var(--primary-white);
    padding: 5rem 0;
    text-align: center;
    margin: 3rem 0;
}

.product-features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-black);
}

.feature-item {
    padding: 2rem;
}

.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-item .feature-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Hardware Page Specific */
.hardware-content {
    padding: 3rem 0;
}

.hardware-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hardware-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.hardware-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hardware-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.hardware-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hardware-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hardware-feature .feature-icon i {
    font-size: 1.2rem;
    color: var(--primary-black);
}

.hardware-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.hardware-feature p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.hardware-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Vehicle Parts Specific */
.vehicle-intro {
    text-align: center;
    padding: 3rem 0;
}

.vehicle-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.vehicle-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.vehicle-brands {
    background: var(--primary-white);
    padding: 5rem 0;
    text-align: center;
    margin: 3rem 0;
}

.vehicle-brands h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-black);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-item {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
}

.brands-note {
    color: var(--text-gray);
    font-style: italic;
}

/* Gallery Page */
.gallery-filter,
.blog-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0;
    background: var(--primary-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: var(--light-gray);
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--primary-white);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: var(--primary-white);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0,0,0,0.8);
}

/* Blog Page */
.featured-article {
    padding: 3rem 0;
}

.featured-article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-image {
    position: relative;
    height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category {
    background: var(--light-gray);
    color: var(--text-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.featured-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.article-card {
    background: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.article-image {
    position: relative;
    height: 200px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    line-height: 1.4;
}

.article-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-content .article-meta {
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.newsletter-section {
    background: var(--primary-black);
    padding: 5rem 0;
    text-align: center;
    color: var(--primary-white);
    margin: 3rem 0;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-gold);
}

/* Contact Page */
.office-building {
    margin: 3rem 0;
}



.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem 0;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.contact-info > p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.contact-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.contact-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.map-section {
    background: var(--primary-white);
    padding: 5rem 0;
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.map-section p {
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-choose-contact {
    padding: 5rem 0;
}

.why-choose-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-black);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo-text h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.footer-logo-text p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-black);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #333;
        margin-top: 1rem;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slider-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .slider-btn.prev {
        left: 1rem;
    }

    .slider-btn.next {
        right: 1rem;
    }

    .contact-form-grid,
    .chairman-grid,
    .hardware-grid,
    .featured-article-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-categories-grid {
        grid-template-columns: 1fr;
    }

    .team-btn.prev {
        left: -40px;
    }

    .team-btn.next {
        right: -40px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .intro-section h2,
    .about-intro h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .hardware-features {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .team-btn {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Chairman Section Styling */
.chairman-section {
  padding: 40px;
  background: #f9f9f9;
  border-radius: 8px;
}

.chairman-grid {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap; /* makes it responsive */
}

.chairman-image img {
  max-width: 250px;   /* Adjust size here */
  height: auto;
  border-radius: 12px; /* rounded corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.chairman-content {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
}

.chairman-content h2 {
  font-size: 26px;
  margin-bottom: 15px;
  font-family: serif;
}

.chairman-sign {
  margin-top: 20px;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
}
/* Slider text color */
.hero-slider h1,
.hero-slider h2,
.hero-slider p {
  color: #fff !important;  /* White text */
}

/* Slider button text */
.hero-slider .btn-primary {
  color: #fff;
  border: 2px solid #fff;
  background: transparent;   /* Optional: transparent with white border */
}

.hero-slider .btn-primary:hover {
  background: #fff;
  color: #000;   /* On hover, invert for readability */
}
/* General Product Section */
.product-detail {
  padding: 60px 20px;
  background: #f9f9f9;
}

.product-detail h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
}

.product-detail p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* Hero Icon */
.product-hero-icon {
  font-size: 60px;
  color: #000;
  margin-bottom: 15px;
}

/* Product Categories Grid */
.product-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.product-category {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.product-category:hover {
  transform: translateY(-5px);
}

.product-category .category-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-category h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.product-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-category li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
}

.product-category li i {
  color: #28a745;
  margin-right: 6px;
}

/* Features Section */
.product-features {
  margin-top: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.feature-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
  color: #000;
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.feature-item p {
  font-size: 14px;
  color: #555;
}

/* Hardware Layout (split left-right) */
.hardware-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hardware-info {
  flex: 1;
  min-width: 300px;
}

.hardware-image {
  flex: 1;
  min-width: 300px;
}

.hardware-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Hardware features inside text block */
.hardware-features {
  margin-top: 20px;
}

.hardware-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.hardware-feature .feature-icon {
  font-size: 22px;
  margin-right: 12px;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .hardware-grid {
    flex-direction: column;
    text-align: center;
  }

  .hardware-feature {
    justify-content: center;
    text-align: left;
  }
}
/* General text alignment for product sections */
.product-detail-content,
.product-category,
.feature-item,
.hardware-info {
  text-align: left;   /* default desktop alignment */
}

/* Headings styling */
.product-detail-content h2,
.product-category h3,
.feature-item h3,
.hardware-info h2 {
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Paragraphs */
.product-detail-content p,
.product-category p,
.feature-item p,
.hardware-info p {
  color: #444;
  line-height: 1.6;
}

/* UL lists inside product categories */
.product-category ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.product-category li {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  display: flex;
  align-items: center;
}

.product-category li i {
  color: #28a745;
  margin-right: 8px;
}

/* Center alignment on smaller screens */
@media (max-width: 992px) {
  .product-detail-container,
  .product-categories-grid,
  .hardware-grid,
  .features-grid {
    text-align: center;
  }

  .product-category li {
    justify-content: center;
  }

  .hardware-feature {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
/* Force text visibility */
.product-detail-content,
.product-category,
.feature-item,
.hardware-info {
  color: #222 !important;     /* dark readable text */
  text-align: left;           /* align properly */
  position: relative;         /* avoid overlaps */
  z-index: 5;                 /* ensure above backgrounds */
}

/* Headings */
.product-detail-content h2,
.product-category h3,
.feature-item h3,
.hardware-info h2 {
  color: #111 !important;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Paragraphs */
.product-detail-content p,
.product-category p,
.feature-item p,
.hardware-info p {
  color: #333 !important;
  line-height: 1.6;
  font-size: 15px;
}

/* Lists */
.product-category ul {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}

.product-category li {
  font-size: 14px;
  color: #333 !important;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.product-category li i {
  color: #28a745;
  margin-right: 8px;
}

/* Responsive alignment */
@media (max-width: 992px) {
  .product-detail-content,
  .product-category,
  .feature-item,
  .hardware-info {
    text-align: center !important;
  }

  .product-category li {
    justify-content: center;
  }

  .hardware-feature {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
/* Office Building Section */
.office-building {
  text-align: center; /* center image */
  margin: 30px auto;
  max-width: 1000px;  /* keeps image from being too wide */
}

.office-building img {
  width: 100%;
  height: auto;
  border-radius: 12px;            /* rounded corners */
  box-shadow: 0 6px 20px rgba(0,0,0,0.15); /* subtle shadow */
  object-fit: cover;              /* ensures image doesn’t stretch */
}
h1 {
    color: #FFFFFF !important;
}
/* FORCE LIST ITEMS TO BE VISIBLE */
.product-detail ul,
.product-detail li {
    display: block !important;
    color: #ffffff !important;          /* white text */
    margin-left: 1rem !important;       /* indent */
    line-height: 1.6 !important;
    list-style: none;                   /* remove default bullets */
}

/* show Font-Awesome check icons */
.product-detail li i {
    display: inline-block !important;
    color: #FFD700 !important;          /* gold check */
    margin-right: 0.5rem !important;
    min-width: 16px;                    /* keep space even if icon fails */
}
/* ┌------------------------------------┐
   │  INDIVIDUAL PRODUCT CARDS – v2    │
   └------------------------------------┘ */
.product-categories-grid{
    display:grid;
    gap:2rem;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    padding:2rem 0;
}

.product-category{
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    transition:transform .3s ease, box-shadow .3s ease;
    display:flex;
    flex-direction:column;
}

.product-category:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 28px rgba(0,0,0,.12);
}

/* image wrapper – keeps aspect ratio */
.product-category .category-image{
    width:100%;
    aspect-ratio:4/3;
    overflow:hidden;
}

.product-category .category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.product-category:hover .category-image img{
    transform:scale(1.05);
}

/* text block */
.product-category ul{
    list-style:none;
    margin:0;
    padding:1.5rem;
    flex:1;                     /* make all cards same height */
    display:flex;
    flex-direction:column;
}

.product-category ul h3{
    font-size:1.25rem;
    margin:0 0 1rem;
    color:#000;                 /* dark heading */
}

.product-category ul li{
    font-size:.95rem;
    color:#333;                 /* readable body */
    margin-bottom:.5rem;
    display:flex;
    align-items:center;
    gap:.5rem;
}

.product-category ul li i{
    color:#FFD700;              /* gold check */
    font-size:.9rem;
    min-width:16px;             /* keep alignment if icon fails */
}

/* mobile tweaks */
@media(max-width:768px){
    .product-categories-grid{
        grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
        gap:1.5rem;
    }
}

@media(max-width:480px){
    .product-categories-grid{
        grid-template-columns:1fr;
    }
}
/* FORCE BLACK TEXT INSIDE PRODUCT CARDS */
.product-category *,
.product-category ul *,
.product-category li,
.product-category h3,
.product-category i {
    color: #000000 !important;
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  MATERIAL 3 – FOOD CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

/* Design tokens */
:root{
  --md-sys-color-surface:#FFFFFF;
  --md-sys-color-on-surface:#1C1B1F;
  --md-sys-color-on-surface-variant:#49454F;
  --md-sys-color-primary:#005DAA;        /* blue 40 */
  --md-sys-color-on-primary:#FFFFFF;
  --md-sys-color-outline:#79747E;
  --md-sys-color-outline-variant:#C4C7C5;
  --md-sys-elevation-1:0 1px 3px 1px rgba(0,0,0,.15),0 1px 2px 0 rgba(0,0,0,.30);
  --md-sys-elevation-2:0 2px 6px 2px rgba(0,0,0,.15),0 1px 2px 0 rgba(0,0,0,.30);
  --md-sys-shape-corner-large:12px;
  --md-sys-typescale-title-medium:500 1rem/1.5 "Roboto",sans-serif;
  --md-sys-typescale-body-medium:400 .875rem/1.4 "Roboto",sans-serif;
}

/* Card container */
.product-category{
  background:var(--md-sys-color-surface);
  border-radius:var(--md-sys-shape-corner-large);
  box-shadow:var(--md-sys-elevation-1);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:box-shadow .2s ease;
}
.product-category:hover{
  box-shadow:var(--md-sys-elevation-2);
}

/* Image – Material centre crop */
.product-category .category-image{
  width:100%;
  aspect-ratio:4/3;
  background:var(--md-sys-color-outline-variant);
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-category .category-image img{
  width:72%;
  height:72%;
  object-fit:contain;
  border-radius:8px;
}

/* Text block */
.product-category ul{
  list-style:none;
  margin:0;
  padding:1rem 1.25rem 1.25rem;
  flex:1;
}
.product-category ul h3{
  font:var(--md-sys-typescale-title-medium);
  color:var(--md-sys-color-on-surface);
  margin:0 0 .75rem;
}
.product-category ul li{
  font:var(--md-sys-typescale-body-medium);
  color:var(--md-sys-color-on-surface-variant);
  margin-bottom:.35rem;
  display:flex;
  align-items:center;
  gap:.5rem;
}
.product-category ul li i{          /* check icon */
  color:var(--md-sys-color-primary);
  font-size:1rem;
}

/* Ripple effect (optional) */
.product-category{
  position:relative;
  overflow:hidden;
}
.product-category::before{          /* simple ripple */
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at var(--x,50%) var(--y,50%),rgba(0,93,170,.15) 1%,transparent 1%) no-repeat;
  opacity:0;
  transition:opacity .4s;
  pointer-events:none;
}
.product-category:active::before{
  opacity:1;
  transition:0s;
}

/* Responsive – 1 column phone, 2 tablet, 4 desktop */
@media(max-width:600px){
  .product-categories-grid{grid-template-columns:1fr}
}
@media(min-width:601px) and (max-width:1024px){
  .product-categories-grid{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:1025px){
  .product-categories-grid{grid-template-columns:repeat(4,1fr)}
}
/* Material cover image – fills card top */
.product-category .category-image {
    width: 100%;
    height: 200px; /* Material standard 16:10 mini-hero */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-category .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fill without stretch */
    display: block;
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  MATERIAL HERO BANNERS  –  CSS ONLY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

/* packaging & safety */
.hero-packaging-safety {
    background: url("https://crownksa.com/wp-content/uploads/2025/09/packaging_banner.jpg")
                center/cover no-repeat;
}

/* hardware */
.hero-hardware {
    background: url("https://crownksa.com/wp-content/uploads/2025/09/hardware-banner.jpg")
                center/cover no-repeat;
}

/* food */
.hero-food {
    background: url("https://crownksa.com/wp-content/uploads/2025/09/food-banner.jpg")
                center/cover no-repeat;
}

/* cleaning */
.hero-cleaning {
    background: url("https://crownksa.com/wp-content/uploads/2025/09/cleaning-banner.webp")
                center/cover no-repeat;
}

/* vehicle spare parts */
.hero-vehicle-parts {
    background: url("https://crownksa.com/wp-content/uploads/2025/09/vehicle-banner.webp")
                center/cover no-repeat;
}
/* white paragraph text inside hero banners */
.page-hero p,
.page-hero .highlight {
    color: #ffffff !important;
}
@media (max-width: 768px) {
  /* hamburger visible */
  .mobile-menu-btn {
    display: block !important;
  }

  /* nav hidden by default */
  #nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-black);
    flex-direction: column;
    padding: 1rem 0;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
  }

  /* nav open when active */
  #nav.active {
    display: flex !important;
  }

  /* dropdown links always visible */
  #nav.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #222;
    margin: 0.25rem 0 0 1rem;
  }

  /* full-width links */
  #nav.active a {
    width: 100%;
    padding: 0.75rem 1.25rem;
    color: #ffffff !important;
    border-bottom: 1px solid #333;
  }
}
/* CEO card - Material 3 look */
.team-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: box-shadow .3s ease;
}
.team-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.20);
}

/* portrait wrapper - perfect circle */
.team-image {
  width: 160px;
  height: 160px;
  margin: 1.5rem auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FFD700; /* gold ring */
  background: #f5f5f5;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* no stretch, no crop */
  display: block;
}

/* text block */
.team-info {
  text-align: center;
  padding: 0 1rem 1.5rem;
}
.team-info h3 {
  font-size: 1.25rem;
  margin: 0 0 .25rem;
  color: #000;
}
.team-info .designation {
  color: #005DAA; /* Material blue */
  font-weight: 500;
  margin-bottom: .5rem;
}
.team-info .email {
  font-size: .875rem;
  color: #49454F;
}
/* CEO portrait – Material 3 elevated disc */
.team-image {
  width: 180px;
  height: 180px;
  margin: 2rem auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #FFFFFF;          /* white ring */
  box-shadow: 0 4px 18px rgba(0,0,0,.20),
              0 0 0 4px #FFD700;      /* gold halo */
  background: #fafafa;
  transition: transform .3s ease,
              box-shadow .3s ease;
}

.team-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,.25),
              0 0 0 4px #FFD700;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* no stretch, no crop */
  display: block;
  filter: contrast(1.05) saturate(1.05); /* pop colours */
}
.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25) 0%, transparent 60%);
  pointer-events: none;
}
/* Center face inside perfect circle */
.team-image {
  width: 180px;
  height: 180px;
  margin: 2rem auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .20), 0 0 0 4px #FFD700;
  display: flex;          /* 🔑 centers horizontally & vertically */
  align-items: center;
  justify-content: center;
  background: #fafafa;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* keeps ratio, fills circle */
  object-position: center; /* 🔑 face in the absolute middle */
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* ← shift face down */
  display: block;
}
/* BIGGER CEO CARD */
.team-slide {
    max-width: 320px;          /* was 400 → bigger container */
    margin: 0 auto;
}

.team-card {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

/* larger perfect circle */
.team-image {
    width: 220px;              /* was 180 */
    height: 220px;
    border: 8px solid #fff;
    box-shadow: 0 0 0 6px #FFD700;
}

/* bigger text */
.team-info h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 .25rem;
}

.team-info .designation {
    font-size: 1.1rem;
}

.team-info .email {
    font-size: 1rem;
}