html,
body {
    scroll-behavior: smooth !important;
}


/* ==================== about.html ==================== */

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.gradient-text {
    background: linear-gradient(135deg, #004ac6 0%, #007b6e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: linear-gradient(135deg, #004ac6 0%, #007b6e 100%);
    color: #ffffff;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 74, 198, 0.2), 0 2px 4px -1px rgba(0, 74, 198, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 74, 198, 0.3), 0 4px 6px -2px rgba(0, 74, 198, 0.15);
}


/* ==================== contact.html ==================== */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.bg-grid-pattern {
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(0, 74, 198, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 74, 198, 0.05) 1px, transparent 1px);
}

.ambient-shadow {
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
}

.glass-panel {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* ==================== index(1).html ==================== */

.hero-gradient {
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(0, 74, 198, 0.05) 0%, transparent 40%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04);
}

.hover-lift {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
}


/* ==================== projects.html ==================== */
.bg-grid-pattern {
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}


/* ==================== services.html ==================== */

body {
    background-color: #F8FAFC;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.btn-primary {
    background: linear-gradient(135deg, #004ac6, #007b6e);
    color: white;
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 74, 198, 0.3);
}

.card-shadow {
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}


/* ========================================
   MOBILE MENU
======================================== */

.mobile-menu {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(195, 198, 215, 0.3);
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}

/* OPEN */
.mobile-menu.open {
    max-height: 500px;
    opacity: 1;
}

/* Menu */
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 4px;
}

/* Links */
.mobile-menu-inner a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: #434655;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.mobile-menu-inner a:hover {
    background: #f2f4f6;
    color: #004ac6;
}

/* Get Started */
.mobile-menu-inner .mobile-get-started {
    margin-top: 8px;
    background: linear-gradient(135deg,
            #004ac6,
            #007b6e);

    color: #ffffff;
    text-align: center;
    font-weight: 600;
}

/* Desktop */
@media (min-width: 768px) {

    .mobile-menu {
        display: none;
    }

}

/* ========================================
   QUOTE MODAL
======================================== */

.quote-modal-overlay {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

.quote-modal-overlay.active .quote-modal-card {
    transform: scale(1) !important;
}

/* ========================================
   PRICING MODAL
======================================== */

.pricing-modal-overlay {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

.pricing-modal-overlay.active .pricing-modal-card {
    transform: scale(1) !important;
}