@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --premium-primary: #1a237e;
    --premium-secondary: #0277bd;
    --premium-accent: #00d2ff;
    --premium-gradient: linear-gradient(135deg, #1a237e 0%, #0277bd 100%);
    --premium-glass: rgba(255, 255, 255, 0.8);
    --premium-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    background-color: #f8fafc;
}

h1,
h2,
h3,
h4,
h5,
h6,
.alt-font {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600;
}

/* Header Enhancements */
.navbar-default {
    background: var(--premium-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

#nav>li>a {
    font-weight: 500;
    color: var(--premium-primary) !important;
    transition: all 0.3s ease;
}

#nav>li>a:hover {
    color: var(--premium-accent) !important;
}

/* Card & Glassmorphism */
.card,
.primary-shadow {
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    box-shadow: var(--premium-shadow) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    overflow: hidden;
}

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

/* Page Title Section */
.page-title-section {
    padding: 100px 0 !important;
    background: var(--premium-gradient) !important;
    position: relative;
    overflow: hidden;
}

.page-title-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.page-title-section h1 {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn-primary,
.butn-style1 {
    background: var(--premium-gradient) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover,
.butn-style1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4) !important;
}

/* Custom Table Styles */
.comparison-container {
    background: white;
    padding: 30px;
    border-radius: 24px;
    margin: 40px 0;
    border: 1px solid #f1f5f9;
}

.badge-premium {
    background: #fdf2f2;
    color: #ef4444;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Utility */
.text-premium-gradient {
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section Hero Image */
.about-hero-wrapper {
    position: relative;
    display: inline-block;
    padding: 40px;
    z-index: 1;
}

.about-bg-shape {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: var(--premium-gradient);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.15;
    z-index: -1;
    animation: morph 8s ease-in-out infinite;
}

.about-author-img {
    position: relative;
    z-index: 2;
    max-height: 480px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    border-radius: 0 0 20px 20px;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}