*{
    margin: 0;
    padding: 0;
     box-sizing: border-box;
}


.main{
    width: 100%;
    height: 109vh;
}

.navbar{
    
    height: 75px;
    margin: auto;
}

.navbar,
.content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.icon{
    width: 200px;
    float: left;
    height: 70px;

}
.logo{
    color: #000; 
    font-size: 35px;
    font-family: Arial;
    padding-left: 20px;
    float: left;
    padding-top: 10px;
}
.logo span{
    color: #1E90FF;
}
.menu{
    width: 400px;
    float: left;
    height: 70px;
}
ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
ul li{
    list-style: none;
    margin-left: 62px;
    margin-top: 27px;
    font-size: 14px;
}
ul li a{
    text-decoration: none;
    color: #000;
    font-family: Arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;

}
ul li a:hover{
    color: #1E90FF;
}
.search{
    width: 330px;
    float: left;
    margin-left: 270px;
}
.srch{
    font-family: 'Times New Roman';
    width: 200px;
    height: 40px;
    background: transparent;
    border: 1px solid #397ce2;
    margin-top: 13px;
    color: #fff;
    border-right: none;
    font-size: 16px;
    float: left;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}
.btn{
    width: 100px ;
    height: 40px;
    background: #1E90FF;
    border: 2px solid ;
    margin-top: 13px;
    color: #fff;
    font-size: 15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.btn:focus{
    outline: none;
}
.content{
    
    height: auto;
    margin: auto;
    color: #000;
    position: relative;
}
.content .par{
    padding-left: 20px;
    padding-bottom: 25px;
    font-family: Arial;
    letter-spacing: 1.2px;
    line-height: 30px;
}
.content h2{
    font-family: 'Times New Roman';
    font-size: 50px;
    padding-left: 20px;
    margin-top: 9%;
    letter-spacing: 2px;
}
 .content .cn{
    width: 160px;
    height: 40px;
    background: #397ce2;
    border: none;
    margin-bottom: 10px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;

 }
 .content .cn a{
    text-decoration: none;
    color: #fff;
    transition: .3s ease;
 }
 .content span{
    color: #1E90FF;
    font-size: 60px;
 }
 .form{
    width: 250px;
    height: 380px;
    position: absolute;
    top: -20px; 
    left: 870px;
 } 
 .form img{
    position: absolute;
    display: block;
    width: 500px;
    top: -35px;
    left: -200px;
 }
.app {
    margin-top: 250px;
    text-align: center; /* centers the heading */
}

.app h1 {
    margin-bottom: 50px;
     font-family: 'Times New Roman';
    font-size: 50px;
}

.store {
    display: flex;
    justify-content: space-between; /* left & right */
    align-items: center;
    max-width: 600px; /* controls spacing */
    margin: 0 auto;   /* centers the container */
}

.store img {
    width: 160px;
}
.screenshots {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.screenshots img {
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.screenshots img:hover {
    transform: translateY(-10px);
}
.contact {
    margin-top: 120px;
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.contact h2 {
     font-family: 'Times New Roman';
    font-size: 50px;
    margin-bottom: 10px;
}

.contact p {
    color: #666;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #1E90FF;
    color: #fff;
}

@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        height: auto;
        padding: 10px 20px;
    }

    .icon,
    .menu,
    .search {
        float: none;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    ul {
        flex-direction: column;
    }

    ul li {
        margin: 10px 0;
    }

    .search {
        margin-left: 0;
    }

    /* HERO CONTENT */
    .content h2 {
        font-size: 36px;
        margin-top: 40px;
        text-align: center;
    }

    .content span {
        font-size: 42px;
    }

    .content .par {
        text-align: center;
        padding: 0 10px;
    }

    .content .cn {
        display: block;
        margin: 20px auto;
    }

    /* PHONE IMAGE */
    .form {
        position: static;
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }

    .form img {
        position: static;
        width: 90%;
        max-width: 320px;
    }

    /* DOWNLOAD APP */
    .app h1 {
        font-size: 36px;
    }

    .store {
        flex-direction: column;
        gap: 20px;
    }

    /* SCREENSHOTS */
    .screenshots img {
        width: 90%;
        max-width: 320px;
    }

    /* CONTACT */
    .contact h2 {
        font-size: 36px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}
