.w-slider-dot {
        background: #e1e1e1;
      }

      .w-slider-dot.w-active {
        background: #397aff;
      }
 
      body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      .truncate {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
      }

html {
      font-size: 16px;
    }

    @media screen and (max-width: 768px) {
      html {
        font-size: 14px;
      }
    }

    .social-icons-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
        gap: 20px;
        padding: 20px;
    }

    .social-box {
        background: white;
        border-radius: 15px;
        padding: 30px 10px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        display: block;
    }

.social-box:visited {
  color: inherit;
}

.social-box:focus {
  outline: 2px solid #397aff;
  outline-offset: 2px;
}

    .social-box::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: left 0.5s;
    }

    .social-box:hover::before {
        left: 100%;
    }

    .social-box:hover {
        text-decoration: none;
        color: inherit;
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .social-box:hover .icon {
        transform: scale(1.1);
    }

    .icon svg {
        width: 30px;
        height: 30px;
        fill: white;
    }

    .social-text {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }

    .social-description {
        font-size: 11px;
        color: #666;
        line-height: 2.4;
    }

    /* Individual platform colors */
    .git .icon { background: #333; }
    .email .icon { background: #ea4335; }
    .instagram .icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
    .facebook .icon { background: #1877f2; }
    .stackoverflow .icon { background: #f48024; }
    .linkedin .icon { background: #0077b5; }
    .freelancer .icon { background: #29b2fe; }
    .behance .icon { background: #1769ff; }
    .upwork .icon { background: #14a800; }
    .dribbble .icon { background: #ea4c89; }
    .twitter .icon { background: #000000; }
    .reddit .icon { background: #ff4500; }

    /* Tablet view - 2 columns */
    @media (max-width: 768px) {
        .social-icons-container {
            grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        }
        
        .social-box {
            padding: 20px 15px;
        }
        
        .icon {
            width: 50px;
            height: 50px;
        }
        
        .icon svg {
            width: 25px;
            height: 25px;
        }
        
        .social-text {
            font-size: 16px;
        }
        
        .social-description {
            font-size: 13px;
        }
    }

    /* Mobile view - 1 column */
    @media (max-width: 480px) {
        .social-icons-container {
            grid-template-columns: 1fr; /* 1 column on mobile */
        }
    }




      /*.blog-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }*/
        
        .blog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .blog-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }
        
        .blog-content {
            padding: 24px;
        }
        
        .blog-category {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 14px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        
        .blog-title {
             font-weight: 700;
            color: #000;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        
        .blog-excerpt {
            color: #272727;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: #a0aec0;
        }
        
        .blog-date {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .read-more {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .read-more:hover {
            color: #764ba2;
        }
        
        .section-title {
             margin-bottom: 50px;
             
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 16px;
        }
        
        .section-title p {
            font-size: 18px;
            color: #718096;
            max-width: 600px;
            margin: 0 auto;
            line-height: 25px;
        }
        
        /* Carousel specific styles */
        .blog-carousel .carousel-item {
            padding: 0 15px;
        }
        
        .blog-carousel .carousel-control-prev,
        .blog-carousel .carousel-control-next {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .blog-carousel .carousel-control-prev {
            left: -25px;
        }
        
        .blog-carousel .carousel-control-next {
            right: -25px;
        }
        
        .blog-carousel .carousel-control-prev-icon,
        .blog-carousel .carousel-control-next-icon {
            background-color: #667eea;
            border-radius: 50%;
            width: 20px;
            height: 20px;
        }
        
        .carousel-indicators {
            bottom: -50px;
        }
        
        .carousel-indicators button {
            background-color: #667eea;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 6px;
        }
        
        /* Hide carousel controls when showing grid */
        .blog-grid .carousel-control-prev,
        .blog-grid .carousel-control-next,
        .blog-grid .carousel-indicators {
            display: none !important;
        }
        .container{max-width: 100%;}
        
        @media (max-width: 768px) {
            .blog-section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .blog-carousel .carousel-control-prev,
            .blog-carousel .carousel-control-next {
                display: none;
            }
        }

 
        .blog-meta {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #000;
        }


   .blog-content h3 {
    font-weight: 600;
    font-size: 20px;
}

        .blog-content p {
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .blog-content blockquote {
            border-left: 4px solid var(--primary-color);
            background-color: var(--bg-light);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }

        .featured-image {
            width: 100%;
             border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .sidebar {
            background-color: #fff;
            padding: 2rem;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 2rem;
        }

        .sidebar h5 {
            font-family: 'Playfair Display', serif;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .recent-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}

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

        .recent-post img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }

        .recent-post-content h6 {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .recent-post-content h6 a {
            color: var(--text-dark);
            text-decoration: none;
        }

        .recent-post-content h6 a:hover {
            color: var(--primary-color);
        }

        .recent-post-date {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 2rem 0;
        }

        .tag {
            background-color: #000;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .tag:hover {
            background-color: #1d4ed8;
            color: white;
        }

        .social-share {
            background-color: var(--bg-light);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }

        .social-share h6 {
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .social-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .social-btn {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            color: white;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .social-btn:hover {
            transform: translateY(-2px);
            color: white;
        }

        .social-btn.facebook { background-color: #1877f2; }
        .social-btn.twitter { background-color: #1da1f2; }
        .social-btn.linkedin { background-color: #0077b5; }
        .social-btn.whatsapp { background-color: #25d366; }

        .author-box {
            background-color: var(--bg-light);
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h5 {
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .author-info p {
            margin-bottom: 0;
            color: var(--text-light);
        }

        .footer {
            background-color: #dddddd29;
            color: white;
            padding:3rem 3rem 0rem 3rem;
             width: 100%;
        }

        .footer h5 {
            margin-bottom: 1rem;
            color: #000;
        }

        .footer a {
            color: #000;
            text-decoration: none;
        }

        .footer a:hover {
            color: white;
        }

        @media (max-width: 768px) {
            .blog-title {
                font-size: 2rem;
            }
            
            .blog-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .author-box {
                flex-direction: column;
                text-align: center;
            }
            
            .social-buttons {
                justify-content: center;
            }
        }


        .breadcrumb {
            background-color: var(--bg-light);
            padding: 1rem 0;
            margin-bottom: 0;
        }

        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
        }
.blog-header {
    /* background: #f1f1f126; */
    color: white;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #ddd;
}

      

        /*.footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }*/

        .footer-content {
            position: relative;
            z-index: 2;
        }

        .footer h5 {
             font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            border-radius: 2px;
        }

        .footer p {
            color: #000;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #000;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .footer-links a:hover {
            color: #000;
            transform: translateX(5px);
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover::before {
            opacity: 1;
            left: -15px;
            color:#000;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-icon:hover {
            background: #ffffff;
            color: #1e3c72;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .social-icon.facebook:hover { background: #1877f2; color: white; }
        .social-icon.twitter:hover { background: #1da1f2; color: white; }
        .social-icon.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
        .social-icon.linkedin:hover { background: #0077b5; color: white; }
        .social-icon.youtube:hover { background: #ff0000; color: white; }

        .contact-info {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #000;
        }

        .contact-info i {
            width: 20px;
            color: #000;
        }

        .newsletter-form {
            margin-top: 20px;
        }

        .newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgb(0 0 0);
    border-radius: 25px;
    padding: 12px 20px;
    color: white;
    width: 100%;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    color:#000;
}

        .newsletter-input::placeholder {
            color:#000;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #4ecdc4;
            box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-btn {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            color: white;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .footer-bottom {
    background: transparent;
    padding: 25px 0;
     border-top: 1px solid #ddd;
    width: 100% !important;
}

        .footer-bottom p {
            margin: 0;
            text-align: center;
            color: #000;
        }

        .footer-bottom a {
            color: #000;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: #000;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 0 0;
            }
            
            .social-icons {
                justify-content: center;
                margin-top: 30px;
            }
            
            .footer h5 {
                text-align: center;
                margin-top: 30px;
            }
            
            .footer h5:first-child {
                margin-top: 0;
            }
            
            .footer-links {
                text-align: center;
            }
            
            .contact-info {
                justify-content: center;
            }
        }
        .blg-btnling {
    text-decoration: none;
    color: #000;
}