/* ==========================================================================
   Base Styles — Shared across all pages
   ========================================================================== */

/* Fix horizontal scroll caused by AOS animations on mobile */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Manrope', sans-serif;
    color: #2B2F33;
    overflow-x: hidden;
    width: 100%;
}


/* Glass effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Text gradient */
.text-gradient {
    background: linear-gradient(135deg, #183b4e 0%, #6F8F8B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button hover ripple effect */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
}

.btn-hover-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
}

.btn-hover-effect:hover::after {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
}