* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
  }
  
  .container {
    width: 80%;
    margin: 0 auto;
  }
  
.container h2 {
font-family: 'Times New Roman', Times, serif;
}

  header {
    background-color: #333;
    color: white;
    padding: 20px 0;
  }
  
  header h1 {
    text-align: center;
    font-size: 2.5rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  section {
    padding: 40px 0;
    background-color: #fff;
    margin-bottom: 20px;
  }
  
  section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
  }
  
  section p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  ul {
    list-style-type: none;
  }
  
  ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .project {
    margin-bottom: 20px;
  }
  
  .project h3 {
    font-size: 1.5rem;
    font-family: 'Times New Roman', Times, serif;
  }
  
  form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.1rem;
  }
  
  form button:hover {
    background-color: #555;
  }
  
  footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .container {
      width: 90%;
    }
  
    nav ul {
      flex-direction: column;
    }
  }

  /* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
  }
  
  /* Navigation bar styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
  }
  
  .navbar .logo h1 {
    color: white;
    font-size: 1.8rem;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
  }
  
  .nav-links li a:hover {
    color: #ddd;
  }
  
  /* Hamburger icon */
  .hamburger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #333;
      flex-direction: column;
      align-items: center;
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 15px 0;
    }
  
    .hamburger {
      display: block;
    }
  }

  .mini-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px; 
    padding: 10px;
    border: 1px solid black;
    background-color: white;
    color: black;
    text-align: center;
    font-family: sans-serif; 
    margin: 10px; 
    display: inline-block;
  }
  
  .mini-box h3 {
    margin-top: 0; 
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
  }
  
  .mini-box p {
    font-size: 12px;
  }
  
  .mini-box1 h3 {
    margin-top: 0; 
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
  }
  
  .mini-box1 p {
    font-size: 12px;
  }


.button {
  padding: 15px 20px;
  border: none;
  outline: none;
  background-color: #151515;
  color: #eee;
  border-radius: 7px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease-out;
}

.button:hover {
  transform: translateY(-3px);
}

.button-span {
  color: #aaa;
}

.black-button {
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}
.black-button:hover {
  background-color: #333;
  transform: scale(1.05);
}
.black-button:active {
  background-color: #555;
  transform: scale(0.95);
}

.container2 {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h12 {
  text-align: center;
  color: #333;
}
.post2 {
  margin-bottom: 20px;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.post2 h2 {
  color: #007BFF;
}
.post2 p {
  color: #555;
}
.read-more2 {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
}
.read-more2:hover {
  text-decoration: underline;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  color: white;
  padding: 0.1;
  border-radius: 50%; 
  text-decoration: none; 
  font-size: 1cap;
  cursor: pointer;
  display: none;

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  height: 2000px; 
}


.scroll-to-top {
  animation: fadeIn 0.5s;
}