
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #1E3A8A;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #D4AF37;
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .gold-gradient-text {
            background: linear-gradient(to right, #D4AF37, #FCD34D, #D4AF37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 3s linear infinite;
        }

        @keyframes shine {
            to {
                background-position: 200% center;
            }
        }

        .service-card:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
            color: #D4AF37;
        }
    

        /* ===== MODAL BACKDROP ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* ===== MODAL CONTENT (SCROLLABLE) ===== */
.modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 650px;
  max-height: 80vh;          /* 👈 Fixed height control */
  overflow-y: auto;          /* 👈 Enables scrolling */
  padding: 30px 25px;
  border-radius: 12px;
  position: relative;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  animation: modalFade 0.3s ease;
}

/* Optional: Custom Scrollbar */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* ===== HEADINGS & TEXT ===== */
.modal-content h2,
.modal-content h3 {
  margin-top: 0;
}

.modal-content p {
  line-height: 1.7;
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

/* ===== CLOSE BUTTON ===== */
.close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  transition: 0.2s ease;
}

.close:hover {
  color: #000;
  transform: scale(1.1);
}

/* ===== ANIMATION ===== */
@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}