/* Custom Styles */

:root {
    --primary-color: #0d6efd;
    --primary-dark: #0056b3;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --accent-color: #ffc107;
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    overflow-y: auto;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    width: 100%;
}

#footer-container {
    margin-top: auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

#header-container {
    position: relative;
    z-index: 20;
}

/* Navigation Styling */
.nav-link-custom {
    position: relative;
    color: white !important;
    font-weight: 500;
    margin-left: 1rem;
    margin-right: 1rem;
    transition: var(--transition);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link-custom:hover {
    transform: translateY(-2px);
    color: var(--accent-color) !important;
}

.nav-link-custom:hover::after {
    width: 100%;
}

.nav-link-custom.active,
.nav-link-custom.active::after {
    color: var(--accent-color) !important;
    width: 100%;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(13, 110, 253, 0.8);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: slideInDown 0.6s ease-out;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
    animation: slideInDown 0.6s ease-out 0.1s both;
}

.hero-section .btn {
    position: relative;
    z-index: 1;
}

/* Card Styling */
.card {
    border: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-radius: 12px;
    background: white;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    transition: var(--transition);
}

.card:hover .card-title {
    color: var(--accent-color);
}

/* Insurance Card */
.insurance-card {
    border-left: 5px solid var(--primary-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.insurance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 50%;
    transition: var(--transition);
}

.insurance-card h5 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.insurance-card p {
    color: #666;
    position: relative;
    z-index: 1;
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-color);
}

/* Section Heading */
.section-heading {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
    animation: expandWidth 0.6s ease-out;
}

/* Insurance Icon */
.insurance-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.insurance-icon i {
    transition: var(--transition);
}



.insurance-card:hover .insurance-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
}

/* Button Styling */
.btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-warning {
    background-color: #ffc107;
    border: none;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #ffb800;
    transform: translateY(-2px);
    color: #000;
}

/* Contact Form */
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.8rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-info-card:hover i {
    color: var(--accent-color);
    transform: scale(1.15) rotate(15deg);
}

.contact-info-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

/* About Page */
.about-heading {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.about-content {
    animation: slideInLeft 0.6s ease-out;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-list li {
    margin-bottom: 1rem;
    color: #555;
    font-weight: 500;
    transition: var(--transition);
}

.about-list li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.about-list i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-weight: 700;
}

/* Tabs */
.nav-tabs .nav-link {
    color: #666;
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
    background: transparent;
}

/* Table */
table {
    margin-top: 2rem;
}

tbody tr:hover {
    background-color: #f0f7ff;
    transition: var(--transition);
}

td {
    vertical-align: middle;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .insurance-icon {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .nav-link-custom {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        font-size: 0.95rem;
    }
}

/* Footer Styling */
footer {
    width: 100%;
}

footer .text-muted {
    color: #ccc !important;
    font-weight: 500;
}

footer a.text-muted {
    color: #ccc !important;
}

footer a.text-muted:hover {
    color: #ffc107 !important;
    text-decoration: underline;
}

footer p.text-muted {
    color: #b0b0b0 !important;
    font-weight: 400;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: #003da5;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 61, 165, 0.4);
    outline: none;
    padding: 0;
}

.scroll-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.scroll-to-top:hover {
    background: #002d7a;
    box-shadow: 0 15px 40px rgba(0, 61, 165, 0.6);
    transform: translateY(-5px) scale(1.1);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}
.nav-link-custom {
    position: relative;
    color: white !important;
    font-weight: 500;
    margin-left: 1rem;
    margin-right: 1rem;
    transition: var(--transition);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link-custom:hover {
    transform: translateY(-2px);
    color: var(--accent-color) !important;
}

.nav-link-custom:hover::after {
    width: 100%;
}

.nav-link-custom.active,
.nav-link-custom.active::after {
    color: var(--accent-color) !important;
    width: 100%;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    animation: slideInDown 0.8s ease-out;
    letter-spacing: -1px;
}

.hero-section p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: slideInUp 0.8s ease-out 0.2s both;
    font-weight: 300;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-radius: 12px;
    background: white;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    transition: var(--transition);
}

.card:hover .card-title {
    color: var(--accent-color);
}

/* Insurance Card */
.insurance-card {
    border-left: 5px solid var(--primary-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.insurance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 50%;
    transitvar(--primary-color);
    font-weight: 800;
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
    animation: expandWidth 0.6s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.insurance-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.insurance-card:hover .insurance-icon {
    color: var(--accent-color);
    transform: scale(1.1) rotate(10deg);
}

/* Section Headings */
.section-heading {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-b {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: var(--transition);
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    background: #f0f4ff;
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    transition: var(--transition);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-color);
}.5rem;
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.contact-info-card:hover::before {
    top: -20%;
    right: -20%;
    opacity: 0.1;
}

.contact-info-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-info-card:hover i {
    color: var(--accent-color);
    transform: scale(1.15) rotate(15deg);
}

.contact-info-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    z-index: 1
.about-list li {
    margin-bottom: 1rem;
    color: #555;
    font-weight: 500;
    transition: var(--transition);
}

.about-list li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.about-list i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-weight: 700Y(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(-1px

.btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-content {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.about-content h4 {
    color: #0d6efd;
    margin-bottom: 1rem;
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(13, 110, 253, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(13, 110, 253, 0.6);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite

.about-list li {
    margin-bottom: 0.8rem;
    color: #555;
}

.about-list i {
    color: #0d6efd;
    margin-right: 0.5rem;
}

/* Contact Info Cards */
.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.contact-info-card h5 {
    color: #0d6efd;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Footer Adjustments */
footer {
    margin-top: auto;
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: var(--accent-color) !important;
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .insurance-card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }

    .about-content {
        padding: 2rem;
    }

    .nav-link-custom {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .contact-info-card {
        margin-bottom: 1.5rem;
    }
    
    .table {
        font-size: 0.9rem;
    }
}

/* Additional hover effects for tables */
.table-hover tbody tr {
    transition: var(--transition);
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
    transform: scale(1.01);
}

.table-primary {
    background-color: linear-gradient(90deg, #0d6efd 0%, #0056b3 100%) !important;
}

/* Button Styles */
.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ffb700 0%, #f57c00 100%);
}

.btn-outline-light {
    border: 2px solid white;
    transition: var(--transition);
}

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

/* Alert Animations */
.alert {
    animation: slideInUp 0.5s ease-out;
    border-radius: 8px;
    border: none;
}

/* Nav tabs enhancement */
.nav-tabs {
    border-bottom: 2px solid #e9ecef;
}

.nav-tabs .nav-link {
    color: #666;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    transition: var(--transition);
    padding: 1rem 1.5rem;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: transparent;
    border-bottom-color: var(--primary-color);
    box-shadow: 0 2px 0 var(--primary-color);
}

/* Tab pane animations */
.tab-pane {
    animation: fadeInUp 0.5s ease-out;
}

/* Professional shadow effects */
.shadow-professional {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Badge styles */
.badge {
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    transition: var(--transition);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}