html{
    scroll-behavior:smooth;
}

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#111827;
    color:white;
    text-align:center;
    min-height:100vh;
}

.navbar{
    background:#020617;
    padding:18px 30px;
    text-align:center;
    font-weight:bold;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid #334155;
    box-shadow:0 4px 20px rgba(0,0,0,.25);
}

.navbar a{
    color:#cbd5e1;
    text-decoration:none;
    margin:0 12px;
    padding:10px 14px;
    border-radius:8px;
    transition:.3s;
    display:inline-block;
}

.navbar a:hover,
.navbar .active{
    background:#2563eb;
    color:white;
}

.container{
    max-width:1000px;
    margin:50px auto;
    padding:0 25px;
}

.hero-container{
    max-width:1000px;
    margin:25px auto 0;
    padding:0 25px;
}

.hero-image{
    width:100%;
    max-height:300px;
    object-fit:cover;
    border-radius:10px;
}

h1{
    font-size:3rem;
    margin-bottom:15px;
}

h2{
    width:100%;
    margin-top:50px;
    margin-bottom:20px;
}

h3{
    margin-bottom:10px;
}

p{
    color:#cbd5e1;
    line-height:1.7;
    margin-bottom:15px;
}

a{
    color:#60a5fa;
}

.button,
button{
    display:inline-block;
    padding:12px 24px;
    background:#2563eb;
    color:white;
    text-decoration:none;
    border-radius:8px;
    border:none;
    cursor:pointer;
    transition:.3s;
}

.button:hover,
button:hover{
    background:#1d4ed8;
}

.cards{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:25px;
}

.card{
    background:#1e293b;
    padding:25px;
    border-radius:12px;
    border:1px solid #334155;
    width:280px;
    min-height:150px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 30px rgba(37,99,235,.4);
}

.contact-card{
    max-width:500px;
    width:100%;
    margin:0 auto;
}

ul{
    list-style:none;
    padding:0;
}

li{
    margin:15px 0;
    font-size:1.1rem;
}

input,
textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border-radius:8px;
    border:1px solid #334155;
    background:white;
    color:#111827;
    font-size:1rem;
}

.success{
    background:#14532d;
    padding:15px;
    border-radius:8px;
    margin-bottom:20px;
}

hr{
    border:none;
    height:1px;
    background:#334155;
    margin:50px 0;
}

.site-footer{
    margin-top:60px;
    padding:30px 20px;
    color:#94a3b8;
    font-size:.9rem;
    border-top:1px solid #334155;
}

.social-links{
    margin-bottom:15px;
}

.social-links a{
    color:#cbd5e1;
    text-decoration:none;
    margin:0 10px;
    padding:8px 10px;
    border-radius:8px;
    display:inline-block;
    transition:.3s;
}

.social-links a:hover{
    background:#2563eb;
    color:white;
}

@media (max-width:700px){
    .navbar a{
        margin:5px;
        padding:9px 10px;
    }

    h1{
        font-size:2.2rem;
    }

    .container{
        margin:35px auto;
        padding:0 18px;
    }

    .card{
        width:100%;
        max-width:330px;
    }
}

.profile-photo{
    text-align:center;
    margin:40px 0;
}

.profile-photo img{
    width:250px;
    height:250px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #2d6cff;
    box-shadow:0 10px 30px rgba(45,108,255,0.3);

    transition:0.3s;
    cursor:pointer;
}

.profile-photo img:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(45,108,255,0.5);
}

.profile-photo p{
    margin-top:15px;
    color:#ccc;
    font-style:italic;
}

.photo-gallery{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin:40px 0;
}

.contact-button{
    margin-top:40px;
    display:inline-block;
}