@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Roboto:wght@583&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #E4E5E6, #00416A);
}

.nav-container {
    position: relative;
    height: 70px;
    width: 100%;
}

.navbar {
    display: flex;
    height: 60px;
    width: 100%;
}

.logo {
    position: absolute;
    margin-left: 6rem;
    font-size: 40px;
    color: #00416A;
    display: flex;
    align-self: center;
}

.navLinks {
    position: absolute;
    width: 40%;
    display: flex;
    align-self: center;
    justify-content: space-between;
    right: 200px;

}

.navLinks .link {
    position: relative;
    text-decoration: none;
    color: black;
    font-size: 22px;
    transition: 0.3 linear;
}

.navLinks .link::before{ 
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: black;
    transition:0.2s linear;
}

.navLinks .link:hover::before {
    width: 100%; /* Left se right expand hoga */
}

#hamburg {
    position: absolute;
    font-size: 30px;
    top: 14px;
    right: 5px;
    z-index: 10;
    cursor: pointer;
    z-index: 999;
}

#cancel {
    position: absolute;
    font-size: 30px;
    top: 5px;
    right: 2px;
    z-index: 10;
    cursor: pointer;
    display: none;
    z-index: 999;
}

.dropdown {
    position: absolute;
    height: 330px;
    width: 200px;
    right: 0px;
    top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-bottom-left-radius: 8px;
    background-color: rgba(0, 153, 255, 0.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 8px rgba(0, 153, 255, 0.6),  0 0 20px rgba(0, 153, 255, 0.4), 0 0 40px rgba(0, 153, 255, 0.3);
    transform: translateY(-550px);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
}

.dropdown a {
    position: relative;
    top: 50px;
    text-decoration: none;
    color: black;
    font-size: 22px;
}

.dropdown a:hover {
    color: #00416A;
    background-color: #87929c;
    width: 100%;
}

.main-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.imagesDiv {
    position: relative;
    width: 40%;
    height: 80%;
    top: 5%;
    display: flex;
    justify-content: center;
}

.contentDiv {
    position: relative;
    width: 50%;
    height: 80%;
    top: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
}


.firstrow {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#myName {
    color: #00416A;
}

#TypeWriter {
    font-size: 35px;
    color: #00416A;
    font-weight: 600;
}

.social-links {
    font-size: 40px;
    background: transparent;
    
}

.social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid #00416A;
    border-radius: 50%;
    color: #00416A;
    margin: 5px 10px;
    font-size: 1.5rem;
    transition: 0.2 linear;
}

.social-links i:hover{
    scale:1.3;
    color: white;
    background-color: #00416A;
    filter: drop-shadow(0 0 10px #00416A);
}

.DownloadBtn {
    height: 50px;
    width: 240px;
    color: white;
    font-size: 18px;
    background-color: #00416A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s linear;
}

.DownloadBtn:hover {
    color: #00416A;
    font-size: 18px;
    background-color: white;
    color: #00416A;
    border: 2px solid #00416A;
    box-shadow: 0 0 40px #00416A;
}

@media screen and (max-width: 1350px) and ( min-width: 940px) {

    .logo {
    position: absolute;
    margin-left: 2.5rem;
    font-size: 38px;
    color: #00416A;
    display: flex;
    align-self: center;
    }

    .navLinks {
    position: absolute;
    width: 50%;
    display: flex;
    align-self: center;
    justify-content: space-between;
    right: 50px;
    }

    #hamburg {
        display: none;
    }

    .main-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    }

    .imagesDiv {
    top: 180px;        
    width: 40%;
    height: 50%;
    display: flex;
    justify-content: center;
    }

    .contentDiv {
    top: -35px;
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    }

    .contentDiv p {
        font-size: 16px;
    }

    .firstrow {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    }

    #myName {
    color: #00416A;
    }

    #TypeWriter {
    font-size: 28px;
    color: #00416A;
    font-weight: 600;
    }

    .social-links {
    font-size: 30px;
    background: transparent;    
    }

    .social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid #00416A;
    border-radius: 50%;
    color: #00416A;
    margin: 5px 10px;
    font-size: 1.5rem;
    transition: 0.2 linear;
    }

    .social-links i:hover{
    scale:1.3;
    color: white;
    background-color: #00416A;
    filter: drop-shadow(0 0 10px #00416A);
    }

    .DownloadBtn {
    height: 40px;
    width: 200px;
    color: white;
    font-size: 18px;
    background-color: #00416A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s linear;
    }

    .DownloadBtn:hover {
    color: #00416A;
    font-size: 18px;
    background-color: white;
    color: #00416A;
    border: 2px solid #00416A;
    box-shadow: 0 0 40px #00416A;
    }

}

@media screen and (max-width: 940px) and ( min-width: 768px) {

    .logo {
    position: absolute;
    margin-left: 2rem;
    font-size: 30px;
    color: #00416A;
    display: flex;
    align-self: center;
    }

    .navLinks {
    position: absolute;
    width: 56%;
    display: flex;
    align-self: center;
    justify-content: space-between;
    right: 20px;
    }

    #hamburg {
        display: none;
    }

    .main-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    }

    .imagesDiv {
    top: 180px;        
    width: 30%;
    height: 40%;
    display: flex;
    justify-content: center;
    }

    .contentDiv {
    top: -80px;
    left: 20px;
    width: 60%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    }

    .firstrow {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    }

    #myName {
    color: #00416A;
    }

    #TypeWriter {
    font-size: 22px;
    color: #00416A;
    font-weight: 600;
    }

    .social-links {
    font-size: 30px;
    background: transparent;    
    }

    .social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: transparent;
    border: 0.2rem solid #00416A;
    border-radius: 50%;
    color: #00416A;
    margin: 5px 10px;
    font-size: 1.5rem;
    transition: 0.2 linear;
    }

    .social-links i:hover{
    scale:1.3;
    color: white;
    background-color: #00416A;
    filter: drop-shadow(0 0 10px #00416A);
    }

    .DownloadBtn {
    height: 40px;
    width: 200px;
    color: white;
    font-size: 16px;
    background-color: #00416A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s linear;
    }

    .DownloadBtn:hover {
    color: #00416A;
    font-size: 18px;
    background-color: white;
    color: #00416A;
    border: 2px solid #00416A;
    box-shadow: 0 0 40px #00416A;
    }

}

@media screen and (max-width: 768px) and ( min-width: 550px) {

    .logo {
    position: absolute;
    margin-left: 1.7rem;
    font-size: 28px;
    color: #00416A;
    display: flex;
    align-self: center;
    }

    .navLinks {
        display: none;
    }

    .dropdown {
        right: 0;
    }

    #hamburg {
    position: absolute;
    font-size: 26px;
    top: 12px;
    right: 2px;
    z-index: 10;
    cursor: pointer;
    z-index: 999;
   }

    #cancel {
    position: absolute;
    font-size: 26px;
    top: 5px;
    right: 2px;
    z-index: 10;
    cursor: pointer;
    display: none;
    z-index: 999;
    }

    .main-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .imagesDiv {
    position: absolute;
    top: 60px;
    width: 40%;
    height: 40%;
    display: flex;
    justify-content: center;
    }

    .contentDiv {
    position: relative;
    top: 160px;
    width: 80%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    }

    .firstrow {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    }

    #myName {
    color: #00416A;
    }

    #TypeWriter {
    font-size: 28px;
    color: #00416A;
    font-weight: 600;
    }

    .social-links {
    font-size: 30px;
    background: transparent;    
    }

    .social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid #00416A;
    border-radius: 50%;
    color: #00416A;
    margin: 5px 10px;
    font-size: 1.5rem;
    transition: 0.2 linear;
    }

    .social-links i:hover{
    scale:1.3;
    color: white;
    background-color: #00416A;
    filter: drop-shadow(0 0 10px #00416A);
    }

    .DownloadBtn {
    height: 40px;
    width: 200px;
    color: white;
    font-size: 18px;
    background-color: #00416A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s linear;
    }

    .DownloadBtn:hover {
    color: #00416A;
    font-size: 18px;
    background-color: white;
    color: #00416A;
    border: 2px solid #00416A;
    box-shadow: 0 0 40px #00416A;
    }

}



@media screen and (max-width: 550px) and (min-width: 350px) {

    .logo {
    position: absolute;
    margin-left: 1.6rem;
    font-size: 28px;
    color: #00416A;
    display: flex;
    align-self: center;
    }

    .navLinks {
        display: none;
    }

    .dropdown {
        right: 0;
        width: 200px;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    }

    #hamburg {
    position: absolute;
    font-size: 22px;
    top: 18px;
    right: 6px;
    cursor: pointer;
    z-index: 999;
   }

    #cancel {
    position: absolute;
    font-size: 26px;
    top: 10px;
    right: 6px;
    cursor: pointer;
    display: none;
    z-index: 999;
    }

    .main-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .imagesDiv {
    position: absolute;
    top: 65px;
    width: 30%;
    height: 30%;
    display: flex;
    justify-content: center;
    }

    .contentDiv {
    position: relative;
    top: 80px;
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    }

    .firstrow {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    }

    #myName {
    color: #00416A;
    }

    #TypeWriter {
    font-size: 20px;
    color: #00416A;
    font-weight: 600;
    }

    .social-links {
    font-size: 30px;
    background: transparent;    
    }

    .social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid #00416A;
    border-radius: 50%;
    color: #00416A;
    margin: 5px 10px;
    font-size: 1.5rem;
    transition: 0.2 linear;
    }

    .social-links i:hover{
    scale:1.3;
    color: white;
    background-color: #00416A;
    filter: drop-shadow(0 0 10px #00416A);
    }

    .DownloadBtn {
    height: 40px;
    width: 200px;
    color: white;
    font-size: 18px;
    background-color: #00416A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s linear;
    }

    .DownloadBtn:hover {
    color: #00416A;
    font-size: 18px;
    background-color: white;
    color: #00416A;
    border: 2px solid #00416A;
    box-shadow: 0 0 40px #00416A;
    }

}

@media screen and (max-width: 350px) {

    .logo {
    position: absolute;
    margin-left: 1.4rem;
    font-size: 20px;
    color: #00416A;
    display: flex;
    align-self: center;
    }

    .navLinks {
        display: none;
    }

    .dropdown {
        right: 0;
        width: 200px;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    }

    #hamburg {
    position: absolute;
    font-size: 18px;
    top: 18px;
    right: 6px;
    cursor: pointer;
    z-index: 999;
   }

    #cancel {
    position: absolute;
    font-size: 20px;
    top: 10px;
    right: 6px;
    cursor: pointer;
    display: none;
    z-index: 999;
    }

    .main-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .imagesDiv {
    position: absolute;
    top: 65px;
    width: 30%;
    height: 30%;
    display: flex;
    justify-content: center;
    }

    .contentDiv {
    position: relative;
    top: 80px;
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    }

    .firstrow {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    }

    #myName {
    color: #00416A;
    }

    #TypeWriter {
    font-size: 20px;
    color: #00416A;
    font-weight: 600;
    }

    .social-links {
    font-size: 30px;
    background: transparent;    
    }

    .social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background-color: transparent;
    border: 0.2rem solid #00416A;
    border-radius: 50%;
    color: #00416A;
    margin: 5px 10px;
    font-size: 1.5rem;
    transition: 0.2 linear;
    }

    .social-links i:hover{
    scale:1.3;
    color: white;
    background-color: #00416A;
    filter: drop-shadow(0 0 10px #00416A);
    }

    .DownloadBtn {
    height: 40px;
    width: 200px;
    color: white;
    font-size: 18px;
    background-color: #00416A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s linear;
    }

    .DownloadBtn:hover {
    color: #00416A;
    font-size: 18px;
    background-color: white;
    color: #00416A;
    border: 2px solid #00416A;
    box-shadow: 0 0 40px #00416A;
    }

}