@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Tajawal:wght@400;500;700&display=swap');

:root {
    --primary-navy: #0B1F3A;
    --primary-orange: #F47B20;
    --bg-light: #F2F2F2;
    --text-navy: #0B1F3A;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-navy);
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-cairo {
    font-family: 'Cairo', sans-serif;
}

/* Custom Utilities */
.bg-navy {
    background-color: var(--primary-navy);
}

.bg-orange {
    background-color: var(--primary-orange);
}

.text-navy {
    color: var(--primary-navy);
}

.text-orange {
    color: var(--primary-orange);
}

.border-navy {
    border-color: var(--primary-navy);
}

.border-orange {
    border-color: var(--primary-orange);
}

.hover\:bg-navy:hover {
    background-color: var(--primary-navy);
}

.hover\:bg-orange:hover {
    background-color: var(--primary-orange);
}

.hover\:text-orange:hover {
    color: var(--primary-orange);
}

/* SVG Icon Styles */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: -0.125em;
}

.icon-sm {
    width: 0.875em;
    height: 0.875em;
}

.icon-md {
    width: 1.25em;
    height: 1.25em;
}

.icon-lg {
    width: 1.5em;
    height: 1.5em;
}

.icon-xl {
    width: 2em;
    height: 2em;
}

/* Designer Credit & Social Styles */
.designer-section {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.designer-credit {
    background: linear-gradient(90deg, #F47B20, #0B1F3A, #F47B20, #ffffff);
    background-size: 300% auto;
    color: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    font-weight: 700;
}

@keyframes shine {
    to {
        background-position: 300% center;
    }
}

.btn-floating {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.btn-floating:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(244, 123, 32, 0.3);
    border-color: #F47B20;
    color: #F47B20;
    background: rgba(244, 123, 32, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism & Stats Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 45px 0 rgba(244, 123, 32, 0.15);
    border-color: rgba(244, 123, 32, 0.3);
}

.stat-icon-wrapper {
    position: relative;
    display: inline-flex;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    background: rgba(244, 123, 32, 0.1);
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.glass-card:hover .stat-icon-wrapper {
    background: var(--primary-orange);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.stats-gradient-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.stats-gradient-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 123, 32, 0.05) 0%, transparent 70%);
    animation: rotateGradient 15s linear infinite;
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}