body {
    background-color: #f8f9fa;
    color: #333;
}






.navbar {
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2), 0px 4px 15px rgba(0, 0, 0, 0.1); /* 3D shadow effect */
    background: linear-gradient(145deg,  #b1f1ff, #ffffff); /* Subtle gradient for depth */
    padding: 5px 20px; /* Adds space around the navbar for emphasis */
    margin-top: 8px;
}

.navbar-nav {
    align-items: center;
    margin-left: 5%;
    margin-right: 40%;
    width: 100%;
    justify-content: space-between;
    position: sticky;
}

.navbar-nav .nav-link {
    color: #045f73;
    font-size: large;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}

.navbar-nav .nav-link:hover {
    color: darkred; /* Optional: darkens color when hovered */
}



.welcome-message {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: bold;
    color: #ffffffe3;
    background-color:  #045f737c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}







.carousel-item img {
    height: 850px;
    object-fit: cover;
}


.carousel-indicators {
    z-index: 1000;
}
.carousel-control-prev {
    z-index: 1000;
}
.carousel-control-next {
    z-index: 1000;
}


#home_jumbotron_head {
    color: #042962;
}
#home_jumbotron_para {
    color: #045f73;
    font-size: large;
}



.product-section {
    padding: 20px 0;
    background-color: #f0f0f0;
}


.product-card {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

.product-card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
}

.product-section .product-card h4 {
    color: #042962;
}

.product-section .product-card button {
    background-color: #045f73;
}










.sitemap {
    padding: 20px 0;
    background-color: #e9ecef;
    color: #555;
}

.sitemap ul {
    list-style-type: none;
    padding: 0;
}

.sitemap ul:hover {
    color: darkred; /* Optional: darkens color when hovered */
}

.sitemap h4 {
    font-weight: bold;
    color: #042962;
}

.sitemap a {
    font-weight: bold;
    color: #045f73;
}

.sitemap a:hover {
    font-weight: bold;
    color: darkred;
}





.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}







.custom-jumbotron-gap {
    margin-top: 100px;
    margin-bottom: 100px;
}

.custom-sitemap-gap {
    margin-top: 50px;
    margin-bottom: 30px;
}

.custom-carousel-gap {
    margin-top: 100px;
    margin-bottom: 100px;
}


/* Entry Animation */
/* Hide lift doors on phones */
@media screen and (max-width: 768px) {
    .lift-doors {
        display: none;
    }
}


/* Lift doors styles */
.lift-doors {
    position: absolute; /* Make sure it overlays the background */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it is on top of other elements */
}

/* Other existing styles remain unchanged */

.door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* Glass effect */
    border: 20px solid #88a3c7; /* Steel frame effect */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for realism */
    transition: all 3s ease-in-out; /* Smooth animation */
}


.left {
    left: 0;
    border-right-width: 70px; /* Specifies the border width */
    border-right-style:solid; /* Sets the border style to solid (required for border image) */
    border-image-source: url('../home/images/steell.jpg'); /* Specifies the border image source */
    border-image-slice: 200; /* Defines how the image is sliced (adjust this as needed) */
}


.right {
    right: 0;
    border-left-width: 70px; /* Specifies the border width */
    border-left-style:solid; /* Sets the border style to solid (required for border image) */
    border-image-source: url('../home/images/steell.jpg'); /* Specifies the border image source */
    border-image-slice: 200; /* Defines how the image is sliced (adjust this as needed) */
}

/* Content styling */
.content {
    display: none; /* Hidden initially */
    z-index: 1; /* Below the doors */
    text-align: center;
    color: #333;
}



/* Contact Card */
.contact-card {
    position: fixed;
    top: 90%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    background-color:#e9ecef;
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #f5f5f5;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.contact-icon:hover {
    transform: scale(1.1);
    background-color: #e6e6e6;
}

.contact-icon img {
    width: 60%;
    height: 60%;
}
