﻿.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3B3486;
    padding: 20px 40px;
    position: fixed;
    height: 80px;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
  
    color: white;
    text-decoration: none;
    font-size: 16px;

}

.nav-buttons {

    display: flex;
    gap: 30px;
}

.btn {

    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 12px 12px;
    font-size: 16px;
    width: 148px;
    height: 43px;

}

.get-in-touch {

    background-color: white; /* Adjust this color as needed */
    color: #864AF9;

}

.sign-in {

    background-color: #864AF9; /* Adjust this color as needed */
    color: white;

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {

    font-family: Arial, sans-serif;

}

.hero-section {
    background-image: url(../images/heroSection.png);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 600px;
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
}

    .hero-content h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 18px;
        margin-bottom: 20px;
    }

.read-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3B3486; /* Adjust this color as needed */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

    .read-more-button:hover {
        background-color: #5753CC; /* Darken the button color on hover */
    }

.about-us {
    background-color: white; /* Light grey background color */
}

    .about-us h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-us p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .about-us .btn {
        background-color: #3B3486;
        border-color: #3B3486;
        font-size: 1rem;
    }

        .about-us .btn:hover {
            background-color: #3B3486;
            border-color: #3B3486;
        }

.services-section {
    padding: 60px 0;
}

.services-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

.services-item img {
    width: 518px;
    height: 462px;
    left: 503px;
}

.customer-testimonials {
    background-color: #f8f9fa; /* Light grey background */
}

    .customer-testimonials h2 {
        font-size: 2.5rem;
    }

.testimonial-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

    .testimonial-box.bg-purple {
        background-color: #6f42c1;
    }

.stars span {
    font-size: 1.5rem;
    color: #ffc107; /* Gold color for stars */
}


.contact-us {
    background-color: #3B3486; /* Dark purple background */
    padding: 50px 0;
}

    .contact-us h2 {
        font-size: 2.5rem;
        color: #fff;
    }

    .contact-us p {
        font-size: 1rem;
        color: #fff;
    }

    .contact-us .list-unstyled li {
        font-size: 1rem;
    }

    .contact-us .form-control {
        background-color: transparent;
        border: 1px solid #ccc;
        color: #fff;
    }

        .contact-us .form-control::placeholder {
            color: #ccc;
        }

    .contact-us .btn-primary {
        background-color: #864AF9;
        border-color: #864AF9;
        width: 200px;
    }

        .contact-us .btn-primary:hover {
            background-color: #864AF9;
            border-color: #864AF9;
        }

.sail-together {
    background: url('../images/sail.png') no-repeat center center/cover;
    position: relative;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
}

header {
    background-color: #4a4a4a;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    header h1 {
        margin: 0;
    }

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0;
}

    nav ul li {
        margin-left: 20px;
    }

        nav ul li a {
            color: white;
            text-decoration: none;
        }

.buttons {
    display: flex;
}

.get-in-touch, .sign-in {
    background-color: #864AF9;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 5px;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
}

    .hero img {
        width: 100%;
        height: auto;
    }

    .hero h2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 48px;
    }

footer {
    background-color: #333;
    color: white;
    padding: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info, .footer-links {
    flex: 1;
    margin-right: 20px;
}

    .contact-info h3, .footer-links h4 {
        color: #864AF9;
    }

.footer-links {
    display: flex;
}

.pages, .utility, .subscribe {
    margin-right: 40px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

    .footer-links ul li {
        margin-bottom: 10px;
    }

        .footer-links ul li a {
            color: white;
            text-decoration: none;
        }

.subscribe form {
    display: flex;
    flex-direction: column;
}

.subscribe input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.subscribe button {
    background-color: #864AF9;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

    .footer-bottom p {
        margin: 0;
        color: #aaa;
    }

.contact-info p, .contact-info a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.contact-info i {
    margin-right: 10px;
    color: #864AF9;
}


.log_in_form {
    background-color: rgba(115, 115, 115, 0.6);
    border-radius:15px;
}