* {
    padding: 0;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
}

.orient_logo img {
    height: 50px;
    width: 104px;
    align-items: right;
}

/* Hero Section */
#hero {
    position: relative;
    height: 80vh;
    /* Full screen height */
    display: flex;
    justify-content: flex-start;
    /* Align items to the left */
    align-items: center;
    text-align: left;
    /* Align text to the left */
    background-color: #d3d3d3;
    overflow: hidden;
    padding-left: 5%;
    /* Add some padding to position the content */
}

.hero-content {
    z-index: 2;
    /* Bring text content above the image */
    color: white;
    max-width: 700px;
    margin: auto 0;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    margin: 0;
    font-size: 1.5rem;
}

.hero-content .btn {
    background-color: #ff4500;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 2rem;
}

.hero-content .btn:hover {
    background-color: #218838;
}

/* Banner Image Styling */
.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* Add a slight dark overlay for better text contrast */
    z-index: 1;
    /* Send the image behind the text */
}


#Packaging-Solutions {
    padding: 70px;
    padding-left: 5%;
    text-align: left;
}

/* Images Section */
#Images1 {
    padding: 20px;
    background-color: white;
}

.images {
    display: flex;
    justify-content: space-around;
    /* Space evenly between images */
    align-items: center;
    /* Align items vertically */
    gap: 20px;
    /* Add spacing between items */
}


#Images2 {
    padding: 20px;
    background-color: white;
    cursor: pointer;
}

.imagess {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.imgEx{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: orange;
    gap: 20px;
}

.imagess img {
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

.imagess img:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

/* Ensure the section takes up the full width */
#Mistflo-Collection {
    display: flex;
    align-items: left;  /* Vertically centers the logo and text */
    padding: 20px;
    background-color: orange;
}

#Mistflo-Collection h1{
    font-weight: bold;
}

/* Style the .log container */
.log {
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 15px;
}

.logo3 {
    max-width: 100%;
    width: 300px;
    height: 100px;
}

@media (max-width: 768px) {
    .log {
        flex-direction: column;
        align-items: center;
    }

    .logo3 {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo3 {
        height: 99px;
        width: 200px;
    }
}

/* Make the heading responsive */
.log h1 {
    font-size: 2.5rem; /* Default font size */
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Media Query for tablets */
@media (max-width: 768px) {
    .log {
        align-items: center; /* Center align the content for smaller screens */
    }

    .log h1 {
        font-size: 2rem; /* Adjust the font size on smaller screens */
    }

    .log img {
        max-width: auto; /* Adjust the image size on smaller screens */
    }
}

/* Media Query for mobile screens */
@media (max-width: 480px) {
    .log {
        padding: 1rem; 
    }

    .log h1 {
        font-size: 1.2rem; 
        line-height: 1.4; 
        text-align: center;
    }

    .log img {
        max-width: 100%; 
        height: auto; 
        margin: 0 auto; 
        display: block; 
    }
}

/* Features Section */
#features {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 70px 100px 70px 100px;
    gap: 10px;
}

.icon img {
    height: 80px;
    width: 80px;
    opacity: 0.7;
}

.log {
    display: flex;
}

.log h1 {
    margin: 0;
    padding: 27px;
}

.log img {
    width: 300px;
    height: 99px;
}

header {
    position: sticky;
    top: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    background-color: #f8f8f8;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Space between text and image */
}

.logo p{
    margin: 0;
    padding: 0;
}

.logo-image {
    width: 140px;
    height: 50px;
    object-fit: cover;
    /* Ensures the image doesn't stretch */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul{
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #000;
}

nav .social-icons a {
    margin-left: 1rem;
    color: #000;
    text-decoration: none;
}


/* Whatsapp */
.whatsapp {
    position: fixed;
    right: 3vh;
    bottom: 3vh;
    height: 60px;
    width: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.whatsapp img {
    height: 50px;
    width: 50px;
}

.whatsapp a {
    height: 50px;
    width: 50px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.5);
    cursor: pointer;
    opacity: 1;
}

/* Styling for control icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 16px;
}


.carousel-control-prev-icon i,
.carousel-control-next-icon i {
    color: black;
    font-size: 20px;
}


.carousel-item a {
    text-decoration: none;
    color: white;
}

.carousel-inner img {
    border: 2px solid #ffffff;
    padding: 5px;
    height: 100px;
    width: 200px;
    object-fit: cover;
}

.carousel-inner img:hover {
    border-color: #000;
}

.carousel-item {
    padding: 5px 20px;
}

.navbar {
    background-color: orange;
    height: 70px;

}

.nav2{
    z-index: 10000;
    position: sticky;
    top: 0;
    width: 100%;
}

.navbar-brand.ms-auto {
    margin-left: auto;
}

/* Responsive Design */

/* General Styles for Small Screens */
@media (max-width: 768px) {
    #hero {
        height: 60vh;
        text-align: center;
        justify-content: center;
        padding-left: 2%;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-content .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .images {
        flex-direction: column;
        gap: 10px;
    }

    .images img {
        width: 150px;
        height: 300px;
    }

    #features {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .feature {
        max-width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li {
        margin: 0;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .heading {
        padding: 15px;
    }

    .heading h1 {
        font-size: 1.5rem;
    }

    nav {
        flex-direction: column;
    }

    nav ul {
        padding: 0;
    }

    nav ul li {
        margin: 5px 0;
    }
}

/* Medium Screens */
@media (max-width: 1024px) {
    #hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

    .hero-content .btn {
        font-size: 0.9rem;
    }

    .images {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .images img {
        width: 100%;
        height: 100%;
    }

    #features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .feature {
        max-width: 80%;
    }

    nav ul {
        gap: 5px;
    }

    nav ul li {
        margin: 0 0.5rem;
    }
}

.nav-item23{
    margin: 0;
    padding: 7px;
}

#About-Us {
    padding: 50px;
    padding-left: 5%;
    text-align: left;
}

.dropdown-toggle {
    padding: 15px 10px;
}
  

/*Blog*/
#Blog1 {
    padding: 50px;
    padding-left: 5%;
    text-align: left;
}

/* Orient */



/*Mistflo*/
.collection {
    padding: 20px;
    padding-left: 5%;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    text-decoration: underline;
}

.desc1 {
    height: 144px;
    width: 300px;
}

.desc2 {
    height: 288px;
    width: 300px;
}

.desc3 {
    height: 288px;
    width: 300px;
}

.desc4 {
    height: 264px;
    width: 300px;
}

.desc5 {
    height: 168px;
    width: 300px;
}

/* Footer */
.footer {
    background-color: black;
    color: white;
    padding: 40px 20px;
    font-family: sans-serif;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 120px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    text-align: center;
    min-width: 250px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-column p,
.footer-column ul {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    margin: 0;
}

.footer-column a {
    text-decoration: none;
    color: #ffffff;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    display: inline-block;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.icons1 {
    margin-top: 10px;
    text-align: center;
}

.icons1 a {
    margin: 0 5px;
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.icons1 a:hover {
    color: orange;
}

/* Footer Section */
@media (max-width: 991px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .footer-column {
        text-align: center;
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .footer {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-column p,
    .footer-column ul {
        font-size: 12px;
    }

    .icons1 a {
        font-size: 16px;
    }
}

@media (max-width: 1285.50px) {
    .feature-features {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .moving-banner {
        height: 50px;
    }
}

/* Review Page */
.banner{
    position: relative;
}

.banner img{
    max-width: 100%;
}

.header{
    position: absolute;
    color: #002B5B;
    top: 0px;
    left: 400px;
    z-index: 100;
}

.reviews{
    padding: 0px 50px 50px;
}

.review-hero{
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    padding-top: 50px;
    flex-wrap: wrap;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 1);
    padding: 20px;
    width: 450px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.stars {
    display: flex;
    grid-gap: 0.125rem;
    gap: 0.125rem;
    color: rgb(238, 203, 8);
}

.star {
    height: 1.25rem;
    width: 1.25rem;
}

.infos {
    padding-top: 1rem;
}

.date-time {
    color: rgba(7, 63, 216, 1);
    font-size: 12px;
    font-weight: 600;
}

.description {
    margin-top: 0.4rem;
    line-height: 1.625;
    color: rgba(107, 114, 128, 1);
    flex-grow: 1;
    list-style: none;
    padding: 0;
}

.author {
    margin-top: 1.3rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgba(107, 114, 128, 1);
}

@media (max-width: 1300px){
    .review-hero{
        flex-wrap: wrap;
    }
}

@media (max-width: 512px){
    .card{
        width: 400px;
    }
}