:root {
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #a855f7;
    --accent: #f43f5e;
    --bg-dark: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
}

/* Advanced Hero Background */
.hero-canvas {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
    animation: move 20s infinite alternate;
}

@keyframes move {
    from {
        transform: translate(-10%, -10%);
    }

    to {
        transform: translate(10%, 10%);
    }
}

/* Premium Navigation */
.glass-nav {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: 0.3s;
}

/* Search Box Advanced */
.advanced-search-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 8px;
    margin-top: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.search-input-group {
    background: transparent;
    border: none;
    color: white;
    padding: 15px 25px;
    font-size: 1.1rem;
    width: 100%;
}

.search-input-group:focus {
    outline: none;
}

/* Trending Tags */
.trending-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
    transition: 0.3s;
    cursor: pointer;
    margin: 5px;
    display: inline-block;
}

.trending-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Stats Section */
.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* Category Grid */
.category-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-15px);
    border-color: var(--primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: 0.3s;
}

/* Job Cards Modern Grid */
.job-grid-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 30px;
    height: 100%;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.job-grid-card:hover {
    border-color: var(--primary);
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.2);
}

.company-logo-square {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    border: 1px solid var(--glass-border);
}

.job-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-card-meta {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 25px;
}

/* Ticker Animation */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.ticker {
    display: flex;
    width: fit-content;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    padding: 0 50px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.ticker-item i {
    color: var(--primary);
    opacity: 0.5;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Steps Section */
.step-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Testimonials */
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    margin: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    padding: 3px;
    margin-bottom: 20px;
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    opacity: 0.1;
    color: var(--primary);
}

/* Floating Action Button */
.fab-support {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: 0.3s;
}

.fab-support:hover {
    transform: scale(1.1) rotate(15deg);
    background: var(--secondary);
}

.job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.salary-badge {
    color: #22c55e;
    font-weight: 700;
    font-size: 0.9rem;
}

.premium-job-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 25px;
    margin-bottom: 20px;
    transition: 0.3s;
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.premium-job-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

.company-logo-placeholder {
    width: 65px;
    height: 65px;
    background: #1e293b;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
}

.newsletter-box {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.2s;
}

.footer-link:hover {
    color: var(--primary);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.job-skeleton-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 20px;
}

/* Filter Sidebar */
.filter-sidebar {
    position: sticky;
    top: 120px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 25px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    color: #94a3b8;
    transition: 0.2s;
    font-size: 0.9rem;
}

.custom-checkbox:hover {
    color: var(--primary);
}

.custom-checkbox input {
    width: 18px;
    height: 18px;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.custom-checkbox input:checked {
    background: var(--primary);
    border-color: var(--primary);
}

/* Quick View Drawer */
.quick-view-drawer {
    position: fixed;
    right: -100%;
    top: 0;
    width: 600px;
    height: 100vh;
    background: #0f172a;
    z-index: 2000;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 50px;
    overflow-y: auto;
    border-left: 1px solid var(--glass-border);
}

.quick-view-drawer.open {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1999;
    display: none;
}

.applied-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Timeline Journey */
.timeline {
    position: relative;
    padding: 50px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--glass-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--primary);
    border: 4px solid var(--bg-dark);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    position: relative;
    border-radius: 24px;
}

/* FAQ Accordion */
.accordion-item {
    background: var(--card-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: transparent !important;
    color: white !important;
    padding: 25px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
}

.accordion-body {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.02);
    padding: 25px !important;
}

/* Final CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)),
        url('https://images.pexels.com/photos/3184296/pexels-photo-3184296.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }
}

/* Premium Blog Grid */
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
}

.blog-footer {
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

/* Featured Blog Post */
.featured-blog {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .featured-blog {
        flex-direction: column;
    }

    .featured-content {
        padding: 40px;
    }

    .featured-img-wrap {
        width: 100% !important;
        height: 300px !important;
    }
}

.featured-content {
    padding: 60px;
    width: 60%;
}

.featured-img-wrap {
    width: 40%;
    height: 100%;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Card Interactions */
.save-article-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
}

.save-article-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Trending Section */
.trending-post-small {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
    transition: 0.3s;
}

.trending-post-small:hover {
    transform: translateX(10px);
}

.trending-img-small {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

/* Contributors */
.contributor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    padding: 2px;
    transition: 0.3s;
}

.contributor-item:hover .contributor-avatar {
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Video Badge */
.video-badge {
    padding: 4px 12px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #94a3b8;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    transition: 0.3s;
    text-decoration: none;
}

.tag-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Writer CTA Card */
.writer-card {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.writer-card h4 {
    font-weight: 800;
    margin-bottom: 20px;
}

/* Contact Specific Premium Styles */
.location-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    transition: 0.3s;
    cursor: pointer;
    height: 100%;
}

.location-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.social-hub-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: 0.4s;
    text-decoration: none;
}

.social-hub-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: rotate(15deg) scale(1.1);
}

.contact-input {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--glass-border) !important;
    color: white !important;
    padding: 18px 25px !important;
    border-radius: 15px !important;
    transition: 0.3s !important;
}

.contact-input:focus {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px var(--primary-glow) !important;
    transform: translateY(-2px);
}

.map-container {
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.quick-contact-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

/* Premium Split Auth */
.auth-section {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: stretch;
    padding-bottom: 50px;
}

.auth-image-side {
    width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    margin: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.auth-image-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.4), transparent);
}

.auth-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-slow 20s infinite alternate;
}

.auth-form-side {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-card-premium {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    animation: auth-slide-up 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.auth-nav-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.auth-nav-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

@keyframes zoom-slow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes auth-slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .auth-image-side {
        display: none;
    }

    .auth-form-side {
        width: 100%;
        padding: 20px;
    }
}

.form-grid-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-grid-auth {
        grid-template-columns: 1fr;
    }
}

/* Cinematic Digital Logo Badge */
.brand-badge-premium {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #0f172a;
}

.brand-badge-img {
    width: 200%;
    height: 200%;
    object-fit: cover;
    position: absolute;
    top: -50%;
    left: -50%;
    filter: brightness(0.8) contrast(1.2);
    animation: rotate-slow 30s linear infinite;
}

.brand-badge-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent);
    mix-blend-mode: overlay;
    z-index: 2;
}

.brand-badge-premium:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

.brand-badge-premium:hover .brand-badge-img {
    filter: brightness(1.1) contrast(1.3);
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.italic {
    font-style: italic;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Premium Uploaded Logo Styling */
.logo-container-premium {
    height: 50px;
    display: flex;
    align-items: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.2));
    transition: 0.4s;
}

.navbar-brand:hover .logo-container-premium {
    transform: scale(1.05);
}

.navbar-brand:hover .main-logo-img {
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5)) brightness(1.1);
}

@media (max-width: 768px) {
    .logo-container-premium {
        height: 40px;
    }
}