@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,500&display=swap');

*,*::after,*::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* ///////////// utility class ////////////// */

.container{
    max-width: 1200px;
    width: 90%;
    margin: auto;

}

.btn{
    display: inline-block;
    padding: 1em 2.5em;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    margin-top: 1rem;
    text-transform: uppercase;
    font-weight: 500;

}

.btn-primary{
    color: #ffffff;
    background: #229AC8;
}

/* /////////////////// navbar //////////////// */

/* for desktop mode */

.navbar input[type=checkbox],
.navbar .hamburger-lines{
    display: none;
}

.navbar{
    /*box-shadow: 0px 5px 10px 0px #dbdbdb;*/
    position: fixed;
    width: 100%;
    background: #ffffff;
    color: #000000;
    opacity: 0.95;
    z-index: 999;
}


.navbar-container{
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items{
    order: 2;
    display: flex;
}
.menu-items li{
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.8rem;
}
.logo{
    order: 1;
    font-size: 3rem;
    align-items: center;
}

.navbar a{
    color: #444444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.navbar a:hover{
    color: #23A1D1;
}

/* ////////////// showcase/////////////// */

.showcase-area{
    height: 50vh;
    background: url(header-image2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    
}

.showcase-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 1.6rem;
    
}
.showcase-container h1{
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
}


/* ///////// about us ///////// */
#about{
    padding: 0px;
    background: #f5f5f7;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.about-wrapper{
    display: flex;
    flex-wrap: wrap;
    
}

#about h2{
    font-size: 3.2rem;
}

#about p{
    font-size: 1.6rem;
    color: #555555;
}


.about-img{
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 400px;
    margin-right: 0px;
    padding: 10px;
    transform: translate(100%);
    animation: about-img-animation 2s ease-in-out forwards;
}

@keyframes about-img-animation{
    100%{
        
        transform: translate(0);
    }
}

.about-text{
    flex: 1 1 400px;
    padding: 30px;
    margin: auto;
    animation: text-animation 2s ease-in-out forwards;
    transform: translate(-150%);
}

@keyframes text-animation{
    100%{
        transform: translate(0);
    }
}

.about-img img{
    display: block;
    height: 400px;
    max-width: 100%;
    margin: auto;
    /* object-fit: cover; */
    object-position: right;
}



/* ////////////////  contact us /////////// */


#contact {
    background-color: #e1e1e1;
    padding: 20px;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#contact h2 {
    margin-bottom: 20px;
    color: #2c2c2c;
}

#contact h3 {
    margin-top: 20px;
    color: #333333;
}

.contact-box {
    background-color: #4b4b4b;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.contact-box p {
    font-size: 18px;
    color: #555555;
    margin: 0;
}

.contact-box a {
    color: #007BFF;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;

}

.btn-primary:hover {
    background-color: #23A1D1;
    transform: scale(1.05);
}


    
@media (orientation:landscape) and (max-height:500px){
    .showcase-area{
        height: 50vmax;
    }
}
