        :root {
            /*--primary-color: #6366f1;
            --secondary-color: #818cf8;
            --background: #f8fafc;
            --card-bg: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --accent-purple: #7c3aed;
            --accent-blue: #3b82f6;*/

            --primary-color: #216cb5;
            --secondary-color: #216cb5;
            --background: #f8fafc;
            --card-bg: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --accent-purple: #216cb5;
            --accent-blue: #216cb5;
        }
        html{
            overflow-x: hidden;
        }
        body {
            background: var(--background);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
        }

        main{
            margin-top: 76px;
        }
        .navbar {
            background: rgba(255, 255, 255, 0.8) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
            z-index: 1000;
        }


        .nav-link.active {
            color: var(--primary-color) !important;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 6px;
        }


        
        .nav-link {
            color: #333 !important;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
            margin: 0 1rem;
        }

        /* Sliding border animation */
        .sliding-link {
            position: relative;
            overflow: hidden;
            padding-bottom: 4px;  /* Space for the border */
        }



        .sliding-border {
            position: absolute;
            bottom: 0;
            left: -100%;  /* Start off-screen to the left */
            width: 100%;
            height: 2px;
            background-color: #0d6efd;
            transition: left 0.3s ease;
        }

        .sliding-link:hover .sliding-border {
            left: 0;  /* Slide in from left to right */
        }

        .sliding-link:hover {
            color: #0d6efd !important;
        }

        /* Mobile adjustments */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .nav-link {
                margin: 0.5rem 0;
                padding: 0.5rem 1rem;
            }

            .sliding-border {
                display: none;
            }
        }

        /* Logo and brand styling */
        .logo {
            height: 30px;
            width: auto;
            margin-right: 0.5rem;
        }

        .brand-text {
            font-weight: 500;
            color: #333;
        }

        /*home page*/
        #progress {
            position: relative;
            max-height: 2px;
        }


        /* Video Background */
        .video-background {
            position: relative;
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            margin-top: 60px; /* Offset for navbar height */
        }

        .video-background video {
            position: absolute;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            top: 0;
            left: 0;
            z-index: 0;
            object-fit: cover;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }

       

                /* Hero Section */
        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 20vh;
            text-align: center;
            color: white;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-subtitle a{
            color: white;
            text-decoration: none;
        }

        .hero-subtitle a:hover{
            text-decoration: underline;
        }

        /* Buttons */


        .btn-download
        {
            background: var(--primary-color);
            border: none;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: transform 0.2s;
        }

        .btn-download:hover
        {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .btn-upload{
            padding-top: 12px;
        }

        @media (max-width: 992px) {
            .video-background {
                padding-top: 76px; /* Maintain navbar height offset */
            }
            /* ... (rest of responsive styles remain the same) ... */
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
        }


        /* Main Content Styles */
        .page-header {
            background: white;
            padding: 2rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid #e5e7eb;

            /*background: gray url(/images/bg.png) repeat-x;
            width: 100%;
            min-height: 290px;
            margin: 0;
            animation: slide_bkgnd 13s linear infinite;*/
        }

        .brand-text {
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-blue));
            -webkit-background-clip: text;
            color: transparent;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .logo{
            width: 25px;
            height: 25px;
            margin-right: 5px;
        }
        .main-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }

        .snippet-container {
            background: var(--card-bg);
            border-radius: 24px;
            box-shadow: 0 4px 24px rgba(148, 163, 184, 0.15);
            border: 1px solid rgba(99, 102, 241, 0.1);
            overflow: hidden;
        }

        .image-wrapper {
            position: relative;
            background: #f1f5f9;
            padding: 2rem;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* This is the key part for handling different image sizes */
        .image-container {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
        }

        .snippet-image {
            max-width: 100%;
            max-height: 80vh; /* Prevent images from being too tall */
            height: auto;
            width: auto;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(148, 163, 184, 0.1);
            object-fit: contain; /* Maintain aspect ratio */
        }

        /* Add checkered background for transparency */
        .image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            border-radius: 12px;
            z-index: 0;
        }

        .snippet-image {
            position: relative;
            z-index: 1;
        }

        /* Image size indicator */
        .image-size-indicator {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            font-size: 0.75rem;
            z-index: 2;
        }

        .info-container {
            padding: 2rem;
            background: var(--card-bg);
            border-top: 1px solid rgba(99, 102, 241, 0.1);
        }

        .title {
            color: var(--text-primary);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .action-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-custom-download {
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-blue));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-custom-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
        }

        .btn-custom-action {
            background: #f1f5f9;
            color: var(--text-primary);
            border: 1px solid rgba(99, 102, 241, 0.1);
            padding: 0.8rem 1.2rem;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .btn-custom-action:hover {
            background: #e2e8f0;
            transform: translateY(-2px);
        }

        .meta-info {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(99, 102, 241, 0.1);
            flex-wrap: wrap;
        }

        .meta-info i {
            color: var(--accent-purple);
        }

        .ad-space {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1rem;
            margin: 2rem 0;
            text-align: center;
            border: 1px solid rgba(99, 102, 241, 0.1);
            box-shadow: 0 4px 16px rgba(148, 163, 184, 0.1);
        }

        /* Loading state */
        .image-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        /* Zoom functionality */
        .zoom-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            cursor: zoom-out;
        }

        .zoom-overlay img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90%;
            max-height: 90vh;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .image-wrapper {
                padding: 1rem;
            }
            
            .meta-info {
                gap: 1rem;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .btn-custom-download {
                width: 100%;
            }
            
            .btn-custom-action {
                width: 100%;
            }
        }


    /* Add these new styles to the existing CSS */
    .toast-notification {
        position: fixed;
        bottom: 20px;
        right: 20px;
        padding: 1rem 1.5rem;
        background: var(--text-primary);
        color: white;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transform: translateY(100px);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1100;
    }

    .toast-notification.show {
        transform: translateY(0);
        opacity: 1;
    }

    .share-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1100;
        align-items: center;
        justify-content: center;
    }

    .share-modal.show {
        display: flex;
    }

    .share-modal-content {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        width: 90%;
        max-width: 500px;
        position: relative;
    }

    .share-modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-secondary);
    }

    .share-option {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .share-option:hover {
        background: #f1f5f9;
    }

    .share-option i {
        width: 24px;
        text-align: center;
        color: var(--accent-purple);
    }

    .copy-input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid rgba(99, 102, 241, 0.2);
        border-radius: 8px;
        margin-top: 1rem;
        font-size: 0.9rem;
    }


/* Add these footer styles to your existing CSS */
.footer {
    background: white;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--accent-purple);
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-purple);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--text-primary);
    text-decoration: none;
    margin-right: 1rem;
    transition: all 0.2s ease;
}

.app-badge:hover {
    background: var(--accent-purple);
    color: white;
}

.app-badge i {
    font-size: 1.5rem;
}

.newsletter-input {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
}

.newsletter-input input:focus {
    border-color: var(--accent-purple);
}

.newsletter-input button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-purple);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-input button:hover {
    opacity: 0.9;
}



        /* Stats Section */
        .stats-card {
            text-align: center;
            padding: 1.5rem;
        }

        .stats-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .stats-number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stats-label {
            color: var(--text-secondary);
            font-weight: 500;
        }

        /*ADS*/
        .ad-space {
            margin: 1rem 0;
            transition: all 0.3s ease;
        }

        .ad-space img {
            border-radius: 8px;
            max-width: 100%;
            height: auto;
        }

        @media (max-width: 768px) {
            .ad-space {
                text-align: center;
            }
        }


        /*HOMEPAGE LINKS SECTION*/
                .resources-section {
            padding: 4rem 2rem;
            background: #f8f9fa;
        }

        .resources-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .resource-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
            overflow: hidden;
        }

        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            padding: 1.5rem;
            color: white;
            font-size: 1.25rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .resources .card-header {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
        }

        .integrations .card-header {
            background: linear-gradient(135deg, #7c3aed, #6d28d9);
        }

        .card-content {
            padding: 1.5rem;
        }

        .link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .link-item {
            margin-bottom: 0.75rem;
        }

        .link-item:last-child {
            margin-bottom: 0;
        }

        .resource-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1rem;
            color: #374151;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .resources .resource-link:hover {
            background: #eff6ff;
            color: #2563eb;
        }

        .integrations .resource-link:hover {
            background: #f5f3ff;
            color: #7c3aed;
        }

        .link-text {
            flex: 1;
        }

        .link-icon {
            opacity: 0;
            transition: opacity 0.2s;
        }

        .resource-link:hover .link-icon {
            opacity: 1;
        }

        .view-all {
            display: inline-flex;
            align-items: center;
            margin-top: 1rem;
            color: #2563eb;
            text-decoration: none;
            font-weight: 500;
        }

        .view-all:hover {
            text-decoration: underline;
        }

        .view-all i {
            margin-left: 0.5rem;
        }

        @media (max-width: 768px) {
            .resources-section {
                padding: 2rem 1rem;
            }
        }


        /*Download Page*/
        .download-section {
            padding: 2rem 0;
            background: #f8f9fa;
            margin-top: 76px;
        }

        .download-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
        }

        .download-title {
            font-size: 3.5rem;
            color: #333;
            margin-bottom: 0.5rem;
            font-weight: 300;
        }

        .download-wrapper {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
        }

        .download-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #1a73e8;
            color: white;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-bottom: 0.5rem;
        }

        .download-button:hover {
            background: #1557b0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
        }

        .download-button i {
            margin-left: 0.5rem;
        }

        .download-meta {
            font-size: 0.9rem;
            color: #666;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .meta-divider {
            width: 4px;
            height: 4px;
            background: #666;
            border-radius: 50%;
        }

                .slider-container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto 3rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            background: #1a1a1a; /* Dark background for image container */
        }

        .swiper {
            width: 100%;
            height: 500px;
        }

        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #1a1a1a;
        }

        .slide-content {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-content img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
        }

        .slide-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
            color: white;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: white !important;
            /*background: rgba(0, 0, 0, 0.5);*/
            width: 44px;
            height: 44px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(0, 0, 0, 0.7);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 1.2rem;
        }

        .swiper-pagination {
            position: absolute;
            bottom: 60px !important; /* Move pagination above title */
        }

        .swiper-pagination-bullet {
            background: white;
            opacity: 0.7;
            width: 8px;
            height: 8px;
            margin: 0 6px !important;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            background: #1a73e8;
        }

        .info-text {
            text-align: center;
            color: #666;
            margin: 2rem 0;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .mirror-link {
            color: #1a73e8;
            text-decoration: none;
        }

        .mirror-link:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .download-title {
                font-size: 2.5rem;
            }

            .swiper {
                height: 300px;
            }
        }


        /*Pricing*/
        .pricing-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    transform: scale(1.02);
    border: 2px solid #28a745;
}

.card-content {
    padding: 2rem;
}

.plan-title {
    text-transform: uppercase;
    font-weight: bold;
    color: #6c757d;
    text-align: center;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
}

.period {
    font-size: 1rem;
    color: #6c757d;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 0.5rem;
}

.included i {
    color: #28a745;
}

.not-included {
    color: #6c757d;
}

.not-included i {
    color: #dc3545;
}

.download-button, .buy-button {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.download-button {
    background: #007bff;
    color: white;
}

.buy-button {
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

.plan-notice {
    font-size: 0.875rem;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.plan-notice.free {
    background: #cce5ff;
    color: #004085;
}

.plan-notice.pro, .plan-notice.platinum {
    background: #d4edda;
    color: #155724;
}

.payment-info {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    margin-top: 1rem;
}

.browser-links a {
    margin: 0 0.25rem;
    text-decoration: none;
    color: #007bff;
}

.version-info {
    text-align: center;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}


/*BLOG*/
/* Blog Pages Styles */

/* Breadcrumb customization */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-primary);
}

/* Article styles */
article {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(148, 163, 184, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

article header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

article h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dates {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-right: 1.5rem;
}

/* Article content */
article p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

article img{
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

article ul, article ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

article li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

article a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

article a:hover {
    text-decoration: underline;
}

/* Article images */
.wp-block-image {
    margin: 2rem 0;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

figure {
    margin: 0;
}

/* Related posts sidebar */
.col-md-3 h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.related-list li:last-child {
    border-bottom: none;
}

.related-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
    transition: color 0.2s ease;
    display: block;
}

.related-list a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    article {
        padding: 1.5rem;
    }

    article h1 {
        font-size: 2rem;
    }

    .dates {
        display: block;
        margin-bottom: 0.5rem;
    }

    .col-md-3 {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(99, 102, 241, 0.1);
    }
}

/*Ratings*/
.rating-display .stars {
    color: #ffc107;  /* Bootstrap's warning color for stars */
}

.rating-display .star {
    font-size: 1rem;
}

.rating-display .star-half {
    position: relative;
}

.rating-display .star-half:after {
    content: '\f089';  /* Font Awesome half star */
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 0;
    top: 0;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    animation: slideIn 0.3s ease-out;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 12px;
}

.card-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
}

.card-title {
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

/*Likes*/
.like-section {
    margin: 20px 0;
    padding: 10px;
    border-top: 1px solid #eee;
}

.like-section button {
    padding: 8px 16px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.like-section button:hover {
    background-color: #e0e0e0;
}

#like-count {
    font-weight: bold;
    margin-left: 10px;
}


/*7/9/2025 Webmasters: Core Web Vitals*/

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
}


.footer-description {
    min-height: 3em; /* Reserve space for 3 lines of text */
    line-height: 1.5;
    margin-bottom: 1rem;
}

.col-md-3 {
    min-height: 100vh;
}

.sticky-top {
    top: 90px; /* Account for fixed navbar */
}


/*features*/
     .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
      }

      @media (min-width: 768px) {
        .bd-placeholder-img-lg {
          font-size: 3.5rem;
        }
      }
      .font-weight-lighter{
        color: gray;
      }

      .title-card{
        color: black;
      }

      .icon{
        width: 48px;
        height: 48px;
        margin-right: 10px;
      }

      .feature-link{
        color: #000000;
        font-weight: 500;
      }