/* Custom Styles for Enterprise Projects */

/* Global Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--primary-gradient);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Customization */
.navbar.bg-gradient {
    background: var(--primary-gradient) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 5px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 4rem 2rem !important;
}

.hero-content h1 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.hero-section .btn-outline-light {
    border: 2px solid #667eea;
    color: #667eea;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

/* Feature Cards */
.feature-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.feature-card .card-body {
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

/* Technology Badges */
.tech-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.tech-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.tech-badge i {
    font-size: 1.2rem;
}

/* Card Customizations */
.card {
    border: none;
    border-radius: 15px;
}

.card-header.bg-gradient {
    background: var(--primary-gradient) !important;
}

.tech-section .card,
.features-section {
    animation: fadeInUp 0.6s ease;
}

/* About Page Specific */
.card-header {
    font-weight: 600;
    border: none;
}

.list-group-item {
    border-left: none;
    border-right: none;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background: rgba(102, 126, 234, 0.05);
    padding-left: 30px;
}

.list-group-item:first-child {
    border-top: none;
}

.list-group-item:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading State */
.btn {
    transition: all 0.3s ease;
}

.btn:active {
    transform: scale(0.95);
}

/* Code Blocks */
code {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}
