
/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 30px auto;
    height: 300px;
    overflow: hidden;
}

.slides {
    display: none;
    text-align: center;
    height: 100%;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Next and Previous Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next {
    right: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Hierarchy Container */
.hierarchy-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.employees-left, .employees-right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 150px;
}

.employee {
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid #62b6cb; /* Thicker border */
    padding: 15px;
    border-radius: 15px; /* Rounded corners */
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Circular shape */
    border: 3px solid #62b6cb; /* Border color */
    margin-bottom: 10px;
    object-fit: cover; /* Fit image properly */
}

.boss {
    text-align: center;
    margin: 0 50px;
    border: 2px solid #f5a623; /* Boss border color */
    padding: 20px; /* Increased padding */
    border-radius: 20px; /* More pronounced rounded corners */
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow */
}

.profile-pic-boss {
    width: 100px;  /* Larger boss image */
    height: 100px;
    border-radius: 50%; /* Circular shape */
    border: 4px solid #f5a623; /* Thicker border */
    margin-bottom: 10px;
    object-fit: cover; /* Fit image properly */
}

.name {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff; /* White text for better contrast */
}

.age {
    font-size: 1em;
    color: #ccc; /* Light gray color */
    margin-top: 5px;
}

.title {
    font-size: 0.9em;
    color: #ddd; /* Slightly lighter gray */
}

.spiritual-symbol {
    font-size: 1.5em;
    color: #f5a623;
    margin-top: 10px;
}
/* About Page Styles */
.about-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

h1 {
    text-align: center;
    color: #333; /* Dark color for heading */
}

h2 {
    margin-top: 30px;
    color: #444; /* Slightly lighter for subheadings */
}

p {
    line-height: 1.6; /* Improved readability */
    color: #555; /* Dark gray for text */
}

.comments {
    margin-top: 20px;
}

.comment {
    background-color: rgba(238, 238, 238, 0.7); /* Light gray background */
    border-radius: 5px; /* Rounded corners for comments */
    padding: 15px;
    margin-bottom: 15px; /* Space between comments */
}

.comment p {
    margin: 0; /* Remove margin from paragraphs */
}
/* Contact Page Styles */
.contact-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

h1 {
    text-align: center;
    color: #333; /* Dark color for heading */
}

h2 {
    margin-top: 30px;
    color: #444; /* Slightly lighter for subheadings */
}

p {
    line-height: 1.6; /* Improved readability */
    color: #555; /* Dark gray for text */
}

.contact-info {
    margin: 20px 0;
}

.contact-info a {
    color: #62b6cb; /* Color for links */
    text-decoration: none; /* Remove underline */
}

.contact-info a:hover {
    text-decoration: underline; /* Underline on hover */
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 15px; /* Space between inputs */
    padding: 10px; /* Padding inside inputs */
    border: 1px solid #ccc; /* Border for inputs */
    border-radius: 5px; /* Rounded corners */
    font-size: 1em; /* Font size */
}

.contact-form button {
    padding: 10px; /* Padding inside button */
    background-color: #62b6cb; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 1em; /* Font size */
}

.contact-form button:hover {
    background-color: #f5a623; /* Change button color on hover */
}
/* List Page Styles */
.list-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

h1 {
    text-align: center;
    color: #333; /* Dark color for heading */
}

.ad-area {
    margin-bottom: 30px; /* Space below ad area */
    text-align: center; /* Center align content */
}

.ad-image {
    max-width: 100%; /* Responsive image */
    border-radius: 10px; /* Rounded corners */
    margin-top: 10px; /* Space above ad image */
}

.employee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive grid layout */
    gap: 20px; /* Space between grid items */
}

.employee-card {
    background-color: rgba(238, 238, 238, 0.7); /* Light gray background */
    border-radius: 5px; /* Rounded corners */
    padding: 15px; /* Padding inside cards */
    text-align: center; /* Center text */
}

.employee-card img {
    max-width: 100%; /* Responsive image */
    border-radius: 50%; /* Circular images */
}

h3 {
    margin: 10px 0; /* Space above and below names */
    color: #444; /* Dark color for names */
}

p {
    color: #555; /* Dark gray for positions */
}
/* Poetic Style List Page */
body {
    background-image: url('background.jpg'); /* Background image for an artistic feel */
    background-size: cover; /* Cover the entire page */
    background-position: center; /* Center the background */
    font-family: 'Georgia', serif; /* Elegant font style */
    color: #333; /* Dark color for text */
    line-height: 1.6; /* Improved line height for readability */
}

.navbar {
    background-color: rgba(47, 47, 60, 0.8); /* Semi-transparent navbar */
    padding: 15px; /* Padding around navbar */
    position: sticky; /* Sticky navbar */
    top: 0; /* Stick to the top */
    z-index: 1000; /* On top of other elements */
}

.nav-links {
    list-style: none; /* No bullets for the list */
    display: flex; /* Flexbox for horizontal layout */
    justify-content: center; /* Center the links */
}

.nav-links li {
    margin: 0 15px; /* Space between links */
}

.nav-links a {
    text-decoration: none; /* No underline for links */
    color: #fbfdff; /* Dark color for links */
    font-weight: bold; /* Bold text for links */
}

.list-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Softer shadow effect */
}

h1 {
    text-align: center;
    font-size: 2.5em; /* Larger heading */
    margin-bottom: 20px; /* Space below heading */
    color: #2c3e50; /* Dark blue color for heading */
}

.ad-area {
    margin-bottom: 30px; /* Space below ad area */
    text-align: center; /* Center align content */
}

.owner-info {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: center; /* Center items horizontally */
    margin-bottom: 10px; /* Space below owner info */
}

.owner-image {
    width: 100px; /* Width of the owner's image */
    height: 100px; /* Height of the owner's image */
    border-radius: 50%; /* Circular image */
    border: 3px solid #2c3e50; /* Border around the image */
    margin-right: 20px; /* Space between image and text */
}

.ad-description {
    font-style: italic; /* Italicize description */
    color: #7f8c8d; /* Gray color for description */
    margin-bottom: 10px; /* Space below description */
}

.ad-image {
    max-width: 100%; /* Responsive image */
    border-radius: 10px; /* Rounded corners */
    margin-top: 10px; /* Space above ad image */
}

.employee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive grid layout */
    gap: 20px; /* Space between grid items */
}

.employee-card {
    background-color: rgba(238, 238, 238, 0.9); /* Light gray background */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding inside cards */
    text-align: center; /* Center text */
    transition: transform 0.2s, box-shadow 0.2s; /* Animation effect on hover */
}

.employee-card:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

.employee-card img {
    max-width: 100%; /* Responsive image */
    border-radius: 50%; /* Circular images */
    border: 2px solid #2c3e50; /* Border around employee images */
}

h3 {
    margin: 10px 0; /* Space above and below names */
    color: #34495e; /* Darker blue color for names */
}

p {
    color: #555; /* Dark gray for positions */
}
