
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-image: linear-gradient(to bottom right, #5368D7, #B06AB3);
        background-repeat: no-repeat;
}
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
    padding: 0 20px;
    color: white;
}
.nav-left {
    display: flex;
    align-items: center;
}
.nav-left img {
    height: 40px;
    margin-right: 10px;
}
.nav-left .brand {
    font-size: 1.5em;
    font-weight: bold;
    color: #E0EAFC;
}
.nav-center {
    display: flex;
    gap: 20px;
}
.nav-center a {
    color: #E0EAFC;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}
.nav-center a:hover {
    color: #ddd;
}
.nav-right {
    display: flex;
    align-items: center;
}
.nav-right button {
    padding: 10px 20px;
    background-color:transparent;
    border-radius: 5px;
    color: #E0EAFC;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid #ddd;
    margin: 20px;

}
.nav-right button:hover {
    background-color: #E0EAFC;
    color: #B06AB3;
    transition: 1s;
}
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 50px;
}

.hero-text {
    color: #E0EAFC;
    padding: 20px;
    margin-top: -250px;
}

.hero-text h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero-text button {
    padding: 15px 25px;
    background-image: linear-gradient(to left, #CFDEF3, #E0EAFC);
    border: none;
    border-radius: 5px;
    color: #5368D7;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.hero-text button:hover {
    background-color: #E0EAFC;
}

.hero-image img {
    width: 90%;
    height: 100vh;
    margin-left: 10%;
    object-fit: contain;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        margin-top: 0;
    }
    .hero-image img {
        width: 100%;
        height: auto;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 3em;
    }
    .hero-text p {
        font-size: 1.2em;
    }
    .hero-text button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 20px;
    }
    .hero-text h1 {
        font-size: 2.5em;
    }
    .hero-text p {
        font-size: 1em;
    }
    .hero-text button {
        font-size: 0.8em;
        padding: 8px 15px;
    }
    .hero-image img {
        height: 60vh;
    }

.nav-center{
    width: 100%;
   
   
}

.nav-right{
    opacity: 0;
}

.brand{
    width: 20vh;

    overflow: hidden;
}
}

.burger-menu {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #efefef;
    position: absolute;
    top: 60px;
    width: 60%;
    z-index: 1000;
    left: 35%;
}

.mobile-nav a {
    color: #5368D7;
    padding: 15px;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 480px) {
    .nav-center, .nav-right {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .mobile-nav a {
        display: block;
    }
}

.contact-us-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    color: #E0EAFC;
}
