/* O2 Dijital - Main CSS
 * No build required - works directly on cPanel servers
 * Includes Tailwind-like utilities for Laravel Blade templates
 */

/* ========================================
   CSS Variables & Base Styles
   ======================================== */
:root {
    --color-primary: #3B82F6;
    --color-secondary: #8B5CF6;
    --color-success: #10B981;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #ffffff;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

.font-sans { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ========================================
   Colors
   ======================================== */
.text-white { color: #ffffff; }
.text-gray-400 { color: #9CA3AF; }
.text-gray-500 { color: #6B7280; }
.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }
.text-blue-600 { color: #2563EB; }
.text-green-500 { color: #10B981; }
.text-green-600 { color: #059669; }
.text-green-700 { color: #047857; }
.text-purple-600 { color: #9333EA; }
.text-orange-600 { color: #EA580C; }
.text-pink-600 { color: #DB2777; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #F9FAFB; }
.bg-gray-100 { background-color: #F3F4F6; }
.bg-gray-800 { background-color: #1F2937; }
.bg-gray-900 { background-color: #111827; }
.bg-blue-100 { background-color: #DBEAFE; }
.bg-green-100 { background-color: #D1FAE5; }
.bg-purple-100 { background-color: #EDE9FE; }
.bg-orange-100 { background-color: #FFEDD5; }
.bg-pink-100 { background-color: #FCE7F3; }

.border-gray-100 { border-color: #F3F4F6; }
.border-gray-200 { border-color: #E5E7EB; }
.border-gray-300 { border-color: #D1D5DB; }
.border-gray-700 { border-color: #374151; }
.border-gray-800 { border-color: #1F2937; }

/* Gradient Backgrounds */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }

.from-blue-50 { --tw-gradient-from: #EFF6FF; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-blue-400 { --tw-gradient-from: #60A5FA; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-blue-500 { --tw-gradient-from: #3B82F6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-blue-600 { --tw-gradient-from: #2563EB; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-green-400 { --tw-gradient-from: #4ADE80; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-purple-400 { --tw-gradient-from: #A78BFA; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-gray-900 { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }

.via-white { --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, transparent); }

.to-blue-400 { --tw-gradient-to: #60A5FA; }
.to-purple-50 { --tw-gradient-to: #FAF5FF; }
.to-purple-400 { --tw-gradient-to: #A78BFA; }
.to-purple-500 { --tw-gradient-to: #8B5CF6; }
.to-purple-600 { --tw-gradient-to: #9333EA; }
.to-pink-400 { --tw-gradient-to: #F472B6; }
.to-gray-800 { --tw-gradient-to: #1F2937; }

.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { color: transparent; }

/* ========================================
   Layout & Container
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

.min-h-screen { min-height: 100vh; }

/* ========================================
   Flexbox & Grid
   ======================================== */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.grid { display: grid; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }

.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }

.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }

/* ========================================
   Spacing
   ======================================== */
.p-2 { padding: 0.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }
.pr-4 { padding-right: 1rem; }

.m-0 { margin: 0; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 0.5rem; }
.ml-6 { margin-left: 1.5rem; }
.ml-8 { margin-left: 2rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.-left-6 { left: -1.5rem; }

/* ========================================
   Sizing
   ======================================== */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-96 { height: 24rem; }

/* ========================================
   Borders
   ======================================== */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-l-2 { border-left-width: 2px; }
.border-blue-200 { border-color: #BFDBFE; }
.border-blue-500 { border-color: #3B82F6; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ========================================
   Effects & Transforms
   ======================================== */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

.opacity-60 { opacity: 0.6; }

.blur-3xl { filter: blur(64px); }

.overflow-hidden { overflow: hidden; }

.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-x-1\/2 { --tw-translate-x: -50%; transform: translateX(-50%); }
.-translate-y-0\.5 { --tw-translate-y: -0.125rem; transform: translateY(-0.125rem); }
.-translate-y-1 { --tw-translate-y: -0.25rem; transform: translateY(-0.25rem); }

.resize-none { resize: none; }

/* ========================================
   Positioning
   ======================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.bottom-10 { bottom: 2.5rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.top-1\/4 { top: 25%; }
.bottom-1\/4 { bottom: 25%; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* ========================================
   Filters
   ======================================== */
.grayscale { filter: grayscale(100%); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }

/* ========================================
   Buttons & Interactive
   ======================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

/* ========================================
   Cards
   ======================================== */
.card {
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Glassmorphism
   ======================================== */
.glass,
.bg-white\/80 {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ========================================
   Gradient Text
   ======================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Form Elements
   ======================================== */
input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--color-primary); }
.focus\:ring-blue-500:focus { box-shadow: 0 0 0 2px #3B82F6; }
.focus\:border-blue-500:focus { border-color: #3B82F6; }

/* ========================================
   Group & Hover Effects
   ======================================== */
.group:hover .group-hover\:grayscale-0 { filter: grayscale(0); }

.hover\:text-blue-600:hover { color: #2563EB; }
.hover\:text-green-600:hover { color: #059669; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:bg-gray-50:hover { background-color: #F9FAFB; }
.hover\:bg-gray-200:hover { background-color: #E5E7EB; }
.hover\:bg-gray-900:hover { background-color: #111827; }
.hover\:bg-blue-100:hover { background-color: #DBEAFE; }
.hover\:bg-pink-100:hover { background-color: #FCE7F3; }
.hover\:text-blue-600:hover { color: #2563EB; }
.hover\:text-pink-600:hover { color: #DB2777; }
.hover\:border-blue-200:hover { border-color: #BFDBFE; }
.hover\:border-blue-500:hover { border-color: #3B82F6; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:grayscale-0:hover { filter: grayscale(0); }

/* bg-gray-750 doesn't exist in Tailwind, it's between 700 and 800 */
.bg-gray-750, .hover\:bg-gray-750:hover { background-color: #293548; }

/* ========================================
   Responsive - Tablet (md: 768px)
   ======================================== */
@media (min-width: 768px) {
    .md\:hidden { display: none; }
    .md\:flex { display: flex; }
    .md\:block { display: block; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:gap-16 { gap: 4rem; }
    .md\:p-12 { padding: 3rem; }
    .md\:h-12 { height: 3rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
}

/* ========================================
   Responsive - Desktop (lg: 1024px)
   ======================================== */
@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:text-7xl { font-size: 4.5rem; }
}

/* ========================================
   Responsive - Small (sm: 640px)
   ======================================== */
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:text-xl { font-size: 1.25rem; }
    .sm\:text-4xl { font-size: 2.25rem; }
    .sm\:text-5xl { font-size: 3rem; }
    .sm\:w-auto { width: auto; }
    .sm\:min-w-\[300px\] { min-width: 300px; }
}

/* ========================================
   Responsive - Container
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ========================================
   List Styles
   ======================================== */
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }

/* ========================================
   Shrink
   ======================================== */
.shrink-0 { flex-shrink: 0; }

/* ========================================
   Patch: Missing utilities used in Blade
   ======================================== */

/* Opacity background helpers (Tailwind-like) */
.bg-blue-400\/20 { background-color: rgba(96, 165, 250, 0.2); }
.bg-purple-400\/20 { background-color: rgba(192, 132, 252, 0.2); }

/* Quarter positioning */
.top-1\/4 { top: 25%; }
.bottom-1\/4 { bottom: 25%; }
.left-1\/2 { left: 50%; }

/* Transforms */
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Padding */
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }

/* Text color */
.text-blue-100 { color: #DBEAFE; }

/* Form focus ring (simple) */
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); }
.focus\:ring-blue-500:focus { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); }
.focus\:border-blue-500:focus { border-color: #3B82F6; outline: none; }

/* Group helper (enables group-hover selectors if present) */
.group {}

/* Ensure motion classes never affect layout if CSS missing */
.motion-bounce, .motion-button, .motion-card, .motion-delay-100, .motion-delay-200,
.motion-fade-down, .motion-fade-up, .motion-float, .motion-float-delayed,
.stagger-container, .stagger-item, .nav-link, .no-js {}

/* Sm arbitrary min-width (already present in file for sm:min-w-[300px] but keep safe)
   Note: CSS extractor may miss escaped selectors; your file already has it. */

/* ========================================
   Patch: Guaranteed missing utilities (escaped correctly)
   ======================================== */

/* Position with fractions */
.top-1\/4 { top: 25%; }
.bottom-1\/4 { bottom: 25%; }
.left-1\/2 { left: 50%; }

/* Transforms */
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Opacity backgrounds */
.bg-blue-400\/20 { background-color: rgba(96, 165, 250, 0.2); }
.bg-purple-400\/20 { background-color: rgba(192, 132, 252, 0.2); }

/* Padding fractional */
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }

/* Focus helpers */
.focus\:border-blue-500:focus { border-color: #3B82F6; outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); }
.focus\:ring-blue-500:focus { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); }

/* Hover helpers */
.hover\:bg-gray-750:hover { background-color: #293548; }
.hover\:border-blue-200:hover { border-color: #BFDBFE; }
.hover\:border-blue-500:hover { border-color: #3B82F6; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.hover\:text-blue-600:hover { color: #2563EB; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }

/* sm arbitrary */
@media (min-width: 640px) {
  .sm\:min-w-\[300px\] { min-width: 300px; }
}

/* ========================================
   Premium Polish: Nav + Cards + Buttons
   ======================================== */

/* Header helper used by JS */
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }

/* Nav links */
.nav-link{
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}
.nav-link:hover::after{ width:100%; }

/* Motion cards (base feel even if JS fails) */
.motion-card{
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.06), 0 4px 6px -4px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}
.motion-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.10), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* Motion buttons (nice baseline) */
.motion-button{
  transition: transform .2s ease, box-shadow .2s ease;
}
.motion-button:hover{
  transform: translateY(-2px);
}

/* Form inputs baseline (if utilities are thin) */
input[type="text"], input[type="email"], input[type="tel"], textarea, select{
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  transition: box-shadow .2s ease, border-color .2s ease;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus{
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
  outline: none;
}
