/* Global Utility & Theme Styles */
:root {
    --primary-saffron: #FF671F;
    --primary-green: #138808;
    --royal-blue: #000080;
    --premium-gold: #D4AF37;
    --glass-bg: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.padding-bottom {
    padding-top: 40px;
}

h1,
h2,
h3,
.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.text-gradient-gold {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-orange {
    color: var(--primary-saffron);
}

.text-royal {
    color: var(--royal-blue);
}

.text-primary-saffron {
    color: var(--primary-saffron);
}

.ls-2 {
    letter-spacing: 2px;
}

.fw-extrabold {
    font-weight: 800;
}

.py-5 {
    padding-top: 0 !important;
    padding-bottom: 3rem !important;
}

/* Navbar Styles */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    z-index: 1050;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--royal-blue) !important;
}

.navbar-brand span {
    color: var(--primary-saffron);
}

.nav-link {
    font-weight: 500;
    color: #444 !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-saffron) !important;
}

/* Button & UI Components */
.btn-apply {
    background: var(--primary-saffron);
    color: white;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 103, 31, 0.3);
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 31, 0.4);
    color: white;
}

.p-step {
    width: 40px;
    height: 40px;
    background: var(--primary-saffron);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline {
    position: relative;
}

/* Home Page Specifics */
.floating-img {
    animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-shape-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.category-card {
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.bg-gradient-premium {
    background: linear-gradient(135deg, #fff7ed 0%, #e0f2fe 100%);
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* Categories Page Specifics */
.feat-icon-sm {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-group-item {
    transition: transform 0.2s ease;
}

.list-group-item:hover {
    transform: translateX(5px);
}

/* Form Styles (Apply Page) */
.form-tab {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    min-width: 200px;
    text-align: center;
}

.form-tab.active {
    background: var(--primary-saffron);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 103, 31, 0.2);
}

.form-tab.inactive:hover {
    background: #e9ecef;
    color: var(--primary-saffron);
}

.premium-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.section-title span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--royal-blue);
}

.form-label {
    font-size: 0.9rem;
    color: #444;
}

.form-control:focus,
.form-select:focus {
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(255, 103, 31, 0.1) !important;
    border: 1px solid var(--primary-saffron) !important;
}

.btn-apply-gradient {
    background: linear-gradient(135deg, var(--primary-saffron) 0%, #e65100 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(230, 81, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-apply-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 81, 0, 0.3);
    color: white;
}

.bg-soft-orange {
    background-color: rgba(255, 103, 31, 0.05);
}