/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Typography */
.heading-font {
    font-family: 'Playfair Display', serif;
}

.text-gradient {
    background: linear-gradient(135deg, #010934 0%, #4d4d4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Gradients */
.hero-gradient {
    background: linear-gradient(135deg, #010934 0%, #4d4d4d 100%);
}

.gradient-bg {
    background: linear-gradient(135deg, #010934 0%, #4d4d4d 100%);
}

.gradient-bg-light {
    background: linear-gradient(135deg, rgba(1, 9, 52, 0.1) 0%, rgba(77, 77, 77, 0.1) 100%);
}

/* Card Styles */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-card {
    border-left: 4px solid #010934;
}

.education-card {
    border-left: 4px solid #4d4d4d;
}

/* Gradient Borders */
.gradient-border {
    border-image: linear-gradient(135deg, #010934 0%, #4d4d4d 100%);
    border-image-slice: 1;
}

/* Button Styles */
.gradient-btn {
    background: linear-gradient(135deg, #010934 0%, #4d4d4d 100%);
    color: white;
}

.gradient-btn:hover {
    background: linear-gradient(135deg, #020a3f 0%, #5a5a5a 100%);
}

/* Navigation Styles */
/* Floating navigation styles - HIDDEN AT TOP */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    width: 90%;
    max-width: 700px;
    background: linear-gradient(135deg, #010934 0%, #4d4d4d 100%);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 25px;
    opacity: 0;
    visibility: hidden;
}

.floating-nav.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-nav.scrolled {
    top: 10px;
    background: linear-gradient(135deg, #010934 0%, #4d4d4d 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    padding: 10px 25px;
}

/* Static header - ALWAYS VISIBLE AT TOP */
.static-header {
    background: linear-gradient(135deg, #010934 0%, #4d4d4d 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Section Spacing */
.hero-section {
    padding-top: 20px;
}

/* Slider Styles */
.profile-slide {
    transition: opacity 0.5s ease-in-out;
    pointer-events: none; /* Prevent interaction with slides */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .floating-nav {
        width: 95%;
        padding: 12px 20px;
    }
    
    .hero-section {
        padding-top: 20px;
    }
    
    /* Quick Facts repositioning for mobile */
    .quick-facts-mobile {
        order: 2; /* Moves it below the main content on mobile */
        margin-top: 2rem;
    }
    
    .about-content-mobile {
        order: 1; /* Main content comes first on mobile */
    }
    
    /* Adjust hero section for mobile */
    .hero-buttons-mobile {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons-mobile a {
        width: 100%;
        text-align: center;
    }
}