/* Global Styles */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: url("images/bluewall.jpg") no-repeat center center fixed;
    background-size: cover;
    background-color: #f5f7fa;
    color: black;
    cursor: url("images/cursor-idle.cur"), auto;
}

/* Cursor when hovering over clickable items */
a, button, input[type="submit"], input[type="button"] {
    cursor: url("images/cursor-click.cur"), pointer;
}

.container {
    padding: 40px;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    color: #245cb1;
    background-color: rgba(255, 255, 255, 0.85); /* Light white with some transparency */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Top Bar */
.top-bar {
    background-color: #245cb1; /* Updated blue */
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.top-bar a {
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #d9e2f3;
}

/* Navigation Bar */
nav {
    background-color: #245cb1; /* Consistent blue */
    color: white;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    list-style: none; /* Removed bullets */
    display: inline-flex; /* Center navigation links horizontally */
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline; /* Ensure list items are displayed inline */
    margin-right: 20px; /* Spacing between navigation links */
}

nav ul li:last-child {
    margin-right: 0; /* Remove margin from last list item */
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #1b2a49; /* Slightly darker blue */
    color: #d9e2f3;
    border-radius: 5px;
}

nav img {
    width: 100px;
    height: auto;
    margin-right: 15px;
    vertical-align: middle; /* Align logo with text */
}

/* Image Slider */
.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* space between buttons and image */
    max-width: 1000px;
    margin: 125px auto 125px auto; /* top 30px, bottom 60px */
    gap: 15px;
}


#slider-image {
    max-width: 100%;  /* Bigger image max width */
    height: auto;
    border-radius: 12px;
    display: block;
}

.slider button {
    position: static; /* Remove absolute positioning */
    background-color: #245cb1; /* Make buttons more visible */
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s;
    user-select: none;
}

.slider button:hover {
                    background-color: #1b2a49;
}

#prev {
    left: 0;
}

#next {
    right: 0;
}


/* Main Content */
.container {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    color: #1b2a49; /* Updated blue */
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 1em;
    color: #666;
}

/* Team Section */
.team-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}

.team-member h2 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #245cb1; /* Updated blue */
}

.team-member p {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

/* Request Quote Form */
.request-quote {
    margin: 40px 0 20px 0;
    padding: 20px;
    background-color: white;
    border: 1px solid #2C3E50;
    border-radius: 5px;
    text-align: left;
}

.request-quote h2 {
    color: #245cb1;
    text-align: center;
}

.input-box {
    margin-bottom: 15px;
}
.request-quote input, 
.request-quote textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #2C3E50;
    border-radius: 5px;
}

.submit-btn input[type="submit"] {
    background-color: #1b2a49;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.submit-btn input[type="submit"]:hover {
    background-color: #12203f;
}

.logo img {
    width: 300px !important; /* Adjust the width to your desired size */
    height: auto !important; /* Maintain the aspect ratio */
    display: block; /* Ensure proper alignment */
    margin: 0 auto; /* Center the logo if needed */
} 
