/* ========================================
   Custom Frontend Styles
   ======================================== */

/* Magnific Popup customization */
.mfp-bg {
    background: #000;
    opacity: 0.9;
}

.mfp-iframe-holder .mfp-content {
    max-width: 900px;
}

/* Add your custom CSS here */

/* Sticky Header Styles */
.navbar-main {
    transition: all 0.3s ease-in-out;
    background: transparent;
    padding: 20px 0;
}

.navbar-shrink {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000; /* Dark background as per theme */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.35s ease-out;
    padding: 10px 0; /* Shrink padding */
}
.btn--base-two{
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
 @keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(218, 255, 72, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(218, 255, 72, 0);
    }
}



/* You can override Bootstrap or add new styles */
