body {
    font-family: "Poppins", sans-serif;
    line-height: 1.8;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('SkimmerLogoNoLines.jpg') center center no-repeat;
    background-size: contain;
    opacity: 0.2;
    z-index: -1;
}

header {
    background-color: #003366;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

header .logo h1 {
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #FF8C00;
}

#hero {

    height: 450px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 20px;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#hero h1,
#hero p {
    position: relative;
    z-index: 1;
}

button {
    background: linear-gradient(45deg, #FF8C00, #ff6600);
    color: white;
    padding: 12px 24px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    border-radius: 5px;
}

button:hover {
    background: linear-gradient(45deg, #ff6600, #e65300);
    transform: scale(1.05);
}

section {
    padding: 60px 20px;
    text-align: left;
}

.content {
    max-width: 1000px;
    margin: auto;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #003366;
}

p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

#contact input,
#contact textarea {
    padding: 12px;
    font-size: 1em;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease-in-out;
}

#contact input:focus,
#contact textarea:focus {
    border-color: #003366;
}

#contact button {
    background-color: #003366;
    padding: 14px;
    font-size: 1.1em;
}

#contact button:hover {
    background-color: #FF8C00;
}

footer {
    background: #003366;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1em;
}



.card {
    background-color: #fff;
    /* Ensures no background image bleed-through */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional for better contrast */
}

#intro {
    padding: 10px 0;
    /* Reduce top and bottom padding */
}

#intro img {
    max-height: 50px;
    /* Adjust image height to make it skinnier */
    width: auto;
    /* Maintain aspect ratio */
}