body{
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.navbar-brand{
    font-weight:bold;
}

footer{
    min-height:150px;
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #eaf6ff;
    color: #0d6efd;
}

.bg-white {
    --bs-bg-opacity: .6;
}

.hero{
    background: linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url("../img/factory1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero h1{
    font-size: 3.5rem;
    font-weight: 700;
}

.hero p{
    max-width: 700px;
    font-size: 1.1rem;
    margin: 25px 0;
}

.hero h1,
.hero p,
.hero .btn {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(8px);
    animation: riseUp 1s cubic-bezier(.22,1,.36,1) forwards;
}

.hero h1 { animation-delay: .2s; }
.hero p  { animation-delay: .5s; }
.hero .btn { animation-delay: .8s; }

@keyframes riseUp {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.products{
    padding:100px 0;
}

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#0d3b66;
}

.product-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
}

.product-card img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:.5s ease;
}

.product-overlay{
    position:absolute;
    inset:0;
    padding:30px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    background:linear-gradient(
        to top,
        rgba(0,34,68,.88),
        rgba(0,34,68,.15),
        transparent
    );

    transition:.5s;
}

.product-overlay h4{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:10px;
}

.product-overlay a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    letter-spacing:1px;
    font-weight:500;
    transition:.3s;
}

.product-overlay a i{
    color:#fff;
    margin-left:6px;
    transition:.3s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-card:hover{
    transform:translateY(-8px);
    transition:.4s ease;
}

.product-card:hover .product-overlay{
    background:linear-gradient(
        to top,
        rgba(0,34,68,.95),
        rgba(0,34,68,.35),
        transparent
    );
}

.product-card:hover a i{
    margin-left:12px;
}

/* Animation Initial */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: .8s ease;
}


/* Animation Active */
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}