*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
/* Shared animations moved to css/styles.css */

/* Navigation Styles */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 0;
    height: 0.125rem;
    background-color: #f15a24;
    transition: all 0.3s;
}

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

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: rgba(30, 41, 59, 0.85) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sticky-nav.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.sticky-nav.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

/* Mobile menu styles */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

#mobile-menu.open {
    max-height: 500px;
    display: block;
}

/* Desktop menu should always be visible */
@media (min-width: 768px) {
    #mobile-menu {
        max-height: none;
        overflow: visible;
        display: flex !important;
    }
}

/* Social media icon effects */
.social-icon {
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(241, 90, 36, 0.1);
}

.social-icon:hover {
    background: #f15a24;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 90, 36, 0.3);
}

/* Hover effects for buttons */
.apply-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.apply-btn:hover::before {
    left: 100%;
}

/* Custom colors */
.bg-darkBlue { background-color: #0f172a; } /* Tailwind slate-900 */
.bg-darkGray { background-color: #1e293b; } /* Tailwind slate-800 */
.text-primary { color: #f15a24; }
.bg-primary { background-color: #f15a24; }

/* Blog content styles */
.blog-content {
    line-height: 1.8;
}

.blog-content h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 2rem 0 1rem;
    color: #0f172a;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1.5rem 0 1rem;
    color: #0f172a;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: #374151;
}

.blog-content blockquote {
    border-left: 4px solid #f15a24;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #64748b;
}

.blog-content ul, .blog-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content img {
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

/* Code block styles */
.blog-content pre {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
}

.blog-content code {
    background-color: #f1f5f9;
    color: #f15a24;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
}

/* Author card */
.author-card {
    transition: all 0.3s ease;
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Comment section */
.comment {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Sidebar styles */
.sidebar-widget {
    background: #f8fafc;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.category-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.category-list li:last-child {
    border-bottom: none;
}

.recent-post {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tags span {
    display: inline-block;
    background: #edf2f7;
    padding: 0.4rem 0.8rem;
    border-radius: 0.25rem;
    margin: 0.25rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.tags span:hover {
    background: #f15a24;
    color: white;
    cursor: pointer;
}

/* Share buttons */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook:hover {
    background: #3b5998;
    color: white;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    color: white;
}

.share-btn.link:hover {
    background: #f15a24;
    color: white;
}

/* Footer Animations */
.reveal-up {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s ease;
}

.reveal-up.animate {
opacity: 1;
transform: translateY(0);
}

.social-icon {
transition: all 0.3s ease;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1101;
    text-decoration: none;
    max-width: 220px;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.whatsapp-text {
    overflow: hidden;
    min-width: 100px;
}

.whatsapp-text-inner {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1.3;
}

.whatsapp-text-inner.show-second {
    transform: translateY(-100%);
}

.whatsapp-hint {
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-message {
    font-size: 12px;
    opacity: 0.9;
    white-space: nowrap;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: rotate(20deg) scale(1.1);
}

/* Pulsing animation for attention */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
    }
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    }
}

.whatsapp-btn.pulse {
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

/* Mobile styles */
@media (max-width: 760px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 13px;
        max-width: 150px;
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }
    
    .whatsapp-hint {
        font-size: 11px;
    }
    
    .whatsapp-message {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        bottom: 60px;
        right: 6px;
        padding: 10px 15px;
        font-size: 12px;
        max-width: 120px;
        gap: 8px;
    }
    
    .whatsapp-icon {
        width: 14px;
        height: 14px;
        font-size: 14px;
    }
    
    .whatsapp-hint {
        font-size: 8px;
        color:#c3ff00;
    }
    
    .whatsapp-message {
        font-size: 10px;
    }
}