*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F7F7F7;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    position: sticky;
top: 0;
z-index: 1000;
background: rgba(10, 41, 71, 0.95);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#FFBF00;
    font-size:28px;
    font-weight:700;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#FFBF00;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#0A2947,#143d63);
    color:white;
    padding-top:90px;
}

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
}

.badge{
    background:#FFBF00;
    color:#0A2947;
    padding:8px 18px;
    border-radius:50px;
    display:inline-block;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:60px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero h1 span{
    color:#FFBF00;
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
    max-width:600px;
}

.btn{
    display:inline-block;
    background:#FFBF00;
    color:#0A2947;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.circle{
    width:300px;
    height:300px;
    background:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:120px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

section{
    padding:100px 0;
}

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#0A2947;
}

.about p{
    max-width:850px;
    margin:auto;
    text-align:center;
    line-height:1.8;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    margin-bottom:15px;
    color:#0A2947;
}

.contact{
    background:#0A2947;
    color:white;
    text-align:center;
}

.contact h2{
    color:white;
}

.contact .btn{
    margin-top:25px;
}

footer{
    background:#071c31;
    color:white;
    text-align:center;
    padding:30px;
}

@media(max-width:768px){

.hero h1{
    font-size:40px;
}

nav{
    flex-direction:column;
    gap:20px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

.hero-content{
    text-align:center;
}

/* Add these */
.nav-right{
    flex-direction:column;
    gap:15px;
}

.hire-btn{
    padding:10px 24px;
}

}
}

.hero-image{
    margin-top:50px;
}

.circle{
    width:220px;
    height:220px;
    font-size:90px;
}

}
.hidden{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}
/* Footer */
/* Footer */

footer{
    background:#071c31;
    color:white;
    padding:35px 20px;
    text-align:center;
}

footer p{
    margin-bottom:20px;
    font-size:15px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:18px;
}

.social-icons a{

    width:50px;
    height:50px;

    border-radius:50%;

    background:#0A2947;

    color:#FFBF00;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    text-decoration:none;

    transition:.35s ease;
}

.social-icons a:hover{

    background:#FFBF00;

    color:#0A2947;

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 10px 25px rgba(255,191,0,.4);

}
.circle img {
    width: 350px;
    height: auto;
    object-fit: contain;
}
/* Navigation Right */
.nav-right{
    display:flex;
    align-items:center;
    gap:30px;
}

/* Hire Me Button */
.hire-btn{
    background:#FFBF00;
    color:#0A2947;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.hire-btn:hover{
    background:white;
    color:#0A2947;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(255,191,0,.35);
}
header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 41, 71, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* About Section */

#about{
    padding:100px 0;
    background:#f8f9fc;
}

#about h2{
    text-align:center;
    font-size:40px;
    color:#0A2947;
    margin-bottom:40px;
}

.about-text{
    max-width:800px;
    margin:auto;
    text-align:center;
    font-size:18px;
    line-height:1.9;
    color:#555;
}
.hero-image{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.profile-circle,
.logo-circle{
    width:100px;
    height:100px;
    border-radius:50%;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.profile-circle img,
.logo-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.logo-circle{
    background:#fff;
    padding:15px;
}
.profile-circle{
    width:300px;
    height:300px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:5px solid #FFC107;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.profile-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.profile-circle,
.logo-circle{
    width:220px;
    height:220px;
    border-radius:50%;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.profile-circle img,
.logo-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.profile-circle,
.logo-circle{
    width:220px;
    height:220px;
    border-radius:50%;
    overflow:hidden;
    background:#fff;
    border:5px solid #FFC107;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    display:flex;
    align-items:center;
    justify-content:center;
}

.profile-circle img,
.logo-circle img{
    width:100%;
    height:100%;
}

.profile-circle img{
    object-fit:cover;
}

.logo-circle img{
    object-fit:contain;
    padding:15px;
}
