@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --mr-font-primary: 'Outfit', sans-serif;
    --mr-color-primary: #0d6efd;
    --mr-color-secondary: #0dcaf0;
    --mr-gradient-primary: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    --mr-gradient-dark: linear-gradient(135deg, #212529 0%, #343a40 100%);
    --mr-shadow-soft: 0 10px 30px rgba(0,0,0,0.1);
    --mr-shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --mr-radius-lg: 20px;
    --mr-radius-md: 12px;
}

body {
    font-family: var(--mr-font-primary) !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--mr-font-primary) !important;
    letter-spacing: -0.5px;
}

/* Modern Header */
.header-nav-wrapper {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Hero Section */
.overlay-theme-colored1-9:before {
    background-color: rgba(13, 110, 253, 0.85) !important; /* Update overlay to be bluer/modern */
    backdrop-filter: blur(3px);
}

/* Glassmorphism Cards */
.tm-sc-services, .icon-box-wrapper, .tm-testimonial, .bg-theme-colored2 {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--mr-radius-lg) !important;
    box-shadow: var(--mr-shadow-soft);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tm-sc-services:hover, .icon-box:hover .icon-box-wrapper {
    transform: translateY(-10px);
    box-shadow: var(--mr-shadow-hover);
    background: rgba(255, 255, 255, 0.9) !important;
}

/* Gradient Text */
.text-theme-colored1, a.text-theme-colored1, .title, .icon-box-title {
    background: var(--mr-gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    background-clip: text;
    color: #212529; /* Fallback */
}

/* Fix for white text on dark backgrounds not being gradient */
.text-white .title, .text-white {
    -webkit-text-fill-color: initial !important; 
    background: none !important;
}

/* Modern Buttons */
.btn {
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    border: none !important;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.btn-dark {
    background: var(--mr-gradient-dark) !important;
}

.btn-theme-colored1, .btn-theme-colored2 {
    background: var(--mr-gradient-primary) !important;
    color: white !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

/* Form Inputs */
.form-control {
    border-radius: var(--mr-radius-md) !important;
    border: 1px solid #e0e0e0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}

.form-control:focus {
    background: #fff;
    border-color: var(--mr-color-primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Specific component tweaks */
.menuzord-menu > li > a {
    border-radius: 50px;
    margin: 0 5px;
}

.menuzord-menu > li.active > a, .menuzord-menu > li:hover > a {
    background: var(--mr-gradient-primary) !important;
    color: white !important;
}
