html{ 
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.7), rgba(51, 51, 51, 0.7));
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: rgba(255, 255, 255, 0); /* Fully transparent background */
    color: #333;
}


/* Navbar tweaks */
.navbar-brand {
    font-weight: bold;
}

/* Testimonials styling */
.testimonials {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 10px;
}

/* Gallery styling */
.gallery img {
    border-radius: 10px;
}

/* Contact button */
.contact a {
    margin-top: 10px;
}
.hero {
    background-image: url('../assets/images/jeisa_logistics_bg.png'); /* Use the new background image */
   /* Adjust padding to fit content nicely */
}

/* Social icons styling */
.social-icons a {
    display: inline-block;
    font-size: 1.5rem;
    color: #f1f1f1;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Add some space between icons */
.social-icons a:not(:last-child) {
    margin-right: 15px;
}

/* Hover effects */
.social-icons a:hover {
    transform: translateY(-3px);
}

/* Different colors for each icon on hover */
.social-icons a:hover .fa-facebook-f {
    color: #1877f2;
}

.social-icons a:hover .fa-twitter {
    color: #1da1f2;
}

.social-icons a:hover .fa-instagram {
    color: #e1306c;
}

.social-icons a:hover .fa-linkedin-in {
    color: #0a66c2;}

    element.style{
        background-color: #dee2e6;
    }
/* Navbar hover and active effects */
.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    color: #00c6ff; /* Light blue on hover */
}

/* Smooth scrolling effect for body padding */
body {
    padding-top: 70px;
}

/* Rounded logo */
.navbar-brand img {
    border-radius: 50%;
}
/* Sidebar Styling */
#sidebar {
    width: 250px;
    position: fixed;
    top: 56px; /* Adjust to navbar height */
    left: 0;
    height: calc(100% - 56px);
    transition: transform 0.3s ease-in-out;
    z-index: 1040;
}

/* Sidebar Collapsed (Hidden) */
#sidebar.hide {
    transform: translateX(-100%);
}

/* Sidebar Links Styling */
#sidebar .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: background 0.2s;
}

#sidebar .nav-link:hover {
    background-color: #495057;
    border-radius: 5px;
}

/* Adjust Sidebar for Smaller Screens */
@media (max-width: 768px) {
    #sidebar {
        width: 100%;
        top: 0;
        height: 100%;
    }
}
