.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.center {
    text-align: center;
    flex-grow: 1;
    margin: 50px auto;
    max-width: 1200px;
}

/* Home page content layout */
.home-content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.home-text {
    flex: 1;
    min-width: 0; /* Allows text to shrink if needed */
    text-align: center;
    padding-left: 40px;
}

.home-image-wrapper {
    flex-shrink: 0;
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
}

.home-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.home-image-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 1;
    pointer-events: none;
}
.center h1 {
    margin: 0;
    line-height: 1.2;
    font-size: 64px;
}
.center h3 {
    margin: 0;
    line-height: 1.2;
    font-size: 48px;
}
.left {
    display: flex;
    align-items: center;    
}
.nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* background-color: #333; */
}
.nav li {
    float: left;
    display: inline;
  }
.nav a {
    display: block;
    font-size: 25px;
    padding: 15px;
    background-color: #ffffff;
    color: #160244;
    text-decoration: none;
  }
.nav a.request-quote-btn,
.request-quote-btn,
button.request-quote-btn {
    display: inline-block !important;
    padding: 12px 24px !important;
    background-color: #162d45 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    transition: background-color 0.3s, transform 0.2s !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
    margin-left: 10px !important;
    border: none !important;
    cursor: pointer !important;
}
.nav a.request-quote-btn:hover,
.request-quote-btn:hover,
button.request-quote-btn:hover {
    background-color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
    color: #162d45 !important;
    text-decoration: none !important;
}
.home {
    font-size: 20px;
    padding: 15px;
    background-color: #ffffff;
}
html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 1.2em; /* Adjust this for larger text */
    color: #333; /* Adjust this for different text color */
}

.center p {
    font-size: 20px;
    color: #160244;
}
.image-container:hover img {
    height: 500px;
  }

/* Footer Styles */
.footer-container {
    background-color: #084f6b;
    padding: 20px 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
    color: #d0ab2e;
    font-size: 20px;
}

.footer-container * {
    color: #d0ab2e;
    font-size: 20px;
}

.footer-reviews {
    text-align: center;
    padding: 15px 0;
    margin-bottom: 20px;
}

.footer-reviews a {
    color: #d0ab2e;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-reviews a:hover {
    color: white;
    text-decoration: underline;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    text-align: left;
    flex-shrink: 0;
    padding-right: 20px;
    color: #d0ab2e;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-nav {
    text-align: right;
    background-color: #084f6b;
}

.footer-nav li {
    margin: 0;
    padding: 2px 0; /* Reduced spacing between nav items */
}

.footer-nav a {
    background-color: #084f6b !important;
    color: #d0ab2e !important;
    padding: 4px 2px !important;
    font-size: 20px !important;
}

.footer-nav a:hover {
    color: #d0ab2e !important;
    background-color: #084f6b !important;
    font-size: 20px !important;
}