.blog-head{
            margin-top: 100px;
            font-weight: 800;
            color: #0d59fd;
            font-size: 50px;
        } 
        
    @media (max-width:1024px) {
        .blog-head{
            font-size: 35px;
        }
    }

            .category-tabs .nav-link {
                border: none;
                color: #6c757d;
                font-weight: 500;
                padding: 0.5rem 1rem;
                border-radius: 8px;
                transition: all 0.3s;
            }

            .category-tabs .nav-link.active {
                background-color: #0d6efd; 
                color: white;
            }

            
            .blog-card {
                border: 1px solid #e9ecef;
                border-radius: 12px;
                overflow: hidden;
                
                transition: all 0.3s ease-in-out, box-shadow 0.3s ease; 
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                height: 100%; 
                display: flex;
                flex-direction: column;
            }

            .blog-card:hover {
                transform: translateY(-5px); 
                box-shadow: 0 15px 30px rgba(19, 67, 243, 0.15); 
            }

            .card-img-top-container {
                position: relative;
                padding-top: 56.25%; 
                overflow: hidden;
            }
        .card-text{
            font-size: 14px;
        }
        .blog-card:hover{
            color: #0d6efd !important ;
        }

            .card-img-top-container img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-bottom: 1px solid #dee2e6;
                
            }
            
            /* Tag/Pill Style */
            .card-tag {
                position: absolute;
                top: 15px;
                left: 15px;
                background-color: #0d6efd; 
                color: white;
                padding: 0.3rem 0.8rem;
                border-radius: 8px;
                font-size: 0.8rem;
                font-weight: 600;
                z-index: 10;
            }

            /* Metadata Styling (Date & Author) */
            .metadata-line {
                font-size: 0.85rem;
                color: #6c757d;
            }
            
            .metadata-line i {
                font-size: 1rem;
                vertical-align: middle;
                margin-right: 0.25rem;
            }
            /* .maincontent{
                background-color: #0d6efd;
                height: 40vh;
                width: 100%;
            } */
             /* सुनिश्चित करें कि body/html में कोई अनावश्यक मार्जिन/पैडिंग न हो */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9; /* Fallback for rest of the page */
}

/* मुख्य कंटेनर जिसमें एनीमेशन होगा */
.animated-header-section {
    width: 100%;
    /* पैडिंग: यह रेस्पॉन्सिवनेस में मदद करती है */
    padding: 100px 20px; 
    text-align: center;
    color: white; /* टेक्स्ट का रंग सफेद रखें */
    position: relative;
    overflow: hidden; /* ज़रूरी ताकि ग्रेडिएंट कंटेनर के बाहर न दिखे */
}

/* एनीमेशन के लिए ::before स्यूडो-एलिमेंट का इस्तेमाल */
.animated-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%; /* ग्रेडिएंट को चौड़ा करें ताकि चलने की जगह मिले */
    height: 100%;
    
    /* आपके द्वारा दिखाए गए रंगों का ग्रेडिएंट */
    background: linear-gradient(
        135deg,
        #8A2BE2 0%, /* Violet */
        #952aec 25%, /* Bright Pink */
        #ce10df 50%, /* Indigo */
        #990499 75%, /* Plum */
        #8A2BE2 100% /* Violet - लूपिंग के लिए */
    );
    
    /* बैकग्राउंड साइज़ बढ़ाना स्मूथ एनिमेशन के लिए ज़रूरी है */
    background-size: 200% 200%;
    z-index: -1; /* इसे टेक्स्ट के पीछे रखें */
    
    /* एनिमेशन को यहाँ लागू करें */
    animation: moveGradient 2s ease infinite alternate;
}

/* CSS Keyframes: यह बताता है कि ग्रेडिएंट को कैसे चलना है */
@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}


/* टेक्स्ट स्टाइलिंग */

.content-wrapper {
    /* सामग्री को ज़्यादा चौड़ा होने से रोकता है, रेस्पॉन्सिवनेस में मदद करता है */
    max-width: 900px;
    margin: 0 auto; 
    position: relative; /* z-index के लिए */
}

/* हेडिंग <h1> */
h1 {
    font-size: 3.5em; /* बड़ी हेडिंग */
    margin-bottom: 15px;
    font-weight: 800;
}

/* पैराग्राफ <p> */
p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.9;
}


.tag-label {
    display: inline-flex;
    align-items: center;
    
    background-color: rgba(255, 255, 255, 0.2); 
    
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px); 
    
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 30px;
}
.sparkle {
    margin-right: 5px;
    font-size: 20px;
}
.content-wrapper{
    margin-top: 70px !important;
}



@media (max-width: 768px) {
    .animated-header-section {
        padding: 60px 15px; 
    }
    h1 {
        font-size: 2.5em; /* हेडिंग का साइज़ छोटा करें */
    }
    p {
        font-size: 1em; /* पैराग्राफ का साइज़ छोटा करें */
    }
}
            
        
        
            .card-col:not(.d-none) {
                animation: fadeInSlideUp 0.5s ease-out;
            }
            
            @keyframes fadeInSlideUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
       .navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: +999;
    background-color: white;
}
.img-fluid-logo,.img-fluid2{
    filter: brightness(150%) !important;
}

.navbar-nav li a {
    position: relative;
    font-weight: bolder;
    transition: .5s;
    padding: 0px 20px !important;
    color: rgb(122, 122, 122);
    &:hover {
        background: linear-gradient(to right, #005ee2, #9100f1, #ce0aff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        /* for firefox */
        color: transparent;
        transform: scale(1.01);
    }
}

.navbar-nav li a::before {
    position: absolute;
    content: '';
    height: 2px;
    width: 0%;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent-glow);
    transition: .5s linear;
    margin: 0px 0px -10px 0px;
    display: inline-block;
}

.navbar-nav li a:hover:before {
    width: 100%;
}

@media (max-width:768px) {
    .navbar-nav li a::before {
        position: absolute;
        content: '';
        height: 2px;
        width: 0%;
        bottom: 0;
        left: 0;
        background-color: var(--color-accent-glow);
        transition: .5s linear;
        margin: 0px 0px -1px 0px;
        display: inline-block;
    }

    .navbar-nav li a:hover:before {
        width: 30%;
    }
}

.dropdown-menu {
    border-radius: 0px !important;
    border: 2px solid rgba(134, 134, 245, 0.151) !important;
}

.dropdown-menu li {
    padding: 0px 0px 15px 0px;

}

.dropdown-menu li a {
    text-decoration: none;

    &:hover {
        background-color: rgba(245, 239, 255, 0.384);
    }
}

.contact-btn{
    background-image: linear-gradient(to right, #005ee2, #9100f1, #ce0aff);
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 10px;
    color: white;
}


.nav-btn {
    border-radius: 5px;
    padding: 10px;
    background-color: #005ee2;
    border: none;
    outline: none;
    color: white;
}

@media (max-width:768px) {
    .nav-btn {
        margin-bottom: 20px;
    }

    .nav-item {
        margin: 10px 0px !important;

    }

}


@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown .dropdown-menu {
        display: none;
        transition: display 0.5s ease-in-out;
    }


    .navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(-180deg);
        transition: transform 0.5s;
    }
}

/* Styling for the links and the hover effect */
.footer-link {
    color: #495057 !important;
  
    text-decoration: none;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: inline-block;
    
}

.footer-link:hover {
    color: #007bff !important;
    
    transform: translateX(5px);
            
}

/* General heading and text styles */
.footer-heading {
    color: #447dd1;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-branding-text {
    color: #495057;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.footer-brand-it {
    color: var(--h1);
    font-weight: bold;
}

.footer-bg {
    background-color: rgb(247, 254, 255);
}



.footer {
    background-color: #e1fdff;
}
