body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* THE UNIFYING PATTERN: A subtle blueprint grid */
.bg-tech-grid {
    background-color: #f8fafc; /* Slate-50 */
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Shared Button Style to ensure buttons look the same everywhere */
.btn-primary {
    @apply bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded shadow-lg transition transform active:scale-95;
}

/* Hide scrollbar for slider */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* --- CUSTOM LOGO SIZING --- */
.navbar-logo {
    height: 60px; /* Standard size for Mobile */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* On Desktop (Screens wider than 768px) */
@media (min-width: 768px) {
    .navbar-logo {
        height: 140px; /* 3x Bigger on Desktop */
    }
}