
/* Base styles */
:root {
    --primary: #667EEA;
    --secondary: #283663;
    --bg-gradient-start: #F9FAFB;
    --bg-gradient-end: #FFFFFF;
    --indigo-50: #EDEFF8;
    --indigo-100: #DAE0FF;
    --indigo-200: #C2C9F3;
    --indigo-400: #7F7FD5;
    --indigo-500: #6B7280; /* Tailwind default gray */
    --indigo-600: #4F46E5;
    --indigo-700: #3730A3;
    --purple-700: #6D28D9;
    --text-primary: #111827;
    --text-secondary: #4B5563;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation styles */
.navbar {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-link:hover {
    color: #4F46E5 !important;
}

.navbar-link.active {
    border-bottom: 2px solid #4F46E5 !important;
    color: #4F46E5 !important;
    padding-bottom: 8px;
}

/* Hero section gradients */
.hero-gradient {
    background: linear-gradient(135deg, var(--indigo-600), var(--purple-700));
}

/* Card animations */
.card {
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Glassmorphism */
.glassmorphism {
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Button styles */
.primary-btn {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
}
.primary-btn:hover {
    background: linear-gradient(135deg, #3730A3, #612D94);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(79,70,237,0.2);
}
.secondary-btn {
    background: #EDEFF8;
    color: #4F46E5;
    border: 2px solid #D1C4E9;
}
.secondary-btn:hover {
    background: #D1C4E9;
}

/* Icon buttons */
.icon-btn {
    width: 48px;
    height: 48px;
    background: #EDEFF8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.icon-btn:hover {
    background: #D1C4E9;
}

/* Card icons */
.card-icon {
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, #6B7280, #4F46E5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Testimonial avatars */
.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--indigo-200);
    border-radius: 9999px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indigo-800);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Footer styles */
.footer {
    background: #111827;
}
.footer-link:hover {
    color: #6B6BFF !important;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
}

/* Hover effects */
.transition-link:hover {
    color: #4F46E5 !important;
    text-decoration: underline !important;
}

/* Custom shadows */
.shadow-lg {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* Typography */
.text-gradient {
    background: linear-gradient(90deg, #4F46E5, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card layout */
.job-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(79,70,237,0.1);
    border-radius: 16px;
    overflow: hidden;
}
.job-card:hover {
    border-color: rgba(79,70,237,0.5);
    transform: translateY(-2px);
}

/* Benefits grid icons */
.benefit-icon {
    width: 48px;
    height: 48px;
    background: #6B7280;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}
