/*
@Author: ThemeMascot
@URL: http://ThemeMascot.com

This is the file where you can add your custom styles to change the look of the
theme. But don't modify style-main.css file.

*/

/* Your custom css codes start here: */

.blog-pull-center {
    float: left;
}

/* Green hyperlink class */
.green-link {
    color: #008000; /* Green color */
    text-decoration: underline;
}

.green-link:hover,
.green-link:focus {
    color: #005700; /* Darker green for hover/focus */
    text-decoration: underline;
}

/* 
.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.container {
    max-width: 1536px;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}             

.text-gray-dark {
    --tw-text-opacity: 1;
    color: rgb(39 52 68 / var(--tw-text-opacity));
}
.p-4 {
    padding: 1rem;
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.rounded {
    border-radius: 0.25rem;
}
a {
    color: inherit;
    text-decoration: inherit;
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-4 {
gap: 1rem;
}
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid {
display: grid
;
} */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0px;
    background-color: #f8f9fa;
}

.blog-banner {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

h2 {
    font-size: 24px;
    font-weight: bold;
}

.underline {
    width: 100px;
    height: 3px;
    background-color: yellow;
    margin: 5px auto 20px;
}

.blog-list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
    min-width: 250px;
}

.blog-item img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
}

.blog-info {
    padding: 10px;
}

.news-list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

.news-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
    min-width: 400px;
}

.news-item img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
}

.news-info {
    padding: 10px;
}

h3 {
    margin: 10px 0;
    font-size: 18px;
}

p {
    margin: 5px 0;
    color: #555;
}

.description {
    margin-top: 10px;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
}

.apply-btn {
    background-color: green;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
}

.apply-btn:hover {
    background-color: darkgreen;
}

/* Responsive Design */
@media (max-width: 900px) {
    .blog-list {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-item {
        width: 80%;
    }
}
.blog-item img {
    width: 300px;          /* Ensures the image takes the full width of its container */
    height: 180px;        /* Sets a fixed height to maintain consistency */
    border-radius: 8px;   /* Optional: Adds rounded corners */
    object-fit: contain;    /* Ensures the image fills the space without distortion */
}

/* Newsletter */

@media (max-width: 900px) {
    .news-list {
        flex-direction: column;
        align-items: center;
    }
    
    .news-item {
        width: 80%;
    }
}
.news-item img {
    width: 400px;          /* Ensures the image takes the full width of its container */
    height: 300px;        /* Sets a fixed height to maintain consistency */
    border-radius: 8px;   /* Optional: Adds rounded corners */
    object-fit: contain;    /* Ensures the image fills the space without distortion */
}


/* Variable Sizes */

.large-text {
    font-size: 20px;
}

.small-text {
    font-size: 14px;
}

.big-heading {
    font-size: 42px;
}

.Xlarge-text {
    font-size: 30px;
}