
        /* Custom Tailwind Configuration (optional, for specific colors or utilities) */
        /* Set a default font */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

       

        body {
    background: linear-gradient(270deg, #ffffff, #f5f5f5, #e8e8e8);
    background-size: 600% 600%;
    animation: whitishGreyShift 15s ease infinite;
}

@keyframes whitishGreyShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

        /* Specific style for the navigation bar background */
        .custom-navbar-blue {
            background-color: #0b3d91; /* Deep construction blue */
        }
    
        



        /* style.css */
:root {
    --machinery-blue: #0b3d91;
    --safety-yellow: #ffcc00;
}

.profile-img {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.header-bg {
    background-color: #e0f2f7; /* Light cyan/blue background */
    padding: 1.5rem;
    padding-left: 110px; /* Space for the floating logo */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    min-height: 110px;
    position: relative;
    overflow: hidden;
    border-left: 6px solid var(--safety-yellow); /* Machinery Accent */
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Shimmer overlay class used in the HTML */
.shimmer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    animation: shimmer 5s infinite;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}
li {
  /* The color */
  color: #ffffff; 

  /* The "Appealing" Font Settings */
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;       /* Use 300 for light, 600 for bold */
  line-height: 1.6;       /* Adds breathing room between lines */
  letter-spacing: 0.5px;  /* Makes it look more modern */
  
  /* Optional: removes default bullets if you want a clean look */
  list-style-type: none; 
  margin-bottom: 10px;    /* Adds space between items */
}