/* --- Dark Theme & Global Styles --- */
body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #301934; /* Dark Purple Background */
    color: #FFD700ft Yellow Text */
}

h1, h2 {
    color: #FFD700; Yellow Text for headers */
}

/* --- Main Layout --- */
.container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 200px;
    background-color: #3a2042; /* Slightly lighter purple for contrast */
    padding: 20px;
    box-shadow: 3px 0 8px rgba(0,0,0,0.4);
    box-sizing: border-box;
}

.sidebar-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* --- Banner Section --- */
.banner {
    width: 100%;
    height: 348px;
    overflow: hidden;
    background-color: #333;
    position: relative;
    cursor: pointer;
}

.no-images-message {
    color: white;
    text-align: center;
    padding-top: 160px;
    font-size: 20px;
}

/* CSS for JS-controlled rotation */
.rotating-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.rotating-banner img.active {
    opacity: 1;
}


/* --- Content Section --- */
.content {
    padding: 40px;
}

/* --- 3D Silver Buttons --- */
.button {
    display: block;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    
    color: #301934;
    background: linear-gradient(to bottom, #f5f5f5, #c0c0c0);

    border: 1px solid #707070;
    border-radius: 8px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 
                inset -2px -2px 5px rgba(0, 0, 0, 0.2), 
                inset 2px 2px 5px rgba(255, 255, 255, 0.7);
    
    transition: all 0.1s ease-in-out;
}

.button:hover {
    background: linear-gradient(to bottom, #ffffff, #d1d1d1);
}

.button:active {
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.4);
    transform: translateY(2px);
}


/* --- Filename Display for Debugging --- */
#filename-display {
    position: absolute;
    bottom: 5px;
    right: 10px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: monospace;
    pointer-events: none;
}

/* --- Certification Banners (UPDATED ALIGNMENT) --- */
.cert-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* This now aligns items to the left */
    align-items: left
    gap: 25px;
    margin-top: 20px;
}

.cert-badge {
    height: 120px;
    width: auto;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.cert-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(255, 255, 224, 0.2);
}```

After updating your CSS file, the certification banners on your contact page will now be aligned to the left side of the content area.