/* Force white background - HIGHEST PRIORITY */
html, body {
    background-color: white !important;
    background: white !important;
}

/* Custom styles to complement Bootstrap */

/* Custom color variables */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

/* Smooth transitions */
* {
    transition: all 0.2s ease-in-out;
}

/* Custom hover effects for cards */
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Custom button hover effects */
.btn-outline-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* Custom social link hover effects */
.fab, .fas {
    transition: transform 0.2s ease;
}

.fab:hover, .fas:hover {
    transform: scale(1.1);
}

/* Custom profile image styling */
.rounded-circle {
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Custom badge styling */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Custom expertise icons */
.expertise-item i {
    transition: transform 0.3s ease;
}

.expertise-item:hover i {
    transform: scale(1.1);
}

/* Custom experience timeline styling */
.experience-item {
    transition: all 0.3s ease;
}

.experience-item:hover {
    background-color: #e9ecef !important;
    transform: translateX(5px);
}

/* Custom certification styling */
.cert-item {
    transition: all 0.3s ease;
}

.cert-item:hover {
    background-color: #e9ecef !important;
    transform: translateX(5px);
}

/* Custom navigation link styling */
.nav a {
    transition: all 0.3s ease;
}

.nav a:hover {
    transform: translateY(-2px);
}

/* Custom footer styling */
footer a:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .fs-5 {
        font-size: 1rem !important;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .card-body {
        padding: 1rem !important;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Custom selection color */
::selection {
    background-color: rgba(13, 110, 253, 0.2);
    color: #000;
}



/* Inter font for projects and about pages */
.projects-page,
.about-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.projects-page h1,
.projects-page h2,
.projects-page h3,
.projects-page h4,
.projects-page h5,
.projects-page h6,
.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4,
.about-page h5,
.about-page h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
} 