* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
     background-color: #412e2e; 
    color: #333;
    line-height: 1.6;
  }
  
  header {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 28px;
    font-weight: bold;
  }
  
  .menu {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .menu li a:hover {
    color: #00adb5;
  }
  
  .hero {
    text-align: center;
    padding: 60px 20px;
    background-color:#fff;
  }
  
  .hero h2 {
    font-size: 24px;
    color: #00adb5;
    margin-bottom: 10px;
  }
  
  .hero h1 {
    font-size: 40px;
    margin: 10px 0;
  }
  
  .hero p {
    max-width: 600px;
    margin: 20px auto;
    font-size: 18px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px 8px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .primary {
    background-color: #00adb5;
    color: #fff;
  }
  
  .primary:hover {
    background-color: #007a83;
  }
  
  .secondary {
    background-color: #eeeeee;
    color: #333;
  }
  
  .secondary:hover {
    background-color: #ddd;
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    font-size: 24px;
    margin: 0 10px;
    color: #00adb5;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #007a83;
  }
  
  .image {
    text-align: center;
    padding: 30px;
  }
  
  .image img {
    max-width: 200px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  section {
    padding: 50px 20px;
    background-color: #b89797;
  }
  
  section:nth-of-type(even) {
    background-color: #ebd7d7;
  }
  
  section h1, section h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .skill {
    background-color:#06373a;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  ul {
    max-width: 700px;
    margin: 0 auto;
    list-style: disc;
    padding-left: 40px;
  }
  
  .contact form {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .input-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .input-box input {
    flex: 1 1 45%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
  }
  
  input[type="submit"] {
    background-color: #00adb5;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  input[type="submit"]:hover {
    background-color: #042d30;
  }
  
  .heading span {
    color: #00adb5;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px 20px;
    }
  
    .menu {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }
  
    .input-box input {
      flex: 1 1 100%;
    }
  }
 
  .cont{
    /* background-color:peachpuff; */
    color:black;
    padding: 10px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
