/* Base styles for larger screens */

body {

    font-family: 'Monomakh', sans-serif;

    background-color: #f8f9fa;

    color: #333;

    margin: 0;

    padding: 0;

}

.navbar {

    background-color: #2D336B;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 10px 20px;

    text-decoration: none;

}

.brand-name h1 {

    color: #ffffff;

    margin: 0;

}

.logo {
    width: 10px; /* Set the width to 35% of the header's width */
    height: 10px;
}

.logo img {
    max-width: 100%; /* Ensure the image doesn't exceed the width of its container */
    height: auto; /* Maintain the aspect ratio */
}

.hamburger {

    display: none;

    flex-direction: column;

    cursor: pointer;

}

.hamburger div {

    width: 25px;

    height: 3px;

    background-color: #ffffff;

    margin: 4px 0;

}

.nav-buttons {

    display: flex;

    margin-left: auto;

}

.nav-buttons a {

    color: #ffffff;

    text-decoration: none;

    margin: 0 10px;

    font-size: 1rem;

    padding: 5px 10px;

    border-radius: 5px;

}

.nav-buttons a:hover {

    background-color: black;

}

.logout-button {

    background-color: #7886C7;

    padding: 5px 10px;

    border-radius: 5px;

}

.logout-button:hover {

    background-color: black;

}

header {

    background-color: #2D336B;

    color: #ffffff;

    text-align: center;

    padding: 50px 20px;

}

.hero {

    background-color: #7886C7;

    color: #ffffff;

    text-align: center;

    padding: 50px 20px;

}

.hero button {

    background-color: #2D336B;

    color: #ffffff;

    border: none;

    padding: 10px 20px;

    border-radius: 5px;

    font-size: 1rem;

    cursor: pointer;

}

.hero button:hover {

    background-color: #1a1d33;

}

.intro {

    text-align: center;

    padding: 20px;

    background-color: #ffffff;

    margin: 20px;

    border-radius: 10px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.features {

    display: flex;

    justify-content: space-around;

    flex-wrap: wrap;

    padding: 20px;

}

.features div {

    background-color: #ffffff;

    padding: 20px;

    margin: 10px;

    border-radius: 10px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    flex: 1;

    min-width: 250px;

    text-align: center;

}

.cta {

    background-color: #7886C7;

    color: #ffffff;

    text-align: center;

    padding: 50px 20px;

}

.cta button {

    background-color: #2D336B;

    color: #ffffff;

    border: none;

    padding: 10px 20px;

    border-radius: 5px;

    font-size: 1rem;

    cursor: pointer;

}

.cta button:hover {

    background-color: #1a1d33;

}

.contact-form {

    background-color: #ffffff;

    padding: 20px;

    margin: 20px;

    border-radius: 10px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.contact-form h2 {

    text-align: center;

    color: #2D336B;

}

.contact-form input, .contact-form textarea {

    width: 100%;

    padding: 10px;

    margin: 10px 0;

    border: 1px solid #ccc;

    border-radius: 5px;

}

.contact-form button {

    background-color: #7886C7;

    color: #ffffff;

    border: none;

    padding: 10px 20px;

    border-radius: 5px;

    font-size: 1rem;

    cursor: pointer;

}

.contact-form button:hover {

    background-color: #5f6f9e;

}

footer {

    background-color: #2D336B;

    color: #ffffff;

    text-align: center;

    padding: 20px 0;

    position: relative;

    width: 100%;

    bottom: 0;

}

footer a {

    color: #ffffff;

    text-decoration: none;

    margin: 0 10px;

}

footer a:hover {

    text-decoration: underline;

}

.hero {

    height: 50vh;

    background-image: url('https://cdn.pixabay.com/photo/2022/05/31/00/56/sky-7232494_1280.jpg');

    background-size: cover;

    background-position: center;

    text-align: center;

    transition: background-color 0.3s ease;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

}



.hero h1 {

    margin: 0;

    font-size: 2.5em;

    color: #2D336B;

    transition: color 0.3s ease;

}



.hero p {

    font-size: 1.2em;

    color: #333;

    transition: color 0.3s ease;

}



.hero button {

    background-color: #2D336B;

    color: white;

    border: none;

    padding: 10px 20px;

    font-size: 1em;

    cursor: pointer;

    transition: background-color 0.3s ease, transform 0.3s ease;

}



.hero button:hover {

    background-color: #000000;

    transform: scale(1.1);

}



.intro {

    padding: 20px;

    text-align: center;

    background-color: #FFFFFF;

    transition: background-color 0.3s ease;

}



.features {

    display: flex;

    justify-content: space-around;

    padding: 20px;

    text-align: center;

    background-color: #FFFFFF;

    transition: background-color 0.3s ease;

}



.features:hover {

    background-color: #dfdfff;

    color: #000000;

}



.features div {

    flex: 1;

    margin: 10px;

    border: 2px solid #2D336B;

    padding: 20px;

    transition: border-color 0.3s ease, transform 0.3s ease;

}



.features div:hover {

    border-color: #7886C7;

    transform: scale(1.05);

}



.testimonials {

    padding: 20px;

    text-align: center;

    background-color: #FFFFFF;

    transition: background-color 0.3s ease;

}



.testimonials:hover {

    background-color: #FFF2F2;

}



.testimonial-container {

    display: flex;

    justify-content: space-around;

    flex-wrap: wrap;

}



.testimonial-card {

    border: 1px solid #ddd;

    border-radius: 8px;

    padding: 20px;

    margin: 20px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    flex: 1;

    min-width: 300px;

    max-width: 300px;

}



.testimonial-card:hover {

    transform: scale(1.05);

    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

}



.testimonial-card img {

    border-radius: 50%;

    width: 80px;

    height: 80px;

    object-fit: cover;

}



.testimonial-card h3 {

    margin: 10px 0;

    color: #2D336B;

}



.testimonial-card p {

    color: #333;

}



.cta {

    background-color: #2D336B;

    color: white;

    padding: 20px;

    text-align: center;

    transition: background-color 0.3s ease;

}



.cta button {

    background-color: white;

    color: #2D336B;

    border: 2px solid #2D336B;

    padding: 10px 20px;

    font-size: 1em;

    cursor: pointer;

    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;

}



.cta button:hover {

    background-color: #000000;

    color: white;

    transform: scale(1.1);

}



footer {

    background-color: #7886C7;

    color: white;

    text-align: center;

    padding: 10px 0;

    transition: background-color 0.3s ease;

}



footer a {

    color: white;

    text-decoration: none;

    margin: 0 10px;

    transition: color 0.3s ease;

}



.contact-form {

    width: 40 wv;

    padding: 20px;

    text-align: center;

    background-color: #FFFFFF;

    transition: background-color 0.3s ease;

}



.contact-form h2 {

    margin: 0 0 10px 0;

    color: #2D336B;

    transition: color 0.3s ease;

}



.contact-form input, .contact-form textarea, .contact-form button {

    width: 45%;

    padding: 10px;

    margin: 10px 0;

    border: 1px solid #ccc;

    border-radius: 5px;

    transition: border-color 0.3s ease;

}



.contact-form input:focus, .contact-form textarea:focus {

    border-color: #2D336B;

}



.contact-form button {

    background-color: #2D336B;

    color: white;

    border: none;

    cursor: pointer;

    transition: background-color 0.3s ease, transform 0.3s ease;

}



.contact-form button:hover {

    background-color: #000000;

    transform: scale(1.1);

}



/* Hamburger Menu Styles */

.hamburger {

    display: none;

    flex-direction: column;

    cursor: pointer;

}



.hamburger div {

    width: 25px;

    height: 3px;

    background-color: white;

    margin: 4px;

    transition: all 0.3s ease;

}



/* Media Queries for Responsiveness */

@media (max-width: 1200px) {

    .features {

        flex-direction: column;

        align-items: center;

    }



    .features div {

        width: 80%;

        margin-bottom: 20px;

    }

}



@media (max-width: 768px) {

    .navbar {

        flex-direction: row;

        align-items: center;

    }



    .nav-buttons {

        display: none;

    }



    .hamburger {

        display: flex;

    }



    .nav-buttons.active {

        display: flex;

        flex-direction: column;

        width: 100%;

    }



    .hero {

        padding: 20px;

        height: auto;

    }



    .hero h1 {

        font-size: 2em;

    }



    .hero p {

        font-size: 1em;

    }

}



@media (max-width: 480px) {

    .hero h1 {

        font-size: 1.5em;

    }



    .hero p {

        font-size: 0.9em;

    }



    .testimonial-card {

        min-width: 100%;

        max-width: 100%;

    }

}

