 body {
        padding-top: 70px;
      }

      
.btn-float:hover {
    transform: translateY(-5px);
}
        body {
            font-family: Arial, sans-serif;
        }
        .section-padding {
            padding: 60px 0;
        }
        .angel-logo {
    height: 28px !important;
    width: auto;
}

@media (max-width: 768px) {
    .angel-logo {
        height: 22px;
    }
}
.btn-glass {
    background: linear-gradient(145deg, #1e88e5, #1565c0);
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    /* box-shadow: 5px 5px 12px rgba(0,0,0,0.3),
                -5px -5px 12px rgba(0,0,0,0.3); */
    transition: 0.3s;
    text-decoration: none;
}

.btn-glass:hover {
    box-shadow: inset 5px 5px 12px rgba(0,0,0,0.3),
                inset -5px -5px 12px rgba(255,255,255,0.1);
}
      /* Page Header */
      .page-header {
        padding: 120px 0 60px;
        background: #f8f9fa;
      }

      /* Section Padding */
      .section-padding {
        padding: 80px 0;
      }

      /* Navbar Logo */
      .angel-logo {
        height: 30px;
        margin-right: 8px;
      }

      /* Project Card */
      .project-card {
        border-radius: 16px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        overflow: hidden;
      }

      .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
      }

      /* Project Image Wrapper */
      .project-image-wrapper {
        position: relative;
        width: 100%;
        height: 320px;
        overflow: hidden;
        background: #f5f5f5;
      }

      /* Project Image */
      .project-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
      }

      /* Hover Zoom */
      .project-card:hover .project-img {
        transform: scale(1.08);
      }

      /* Overlay */
      .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.15),
          rgba(0, 0, 0, 0.65)
        );
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      .project-card:hover .image-overlay {
        opacity: 1;
      }

      /* View Gallery Button */
      .view-gallery {
        background: #00c853;
        color: #fff;
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
        transform: translateY(20px);
        transition: all 0.4s ease;
      }

      .project-card:hover .view-gallery {
        transform: translateY(0);
      }

      /* Project Info */
      .project-info li {
        font-size: 15px;
        margin-bottom: 5px;
        color: #555;
      }

      /* Modal Image */
      .modal-content img {
        max-height: 75vh;
        object-fit: contain;
        background: #000;
      }

      /* Mobile */
      @media (max-width: 768px) {
        .project-image-wrapper {
          height: 240px;
        }

        .image-overlay {
          opacity: 1;
        }
      }