
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Quicksand:wght@300..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
}
body {
    background: #4b3aab; 
    color: aliceblue;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo {
    font-size: 25px;
    color: aliceblue;
    text-decoration: none;
    font-weight: 600;
}
.navbar a {
    font-size: 18px;
    color: aliceblue;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}
.navbar a:hover,
.navbar a.active {
    color: rgb(32, 135, 101);
}


.home {
    height: 120vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    gap: 40px; 
}
.home-content {
    max-width: 600px;
}
.home-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}
.home-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #00f7ff; 
}
.home-content p {
    font-size: 16px;
    margin: 20px 0 40px;
}


.home-content .btn-box {
    width: 345px;
    display: flex;
    justify-content: space-between;
    height: 50px;
}
.btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #00f7ff;
    border: 2px solid #00f7ff;
    border-radius: 8px;
    font-size: 19px;
    color: #0e0e12;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.btn-box a:hover {
    color: #00f7ff;
    background: transparent;
}
.btn-box a:nth-child(2) {
    background: transparent;
    color: #00f7ff;
}
.btn-box a:nth-child(2):hover {
    background: #00f7ff;
    color: #0e0e12;
}

.home-sci {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #00f7ff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
    color: aqua;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.home-sci a:hover {
    background: #00f7ff;
    color: #0e0e12;
}

.profile-pic {
    width: 220px;
    height: 220px;
    border-radius: 50%; 
    overflow: hidden;
    border: 4px solid #00f7ff; 
    box-shadow: 0 0 20px #00f7ff, 0 0 40px #0077aa;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-pic:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 30px #00f7ff, 0 0 60px #0077aa;
}

.career {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; 
    padding: 100px 10%;
    background: linear-gradient(135deg, #4b3aab, #2b2b45);
    color: #fff;
    min-height: 100vh;
}

.career div {
    flex: 1;
    max-width: 500px;
    background: #4b3aab(255, 255, 255, 0.1); 
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career div:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 247, 255, 0.6);
}


.career h3 {
    font-size: 24px;
    color: #00f7ff;
    margin-bottom: 15px;
    text-align: center;
}


.career p {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}


