body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 1rem;
}

form input, form textarea, form button {
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
}

form button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}

.feature-card {
    position: absolute;
    bottom: 130px; /* Position higher than the secondary card */
    left: 20px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
}

.feature-card-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.feature-card-title {
    color: white;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.feature-card-text {
    color: white;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9em;
}

.feature-card-secondary {
    position: absolute;
    bottom: 40px; /* Position lower than the first card */
    left: 20px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    max-width: 400px;
}

.feature-card-secondary .feature-card-text {
    color: white;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9em;
}

.hero-section {
    height: 100vh;
    position: relative;
    margin-top: -56px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-text {
    position: absolute;
    top: 115px;
    left:10px;
    width: 50%;
}

.hero-title {
    color: var(--white);
    letter-spacing: -.025em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 6em;
    font-weight: 500;
    line-height: 1.1;
    font-family: 'Neue Montreal', Arial, sans-serif;
    text-transform: capitalize;
}

.improved-hero-title {
    color: white;
    letter-spacing: -.025em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 6em;
    font-weight: 500;
    line-height: 1.1;
    font-family: 'Neue Montreal', Arial, sans-serif;
    text-transform: capitalize;
    margin-left: 10px;
}

h1 {
    color: var(--white);
    letter-spacing: -.025em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 7.5em;
    font-weight: 500;
    line-height: 1.1;
}

.h1 {
    font-size: 5em;
    line-height: 1.05;
}

.footer-title {
    font-family: 'Neue Montreal', Arial, sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.footer-image-link {
    margin: 0 10px;
}

.footer-image {
    width: 195px; /* 30% bigger than the previous width */
    height: auto;
    display: inline-block;
}

.hero-tagline {
    position: absolute;
    bottom: 10%;
    right: 5%;
    max-width: 500px;
}

.hero-tagline p {
    color: white;
    font-size: 2em;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Neue Montreal', Arial, sans-serif;
    text-align: right;
}

.about-button-container {
    position: absolute;
    bottom: 5%;
    right: 5%;
}

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Neue Montreal', Arial, sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-button:hover {
    background-color: #f0f0f0;
    color: black;
}

.arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: black;
    color: white;
    border-radius: 50%;
    margin-left: 8px;
}

/* About Section Styles */
.about-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-title-container {
    position: relative;
    padding-right: 20px;
}

.about-heading {
    font-family: 'Neue Montreal', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    color: #000;
}

.about-decoration {
    width: 60px;
    height: 4px;
    background-color: #000;
    margin-bottom: 30px;
}

.about-content {
    position: relative;
}

.about-content .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.about-content .intro-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    font-weight: 400;
    margin-bottom: 2rem;
}

.about-feature {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-feature-icon {
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
    display: inline-block;
}

.about-feature h4 {
    font-family: 'Neue Montreal', Arial, sans-serif;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #000;
}

.about-feature p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section Styles */
.contact-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.contact-title-container {
    position: relative;
    padding-right: 20px;
}

.contact-heading {
    font-family: 'Neue Montreal', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    color: #000;
}

.contact-decoration {
    width: 60px;
    height: 4px;
    background-color: #000;
    margin-bottom: 30px;
}

.contact-form-container {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #000;
    box-shadow: none;
}

.contact-form .btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Neue Montreal', Arial, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color: #000;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    background-color: #333;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: #000;
}

.contact-info-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-title, .improved-hero-title {
        font-size: 4em;
    }
    
    .hero-tagline p {
        font-size: 1.5em;
    }
    
    .about-heading, .contact-heading {
        font-size: 2.8rem;
    }
    
    .about-content .intro-paragraph {
        font-size: 1.2rem;
    }
    
    .feature-card, .feature-card-secondary {
        max-width: 80%;
    }
}

@media (max-width: 767px) {
    .hero-title, .improved-hero-title {
        font-size: 3em;
    }
    
    .hero-tagline {
              bottom: 20%;
        max-width: 100%;
    }
    
    .hero-tagline p {
        font-size: 1.2em;
        text-align: center;
    }
    
    .about-button-container {
        bottom: 10%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .feature-card {
        bottom: 65%;
        left: 10px;
        max-width: 90%;
    }
    
    .feature-card-secondary {
        bottom: 50%;
        left: 10px;
        max-width: 90%;
    }
    
    .about-feature {
        margin-bottom: 20px;
    }
    
    .footer-image {
        width: 150px;
    }
    
    .footer-title {
        font-size: 1em;
    }
    
    .footer .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer .d-flex p {
        margin-bottom: 10px !important;
    }
    
    .footer .mt-3 {
        margin-top: 1.5rem !important;
    }
    
    .footer .mt-3 svg {
        max-width: 135px;
    }
}

@media (max-width: 576px) {
    .hero-title, .improved-hero-title {
        font-size: 2.5em;
        margin-left: 5px;
    }
    
    .hero-text {
        top: 100px;
        width: 90%;
    }
    
    /* Keep icons and text in row layout on mobile */
    .feature-card, .feature-card-secondary {
        flex-direction: row;
        align-items: center;
    }
    
    .feature-card-icon {
        margin-bottom: 0;
        margin-right: 10px;
        width: 30px;
        height: 30px;
    }
    
    /* Make text container take appropriate space */
    .feature-card > div, .feature-card-secondary > div {
        flex: 1;
    }
    
    /* Adjust text size for better fit */
    .feature-card-title {
        font-size: 0.9em;
        margin-bottom: 0.2em;
    }
    
    .feature-card-text {
        font-size: 0.8em;
        line-height: 1.2;
    }
    
    .feature-card {
        bottom: 29%;
    }
    
    .feature-card-secondary {
        bottom: 18%;
    }
    
    .hero-tagline {
        bottom: 8%;
    }
    
    .about-button-container {
        bottom: 2%;
    }
    
    .about-heading, .contact-heading {
        font-size: 2.2rem;
    }
    
    .about-content .intro-paragraph {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
}

/* Extra small screens adjustments */
@media (max-width: 380px) {
    .feature-card, .feature-card-secondary {
        padding: 8px;
        max-width: 95%;
    }
    
    .feature-card-icon {
        width: 25px;
        height: 25px;
        min-width: 25px; /* Prevent icon from shrinking */
    }
    
    .feature-card-title {
        font-size: 0.85em;
    }
    
    .feature-card-text {
        font-size: 0.75em;
    }
}

/* Viking Company logo styling */
.hover\:opacity-100:hover {
    opacity: 1 !important;
}

.transition-opacity {
    transition: opacity 0.3s ease;
}

/* Footer styling enhancements */
.footer {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.footer .me-2 {
    margin-right: 0.75rem !important;
    color: rgba(255,255,255,0.8);
}
