* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

/* Slideshow */
.slideshow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
}

.slide {
    display: none;
    height: 100%;
    width: 100%;
    /* Removed object-fit: cover from here as it applies to img, not the div */
}

.slide img {
    width: 100%;
    height: 100%;
    /* Changed from height: auto; to 100% to ensure full vertical coverage */
    object-fit: cover;
}

.fade {
    animation-name: fade;
    animation-duration: 2s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* Navbar */
header {
    position: relative;
    z-index: 9;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    background-color: transparent;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

nav ul {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: white;
}

.left {
    font-size: 30px;
    color: whitesmoke;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-navbar {
    height: 80px;
    width: 80px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: whitesmoke;
    margin-left: 10px;
}

.logo-square {
    height: 100px;
    width: 100px;
    margin-right: 5px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 2rem;
    color: whitesmoke;
    cursor: pointer;
    z-index: 11;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgba(0, 0, 0, 0.6);
        width: 250px;
        padding: 15px;
        z-index: 10;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 10%;
    text-align: left;
    color: black;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 42px;
    line-height: 1.5;
    font-weight: bold;
    color: black;
}

.stockist {
    color: white !important;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 350px;
    height: auto;
    border-radius: 20px;
    opacity: 0.9;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .hero-right {
        margin-top: 20px;
    }

    .hero-image {
        width: 80%;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .hero-right img {
        height: auto;
        max-width: 100%;
    }
}

/* How We Operate */
.how-we-operate {
    text-align: center;
    padding: 60px 20px;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 1;
}

.how-we-operate h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: black;
}

.operation-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.operation-box {
    flex: 1 1 250px;
    min-width: 250px;
    max-width: 300px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    text-align: center;
}

.operation-box .icon {
    background-color: #003366;
    color: #fff;
    font-size: 2.5rem;
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.operation-box h3 {
    font-size: 1.3rem;
    color: black;
    margin-bottom: 10px;
}

.operation-box p {
    color: black;
    font-size: 0.95rem;
}

/* Info Cards */
.info-cards {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card-box {
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
    height: 300px
}

.card-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-box img {
    width: 100%;
    height: 80%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card-box p {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* Info Section (assuming these are within main content) */
.info-container-1,
.info-container-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.info-section-1,
.info-section-2 {
    width: 50%;
    text-align: left;
}

.info-section-2 {
    text-align: right;
}

.image-container-1,
.image-container-2 {
    width: 50%;
    display: flex;
    justify-content: center;
}

.image-container-1 img,
.image-container-2 img {
    max-width: 70%;
    border-radius: 8px;
}

/* Responsive Info Section */
@media (max-width: 768px) {

    .info-container-1,
    .info-container-2 {
        flex-direction: column;
        text-align: center;
    }

    .info-container-2 {
        flex-direction: column-reverse;
    }

    .info-section-1,
    .info-section-2,
    .image-container-1,
    .image-container-2 {
        width: 100%;
    }

    .image-container-1 img,
    .image-container-2 img {
        max-width: 100%;
    }
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 80px 20px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(3px);
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.stat-box i {
    font-size: 50px;
    color: white;
    margin-bottom: 10px;
}

.stat-box h2 {
    font-size: 48px;
    color: #fbc02d;
    margin: 10px 0;
}

.stat-box p {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: black;
}

/* CTA Section */
.cta-section {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 50px;
    z-index: 1;
}

/* Stainless steel section */
.import {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
    margin: 60px auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.import-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-heading {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.section-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #ddd;
}

.photo-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.photo-item {
    flex: 1;
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.photo-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}