.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.tech-badge {
    transition: all 0.3s ease;
}
.tech-badge:hover {
    transform: scale(1.05);
}
.process-step {
    position: relative;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 100%;
    width: 100%;
    height: 2px;
    background: #3B82F6;
    z-index: -1;
}
@media (max-width: 768px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}
.fade-in {
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animation-delay-2000 {
    animation-delay: 2s;
}
.animation-delay-4000 {
    animation-delay: 4s;
}
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}
.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}
.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}
.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}
.bg-white\/50 {
    background-color: rgba(255, 255, 255, 0.5);
}
.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Form Notifications */
.notification {
    max-width: 400px;
    word-wrap: break-word;
}

/* Blog Styles */
.blog-posts {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.post-preview {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.post-preview h2 {
    margin-bottom: 10px;
}

.post-preview .meta {
    color: #666;
    font-size: 0.9em;
}

.post-preview .excerpt {
    margin: 10px 0;
}

.read-more {
    color: #007bff;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.blog-post .meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.blog-post .content {
    line-height: 1.6;
}

/* Admin Styles */
.login-form, .post-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.login-form label, .post-form label {
    display: block;
    margin-bottom: 5px;
}

.login-form input, .post-form input, .post-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.posts-table {
    width: 100%;
    border-collapse: collapse;
}

.posts-table th, .posts-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.posts-table th {
    background-color: #f2f2f2;
}

.error {
    color: red;
}

/* Blog Styles */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Prose styling for blog content */
.prose {
    color: #374151;
    max-width: none;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: #111827;
    font-weight: 600;
    line-height: 1.25;
    margin-top: 2em;
    margin-bottom: 1em;
}

.prose h1 {
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: 0.8888889em;
}

.prose h2 {
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
}

.prose h3 {
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    line-height: 1.75;
}

.prose ul, .prose ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}

.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.prose blockquote {
    font-weight: 500;
    font-style: italic;
    color: #374151;
    border-left-width: 0.25rem;
    border-left-color: #3B82F6;
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-left: 1em;
}

.prose code {
    color: #111827;
    font-weight: 600;
    font-size: 0.875em;
}

.prose code::before,
.prose code::after {
    content: "`";
}

.prose pre {
    color: #e5e7eb;
    background-color: #1f2937;
    overflow-x: auto;
    font-size: 0.875em;
    line-height: 1.7142857;
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
    border-radius: 0.375rem;
    padding-top: 0.8571429em;
    padding-right: 1.1428571em;
    padding-bottom: 0.8571429em;
    padding-left: 1.1428571em;
}

.prose pre code {
    background-color: transparent;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
}

.prose pre code::before,
.prose pre code::after {
    content: none;
}

.prose img {
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 0.375rem;
}

.prose a {
    color: #3B82F6;
    text-decoration: underline;
    font-weight: 500;
}

.prose a:hover {
    color: #1D4ED8;
}

/* Sidebar animations */
.sidebar-widget {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Tag hover effects */
.tag-link {
    transition: all 0.3s ease;
}

.tag-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Search input focus */
.search-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    border-color: #3B82F6;
}

/* Newsletter form */
.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

/* Admin Sidebar Styles */
.admin-sidebar {
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.admin-sidebar-link {
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    margin: 0 0.5rem;
}

.admin-sidebar-link:hover {
    background-color: #374151;
    color: #ffffff;
}

.admin-sidebar-link.active {
    background-color: #2563eb;
    color: #ffffff;
}

.admin-sidebar-link.active::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background-color: #ffffff;
    border-radius: 2px 0 0 2px;
}

.logo
{
    width: 70px;
}
/* Mobile sidebar overlay */
@media (max-width: 1023px) {
    .admin-sidebar-mobile {
        transform: translateX(-100%);
    }

    .admin-sidebar-mobile.open {
        transform: translateX(0);
    }
}

/* Admin content adjustments */
.admin-content {
    transition: margin-left 0.3s ease;
}

/* Form improvements for admin */
.admin-form .form-section {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-form .form-section h3 {
    color: #374151;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.admin-form .form-section h3 i {
    margin-right: 0.5rem;
    color: #6b7280;
}

/* Stats cards improvements */
.stats-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Table improvements */
.admin-table {
    border-collapse: separate;
    border-spacing: 0;
}

.admin-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border: none;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.admin-table tbody tr:hover {
    background-color: #f9fafb;
}

/* Action buttons */
.action-btn {
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.action-btn.edit {
    background-color: #3b82f6;
    color: white;
}

.action-btn.edit:hover {
    background-color: #2563eb;
}

.action-btn.delete {
    background-color: #ef4444;
    color: white;
}

.action-btn.delete:hover {
    background-color: #dc2626;
}

.action-btn.view {
    background-color: #10b981;
    color: white;
}

.action-btn.view:hover {
    background-color: #059669;
}