/* External CSS File */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #333;
    text-align: center;
}

/* Navigation Styling */


/* Picture secton */

.picture {
    
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
    border: 5px solid #555;
    align-items: center;
    margin-bottom: 30px;
  }

  /* Navigation Styling */

  .Experience {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.work {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 5px solid #e79b18;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-align: left;
}

.work li {
    margin-bottom: 5px;
    list-style-type: "✔ "; 
}


/* Section Styling */
.about, .services {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.frame {
    
    border: 2px solid black; 
    padding: 10px; 
    width: 1000px; 
    background-color: #f0f0f0; 
    border-radius: 10px; 
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); 
    margin: 0 auto;
    margin-bottom: 30px;
}

p{
    font-style: italic;
    font-size: large;
    color: #333;
    text-align: center;
    border-radius: 10px;

}



/* Box Model Example */
.services ul li {
    padding: 10px;
    border: 1px solid #ddd;
    margin: 5px 0;
    background-color: #f9f9f9;
}

/* CSS Transitions */
nav ul li a:hover {
    color: #ff0000;
    transition: color 0.3s ease-in-out;
}

/* CSS Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* paragraph */

h1 {
    text-align: center;
    animation: fadeIn 2s ease-in;
    background-color: #c9a634;
}




/* Table */

th {
     
   border: 1px solid rgb(0, 0, 0);
    border-collapse: collapse;
    font-style: italic;
    font-style: center;
    color: #ff0000;
    padding: 15px;
  }

  td {
     
    border: 1px solid black;
     border-collapse: collapse;
     font-style: italic;
     font-style: center;
     padding: 15px;
   }

  table {
    margin-left: auto;
    margin-right: auto;
    border: 1px solid black;
    border-collapse: collapse;
    font-style: italic;
    font-style: center;
    padding: 15px;
  }

  /* menu button */

  .menu-btn {
    position: fixed;
    top: 6px;
    left: 20px;
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

.menu-btn:hover {
    background-color: #575757;
}


.sidebar {
    width: 250px;
    height: 100vh;
    background-color: #333;
    color: white;
    padding-top: 20px;
    position: fixed;
    left: -250px; 
    top: 0;
    transition: left 0.3s ease-in-out;
}

.sidebar h2 {
    text-align: center;
}

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

.sidebar ul li {
    padding: 15px;
    text-align: center;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

.sidebar ul li a:hover {
    background-color: #575757;
}






.content {
    margin-left: 20px;
    padding: 20px;
}

.contact-container {
    width: 50%;
    margin: 50px auto;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-container h2 {
    margin-bottom: 10px;
}

.contact-container p {
    font-size: 14px;
    color: #c22323;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    margin-top: 10px;
    font-weight: bold;  
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 15px;
    padding: 10px;
    background: #e79b18;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #575757;
}
