* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #f3f7fc, #e2ebf9);
  color: #20303C;
}

.navbar {
  position: fixed; top: 0; width: 100%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  z-index: 999;
}
.navbar .logo {
  font-size: 24px; font-weight: bold;
  color: #116DFF;
}
.navbar .logo span {
  color: #000;
}
.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #20303C;
  font-weight: 500;
  transition: 0.3s;
}
.navbar nav a:hover {
  color: #116DFF;
}

.masonry-gallery {
  column-count: 4;
  column-gap: 20px;
  padding: 120px 20px 40px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
}
.masonry-item img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.masonry-item img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

@media (max-width: 1200px) {
  .masonry-gallery { column-count: 3; }
}
@media (max-width: 768px) {
  .masonry-gallery { column-count: 2; }
}
@media (max-width: 500px) {
  .masonry-gallery { column-count: 1; }
}






    .site-footer {
      background: #1a1a2e;
      color: #f1f1f1;
      padding: 60px 30px 20px;
      font-family: 'Poppins', sans-serif;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 40px;
      max-width: 100%;
      margin: auto;
    }

    .footer-about,
    .footer-links,
    .footer-social {
      flex: 1;
      text-align: center;
    }

    .footer-about h3 {
      font-size: 24px;
      color: #00aaff;
      margin-bottom: 15px;
    }

    .footer-about p {
      line-height: 1.6;
      font-size: 14px;
      color: #ccc;
    }

    .footer-links h4,
    .footer-social h4 {
      font-size: 18px;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .footer-links ul {
      list-style: none;
      padding: 0px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .footer-links li {
      margin: 8px 0;
    }

    .footer-links a {
      text-decoration: none;
      color: #ddd;
      font-size: 14px;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: #00aaff;
    }

    .footer-social .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 10px;
      justify-content: center;
    }

    .footer-social .social-icons a {
      color: #ffffff;
      font-size: 25px;
      transition: 0.3s;
    }

    .footer-social .social-icons a:hover {
      color: #00aaff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      padding-top: 15px;
      margin-top: 30px;
      font-size: 14px;
      color: #aaa;
    }

    .footer-bottom a {
      color: #00aaff;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }


    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
        text-align: center;
      }

      .contact-form,
      .contact-info {
        width: 100%;
      }
    }

    @keyframes fadeInUp {
      from {
        transform: translateY(20px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }