

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   NAVBAR
========================= */
.navbar{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background:rgb(255, 226, 158);
    position:sticky;
    top: 0;
    z-index: 1000;
}

.navbar h1 a{
    display: inline-block;
    font-family: "League Spartan";
    font-weight: bold;
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.navbar h1 a:hover {
    color: rgb(223, 130, 9);
    transform: scale(1.1);
}

.navbar a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.navbar a:hover {
    color: rgb(223, 130, 9);
    transform: scale(1.1);
}

/* =========================
   NAV DROPDOWN (ONLY ONE)
========================= */
.drop-btn button {
    background-color: rgb(255, 226, 158);
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.drop-btn button:hover{
    color: rgb(223, 130, 9);
    transform: scale(1.1);
}

.dropdown {
    display: none;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    border: 1px solid #333;
    min-width: 200px;
    z-index: 1000;
}

.dropdown a{
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
}

.dropdown a:hover{
    background: rgb(223, 130, 9);
    color: black;
}

/* =========================
   HERO
========================= */
.hero{
    height: 80vh;
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url("Asset/portfolio/WhatsApp Image 2026-04-30 at 12.47.32 (1).jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
}

.hero-content h1 {
    font-family: "League Spartan";
    font-size: 5rem;
    color: white;
}

.hero-content h2 {
    font-family: 'quicksand';
    letter-spacing: 10px;
    font-size: 12px;
    color: white;
}

.hero-content p {
    margin-top: 50px;
}

/* =========================
   ABOUT
========================= */
.about {
    max-width: 1100px;
    margin: auto;
    padding: 80px 40px;
}

.about h2{
    font-family: "League Spartan";
    font-size: 36px;
    text-align: center;
    padding-bottom: 50px;
    color: rgb(223, 130, 9);
}

.about-me p {
    margin-bottom: 15px;
    padding: 20px 50px;
}

.about img {
    width: 50%;
}

/* =========================
   FEATURED WORKS (FIXED ONCE ONLY)
========================= */
.featured-works {
    padding: 80px 40px;
    text-align: center;
}

.featured-works h2 {
    color: rgb(223, 130, 9);
    padding-bottom: 20px;
}

/* FINAL GRID SYSTEM (ONLY ONE) */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    padding: 40px;
}

/* WORK ITEMS */
.work-item {
    background: none;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.work-item:hover{
    transform: scale(1.03);
    border-color: gold;
}

.work-item img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* =========================
   REQUEST SECTION
========================= */
.request-container {
    background-color: black;
}

.request{
    color: white;
    text-align: center;
}

.request h1 {
    padding: 20px;
}

.request p{
    padding-bottom: 20px;
}

.request a {
        display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(219, 127, 8);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
}

.request a:hover{
    background-color: rgb(168, 97, 4);
    color: white;
    transform: scale(1.2);
}

/* =========================
   CONTACT
========================= */
.contact p {
    text-align: center;
    padding: 30px;
}

.contact-form{
    display: flex;
    max-width: 500px;
    margin: auto;
    flex-direction: column;
    gap: 20px;
}

.contact-form button{
    background-color: rgb(231, 184, 76);
    border: none;
    border-radius: 10px;
    max-width: 100px;
    margin: auto;
    padding: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: rgb(219, 127, 8);
    color: white;
    transform: scale(1.2);
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: green;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
}

.whatsapp-container{
    text-align: center;
    margin: 60px;
}

/* =========================
   PORTFOLIO HERO
========================= */
.portfolio-hero{
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* =========================
   FOOTER
========================= */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
}













