/*header styles starts */
/* Site header */
.site-header {
    /*background-color: #fff;*/
    padding: 15px 0;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.05);*/
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Center the logo */
.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
        background: white;
}

/* Logo link styles */
.logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Logo image */
.logo-img {
    width: 115px;
    height: auto;
    transition: transform 0.3s ease;
}

/* Company name text */
.logo-text {
    font-size: 22px;
    font-weight: 600;
    color: #0d6efd;
    font-family: 'Poppins', sans-serif;
}

/* Hover effect on logo */
.logo-link:hover .logo-img {
    transform: scale(1.1);
}

/* Responsive logo size */
@media (max-width: 768px) {
    .logo-img {
        width: 40px;
    }

    .logo-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 61px;
    }

    .logo-text {
        font-size: 16px;
    }
}
.views{
    text-align: center;
}

/*header styles ends */


/*footer styles ends */
/* Footer styles */
.site-footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.footer-col {
    /*flex: 1 1 250px;*/
    flex: 1 1 0px;
}

.footer-logo-img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.1);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
    text-align: left;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left !important;
}

.footer-menu li {
    margin: 8px 0;
}

.footer-menu a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #0d6efd;
}

/* Contact text */
.footer-col p {
    margin: 8px 0;
    color: #555;
    font-size: 14px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}


/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: left;
    }

    .footer-col {
        text-align: left;
    }
}

/*footer styles ends */


/* General styling for body */
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
}

/* Heading styles */
h1, h2 {
    font-weight: 600;
    color: #222;
}

/* Styling for related blogs */
.related-blogs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /*padding: 20px;*/
    /*background-color: #fff;*/
    border-radius: 8px;
    /*box-shadow: 0 4px 8px rgba(0,0,0,0.05);*/
    margin-top: 20px;
    justify-content: center;
}

.related-blogs .related-item {
    flex: 1 1 200px;
    max-width: 300px;
    background-color: #eaf2f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Box shadow always visible */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth grow effect */
}

/* Hover effect: smooth grow */
.related-blogs .related-item:hover {
    transform: scale(1.05); /* Slightly bigger */
    box-shadow: 0 8px 16px rgba(0,0,0,0.15); /* Deeper shadow on hover */
}

.related-blogs .related-item a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    color: #2c3e50;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .related-blogs {
        flex-direction: column;
        align-items: center;
    }

    .related-blogs .related-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .related-blogs .related-item a {
        font-size: 18px;
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    body {
        padding: 15px;
    }
}

/* Tablet view adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .related-blogs .related-item {
        flex: 1 1 45%;
    }
}
@media (min-width: 769px){
    .blogCreated{
        padding: 60px;
    }
}
.seoHeads{
    color: transparent ;
    font-size : 3px ;
}