/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #f3f2ef;
    color: #333;
}

/* ================= TOP CONTACT BAR ================= */
.top-bar {
    background: linear-gradient(90deg,#c29f2f,#e8c75a,#b38705);
    color: #111;
    padding: 7px 30px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.top-bar .social-icons {
    display: flex;
    gap: 12px;
}

.top-bar .social-icons a {
    color: #111;
    font-size: 18px;
    transition: .3s;
    font-weight: bold;
}

.top-bar .social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
}

/* ================= HEADER ================= */
header {
    background: linear-gradient(to right, #0a0a0a, #1a1a1a, #0e0e0e);
    padding: 22px 45px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.6);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f7d65c;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .7px;
}

.logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

/* Navigation */
nav a {
    color: #e6e6e6;
    margin-left: 22px;
    text-decoration: none;
    font-size: 16px;
    transition: .3s ease;
    padding-bottom: 3px;
}

nav a:hover,
nav a.active {
    color: #f7d65c;
    border-bottom: 2px solid #f7d65c;
}

/* ================= CONTACT SECTION ================= */
.contact {
    padding: 80px 30px;
    text-align: center;
}

.contact h1 {
    font-size: 40px;
    color: #111;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

/* Contact Form UI */
.contact-form {
    max-width: 550px;
    margin: auto;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(6px);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    animation: fadeIn .8s ease;
}

.contact-form input,
.contact-form textarea {
    width: 92%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f5c518;
    box-shadow: 0 0 8px rgba(245,197,24,0.5);
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

/* Send Button */
.contact-form button {
    background: #f5c518;
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    color: #111;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s ease-in-out;
    width: 100%;
}

.contact-form button:hover {
    background: #ffdb4d;
    transform: scale(1.05);
}

/* ================= FOOTER ================= */
footer {
    background: #0f0f0f;
    color: #e9c84d;
    text-align: center;
    padding: 12px 0;
    font-size: 14.5px;
    letter-spacing: .7px;
    border-top: 2px solid #e9c84d3a;
    box-shadow: 0 -3px 20px rgba(0,0,0,0.4);
}

footer:hover {
    background: #161616;
    transition: 0.4s;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================= LEFT SIDE PROFILE CIRCLE ================= */
/* Wrapper to hold circle + form side-by-side */
.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 20px;
}

/* Left circle */
.side-profile {
    position: relative;
}

/* Circle shape */
.profile-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

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

/* Make circle + form stack vertically on mobile */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .profile-circle {
        width: 200px;
        height: 200px;
    }
}


.side-profile {
    position: fixed;
    top: 36%; /* adjust height */
    left: 400px;
    z-index: 1000;
}

.profile-circle {
    width: 300px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    /*border: 4px solid #f5c518;*/
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
}

