/* Muscat Apps Custom Styles */

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

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

html {
    scroll-behavior: smooth;
}

/* Logo Text Styling */
.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.26px;
    text-align: center;
    color: #FF5722;
}

/* Hero Section Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #FEF7F0 0%, #FFF5EE 30%, #FFFFFF 70%, #FFFFFF 100%);
    position: relative;
}


/* Hero Badge - Matching exact design colors */
.hero-badge {
    background: linear-gradient(135deg, #FEEEE4 0%, #FFE4D6 50%, #FFDCC8 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.1);
}

/* Stats Card Animation */
.stats-card {
    animation: slideUp 0.8s ease-out 0.3s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF5722;
    border-radius: 5px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Grayscale */
.grayscale {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Navigation Active State */
nav a.text-primary {
    position: relative;
}

/* Button Hover Effects */
.shadow-lg.shadow-orange-200 {
    box-shadow: 0 10px 25px -5px rgba(255, 87, 34, 0.25);
}

/* Development Process Section Gradient */
.process-gradient {
    background: linear-gradient(135deg, #FEF7F0 0%, #FFF5EE 30%, #FFEEE4 60%, #FFE8DC 100%);
}

/* Stats Section Gradient */
.stats-gradient {
    background: linear-gradient(135deg, #7F1D1D 0%, #991B1B 30%, #7F1D1D 70%, #450A0A 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-text {
        font-size: 18px;
    }

    .hero-gradient::before {
        display: none;
    }
}
