* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background: #fff;
    color: #333;
  }
  
  /* Header/Navbar */
  header {
    background-color: #00796b;
    padding: 15px 30px;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  /* Home Section */
  .home {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
    min-height: 80vh;
  }
  
  .home-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
  }
  
  .home-img img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 128, 96, 0.3);
  }
  
  .home-text {
    flex: 1;
    min-width: 280px;
  }
  
  .home-text h1 {
    font-size: 40px;
    margin: 10px 0;
  }
  
  .home-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .home-text span {
    color: #00796b;
    font-weight: bold;
  }
  
  .home-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .social-icons {
    margin-bottom: 20px;
  }
  
  .social-icons i {
    color: #00796b;
    margin-right: 15px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .social-icons i:hover {
    transform: scale(1.2);
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00796b;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background-color: #005f56;
  }
  
  /* Typing effect style */
  .typing {
    border-right: 2px solid #00796b;
    white-space: nowrap;
    overflow: hidden;
    animation: blink 0.7s infinite;
  }
  
  @keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: #00796b; }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .home-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .home-text {
      align-items: center;
    }
  }
.gallery {
    padding: 80px 30px;
    text-align: center;
    background-color: #f7f7f7;
  }
  
  .gallery h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #00796b;
  }
  
  .gallery-img img {
    width: 300px;
    max-width: 90%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
.meme-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh; 
    background-color: #f5f5f5;
  }
  
  .meme-img {
    max-width: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
