•	{
    Margin: 0;
    Padding: 0;
    Box-sizing: border-box;
    Font-family: Arial, sans-serif;
}

Body {
    background-color: yellow;
    Color: black;
    Line-height: 1.6;
}

/* NAVBAR */
Nav {
    Background: #1a1a1a;
    Position: sticky;
    Top: 0;
    z-index: 1000;
}

.nav-container {
    Display: flex;
    Justify-content: space-between;
    Align-items: center;
    Padding: 15px 0;
}

.logo {
    Color: gold;
    object-fit: cover;
    border-radius: 50%;
    align-items: center; 
}

.nav-links {
    List-style: none;
    Display: flex;
    Gap: 20px;
}

.nav-links a {
    Text-decoration: none;
    Color: gold;
    Transition: 0.3s;
}

.nav-links a:hover {
    Color: #fff;
}

/* HEADER */
Header {
    Background: black;
    Padding: 60px 20px;
}

.header-content {
    Display: flex;
    Justify-content: space-between;
    Align-items: center;
    Flex-wrap: wrap;
}

.header-content .text {
    Max-width: 500px;
    color: #fff;

}



Header h1 {
    Font-size: 2.5rem;
}

Header h1 span{color: gold;}



Header p {
    Color: #bbb;
    Margin-top: 10px;
}

/* PROFILE IMAGE */
.profile-img img {
    Width: 400px;
    Height: 400px;
    object-position: center;
    object-fit: cover;
    Border-radius: 50%;
    Border: 4px solid #333;
}

/* SECTIONS */
.container {
    Width: 85%;
    Margin: auto;
    Padding: 40px 0;
}

H2 {
    Margin-bottom: 15px;
    Border-bottom: 2px solid #444;
    Display: inline-block;
    Padding-bottom: 5px;
}

/* SKILLS */
.skills ul {
    List-style: none;
    Display: flex;
    Flex-wrap: wrap;
    Gap: 10px;
}


.skills li {
    Background: #1f1f1f;
    Padding: 10px 15px;
    Border-radius: 5px;
}

/* FOOTER */
Footer {
    Text-align: center;
    Padding: 20px;
    Background: #1a1a1a;
    Margin-top: 30px;
    color: white;
    


}

/* PROJECTS */
#projects{
    padding: 40px 20px;
}
.card img{
     Width: 100%;
    Height: 100%;
    object-fit: initial;

}
.extra-content{
    display: none;
}
.extra-content.show{
    display: block;
}
.view-more-container{
    text-align: center;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn{
    padding: 10px 25px;
    background-color: gold;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px; 
    transition: 0.3s;
   text-decoration: none;
    display: inline-block;
    color: black;
    margin: 5px;
    
}
.btn:hover{background-color: #d4ac0d;}
.card-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
   padding-left: 0;
}
.card{width: 180px;
height: 240px;
border: 1px solid #ddd;
overflow: hidden;
border-radius: 8px;
}

form {
    max-width: 500px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
}

input, textarea{
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: black;
    color: white;
}

button {
    padding: 12px;
    background: yellow;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    
}
.brand-actions{
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    padding: 20px;

}

form button{background: #fff;

}
/* The Background Overlay */
.modal {
  display: flex; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8); /* Darkens the screen */
  justify-content: center;
  align-items: center;
}

/* The Popup Box */
.modal-content {
  background-color: #222; /* Matches your dark theme */
  color: gold;
  padding: 30px;
  border: 2px solid gold;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}




