/* Universal selector to set font size and bold weight */
* {
    font-size: 25px;
    font-weight: bold;
}

/* Exclude specific classes from the universal selector rules */
.premium-title-c, .premium-title, .premium-heading, .premium-heading, .premium-heading-c, .premium-heading-c, .category-videos, .video-grid, .category-grid, .video-item, .overlay {
    font-size: initial; /* Revert to initial font size */
    font-weight: initial; /* Revert to initial font weight */
}

.related-posts-container {
    background-color: #f8f9fa; /* Light grey background for the box */
    padding: 20px;             /* Padding inside the box */
    border-radius: 10px;       /* Rounded corners */
    margin-bottom: 30px;       /* Space below the box */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.no-results {
    text-align: center;
    margin: 50px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    color: #333;
    font-size: 18px;
}

.no-results p {
    margin: 0;
}

.no-results strong {
    color: #007bff;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}


header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

header p {
    margin: 0;
    font-size: 0.9em;
}

header a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

header a:hover {
    color: #45a049;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
    margin: 0; /* Ensure no extra space at     the bottom */
    padding: 0;}


footer p {
    margin: 0;
    font-size: 1em;
}

footer a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #45a049;
}


    


.hero {
    background-image: url('path/to/hero-image.jpg'); /* Replace with your image */

    background-size: cover;
    background-position: center;
    color: #000000;
    padding: 100px 20px; /* Added padding to ensure no gaps */
    text-align: center;
}

.hero p {
    font-size: 3em;
    margin-top: 20px;
}

/* Video Grid Section */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.video-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: calc(25% - 20px); /* Four items per row */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.video-item:hover {
    transform: scale(1.05);
}

.thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.thumbnail-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .thumbnail-container img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.thumbnail-container:hover .overlay {
    opacity: 1;
}

.play-icon {
    color: #fff;
    font-size: 2rem;
}

h3 {
    padding: 10px;
    font-size: 1.25rem;
    text-align: center;
}

.video-description {
    padding: 0 10px 10px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .video-item {
        width: calc(33.333% - 20px); /* Three items per row */
    }
}

@media (max-width: 992px) {
    .video-item {
        width: calc(50% - 20px); /* Two items per row */
    }
}

@media (max-width: 768px) {
    .video-item {
        width: calc(100% - 20px); /* One item per row */
    }
}

/* Other Styles */
.video-details {
    text-align: center;
    padding: 20px;
}

.video-player {
    margin-bottom: 20px;
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #45a049;
}

form {
    width: 50%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

label {
    display: block;
margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #45a049;
}
/* Remove underline from all links, including visited links */
a, a:visited, a:hover {
    text-decoration: none;
}

/* Keep underline for pagination links */
.pagination a, .download-button {
    text-decoration: none;
}

/* Add hover effects for other links */
a:hover {
    text-decoration: underline;
}

/* Category Grid - Similar to the Video Grid */
.category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.category-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: calc(25% - 20px); /* Four items per row */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.category-box:hover {
    transform: scale(1.05);
}

.category-box .thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.category-box .thumbnail-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-box:hover .thumbnail-container img {
    transform: scale(1.1);
}

.category-box h3 {
    padding: 10px;
    font-size: 1.25rem;
    color: #333;
}

.category-box .video-description {
    padding: 0 10px 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive adjustments for category grid */
@media (max-width: 1200px) {
    .category-box {
        width: calc(33.333% - 20px); /* Three items per row */
    }
}

@media (max-width: 992px) {
    .category-box {
        width: calc(50% - 20px); /* Two items per row */
    }
}

@media (max-width: 768px) {
    .category-box {
        width: calc(100% - 20px); /* One item per row */
    }
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    margin: 0 5px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a.active {
    background-color: #007BFF;
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;

}

.body, html {
    margin: 0;
    padding: 0;
    width: 100%;
}

.site-header {
    width: 100%;
    background-color: #333;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.site-title ul {
    font-size: 20em; /* Keep this as it is */
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.site-title ul li {
    margin-left: 20px;
}

.site-title ul li a {
    font-size: inherit; /* Inherit the font size from the parent <ul> */
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.site-title ul li a:hover {
    background-color: #000; /* Correct the color code */
}

.site-nav ul {
    list-style: none;
    font-size: 1em;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.site-nav ul li {
    margin-left: 20px;
}

.site-nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);  /* Apply the gradient */
    transition: background 0.3s; /* Transition for smooth effect */
}

.site-nav ul li a:hover {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);  /* Slightly darker gradient for hover effect */
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto; /* Changed margin to 0 auto to remove extra white space */
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
    box-sizing: border-box;
}

.premium-heading {
    width: 85%; /* Adjust width to create gaps on both sides */
    max-width: 800px; /* Maximum width to control how wide it can go */
    margin: 0 auto; /* Center the div horizontally */
    padding: 20px 40px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center; /* Center the text inside the div */
}

.premium-heading h1 {
    color: #fff;
    font-size: 2.5em;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}


.premium-heading-c {
    width: 85%; /* Adjust width to create gaps on both sides */
    max-width: 800px; /* Maximum width to control how wide it can go */
    margin: 0 auto; /* Center the div horizontally */
    padding: 20px 40px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center; /* Center the text inside the div */
}

.premium-heading-c h1 {
    color: #fff;
    font-size: 2.5em;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.premium-title {
    text-align: center;
    padding: 20px;
    margin: 50px auto;
    width: fit-content;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.premium-title h1 {
    font-size: 5em;
    color: #fff;
    font-weight: 700;
    margin: 0;
    padding: 10px 20px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.premium-title-c {
    text-align: center;
    padding: 20px;
    margin: 50px auto;
    width: fit-content;
    background: linear-gradient(45deg, #ff7e5f, #feb47b); /* Changing to warm premium colors */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Slightly darker shadow for depth */
}

.premium-title-c h1 {
    font-size: 5em;
    color: #f7f7f7; /* Soft white color */
    font-weight: 700;
    margin: 0;
    padding: 10px 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Slightly deeper shadow for emphasis */
}

.hidden {
    display: none;
}

/* Remove underline from all links */
a {
    text-decoration: none;
}

/* Maintain underline for pagination links */
.pagination a {
    text-decoration: none;
}

/* Maintain underline for download button links */
.download-button {
    text-decoration: none;
}

/* Add hover effects if needed */
a:hover {
    text-decoration: underline;
}
.telegram-notice {
    background-color: #0088cc; /* Telegram blue */
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 30px auto;
    max-width: 600px;
}

.telegram-notice p {
    font-size: 30px;
    margin-bottom: 20px;
}

.join-btn {
    display: inline-block;
    font-size: 22px;
    color: white;
    background-color: #28a745;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.join-btn:hover {
    background-color: #005f87;
    transform: scale(1.05); /* Slightly enlarge on hover */
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}



header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

header p {
    margin: 0;
    font-size: 0.9em;
}

header a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

header a:hover {
    color: #45a049;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

footer a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #45a049;
}

.hero {
    background-image: url('path/to/hero-image.jpg'); /* Replace with your image */

    background-size: cover;
    background-position: center;
    color: #000000;
    padding: 100px 20px; /* Added padding to ensure no gaps */
    text-align: center;
}

.hero p {
    font-size: 3em;
    margin-top: 20px;
}

/* Video Grid Section */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.video-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: calc(25% - 20px); /* Four items per row */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.video-item:hover {
    transform: scale(1.05);
}

.thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.thumbnail-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .thumbnail-container img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.thumbnail-container:hover .overlay {
    opacity: 1;
}

.play-icon {
    color: #fff;
    font-size: 2rem;
}

h3 {
    padding: 10px;
    font-size: 1.25rem;
    text-align: center;
}

.video-description {
    padding: 0 10px 10px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .video-item {
        width: calc(33.333% - 20px); /* Three items per row */
    }
}

@media (max-width: 992px) {
    .video-item {
        width: calc(50% - 20px); /* Two items per row */
    }
}

@media (max-width: 768px) {
    .video-item {
        width: calc(100% - 20px); /* One item per row */
    }
}

/* Other Styles */
.video-details {
    text-align: center;
    padding: 20px;
}

.video-player {
    margin-bottom: 20px;
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #45a049;
}

form {
    width: 50%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

label {
    display: block;
margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #45a049;
}


/* Category Grid - Similar to the Video Grid */
.category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.category-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: calc(25% - 20px); /* Four items per row */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.category-box:hover {
    transform: scale(1.05);
}

.category-box .thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.category-box .thumbnail-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-box:hover .thumbnail-container img {
    transform: scale(1.1);
}

.category-box h3 {
    padding: 10px;
    font-size: 1.25rem;
    color: #333;
}

.category-box .video-description {
    padding: 0 10px 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive adjustments for category grid */
@media (max-width: 1200px) {
    .category-box {
        width: calc(33.333% - 20px); /* Three items per row */
    }
}

@media (max-width: 992px) {
    .category-box {
        width: calc(50% - 20px); /* Two items per row */
    }
}

@media (max-width: 768px) {
    .category-box {
        width: calc(100% - 20px); /* One item per row */
    }
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    margin: 0 5px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a.active {
    background-color: #007BFF;
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;

}

.body, html {
    margin: 0;
    padding: 0;
    width: 100%;
}

.site-header {
    width: 100%;
    background-color: #333;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.site-title ul {
    font-size: 20em; /* Keep this as it is */
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.site-title ul li {
    margin-left: 20px;
}

.site-title ul li a {
    font-size: inherit; /* Inherit the font size from the parent <ul> */
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.site-title ul li a:hover {
    background-color: #000; /* Correct the color code */
}

.site-nav ul {
    list-style: none;
    font-size: 2em;
    margin: 0;
    padding: 0;
    display: flex;
}

.site-nav ul li {
    margin-left: 20px;
}

.site-nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.site-nav ul li a:hover {
    background-color: 
    background: linear-gradient(45deg, #6a11cb, #2575fc);
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto; /* Changed margin to 0 auto to remove extra white space */
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
    box-sizing: border-box;
}

.premium-heading {
    width: 85%; /* Adjust width to create gaps on both sides */
    max-width: 800px; /* Maximum width to control how wide it can go */
    margin: 0 auto; /* Center the div horizontally */
    padding: 20px 40px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center; /* Center the text inside the div */
}

.premium-heading h1 {
    color: #fff;
    font-size: 2.5em;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}


.premium-heading-c {
    width: 85%; /* Adjust width to create gaps on both sides */
    max-width: 800px; /* Maximum width to control how wide it can go */
    margin: 0 auto; /* Center the div horizontally */
    padding: 20px 40px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center; /* Center the text inside the div */
}

.premium-heading-c h1 {
    color: #fff;
    font-size: 2.5em;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.premium-title {
    text-align: center;
    padding: 20px;
    margin: 50px auto;
    width: fit-content;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.premium-title h1 {
    font-size: 3em;
    color: #fff;
    font-weight: 700;
    margin: 0;
    padding: 10px 20px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.premium-title-c {
    text-align: center;
    padding: 20px;
    margin: 50px auto;
    width: fit-content;
    background: linear-gradient(45deg, #ff7e5f, #feb47b); /* Changing to warm premium colors */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Slightly darker shadow for depth */
}

.premium-title-c h1 {
    font-size: 1em;
    color: #f7f7f7; /* Soft white color */
    font-weight: 700;
    margin: 0;
    padding: 10px 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Slightly deeper shadow for emphasis */
}

.hidden {
    display: none;
}

/* Remove underline from all links */
a {
    text-decoration: none;
}

/* Maintain underline for pagination links */
.pagination a {
    text-decoration: none;
}

/* Maintain underline for download button links */
.download-button {
    text-decoration: none;
}

/* Add hover effects if needed */
a:hover {
    text-decoration: underline;
}

/* Remove underline from all links, including visited, hover, and active links */
a, a:visited, a:hover, a:active {
    text-decoration: none !important;
}

.pagination1 {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center horizontally */
    margin-top: 20px; /* Add space above the section */
}

.pagination1 a {
    margin: 0 5px; /* Space between links */
    padding: 10px 15px; /* Padding for links */
    text-decoration: none; /* Remove underline */
    background-color: #f1f1f1; /* Background color */
    color: #333; /* Text color */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Hover animation */
}

.pagination1 a.active {
    background-color: #333; /* Active link color */
    color: #fff; /* Active link text color */
}

.pagination1 a:hover {
    background-color: #ddd; /* Hover color */
}
/* Add your custom CSS styles here */
.premium-box {
    background-color: #f8f9fa; /* Light background */
    border: 1px solid #dee2e6; /* Light border */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding inside the box */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Light shadow for a premium touch */
    margin: 20px; /* Equal margin on all sides */
}
.premium-box:last-child {
    margin-bottom: 0; /* Extra margin at the bottom removed */
    padding-bottom: 0; /* Extra padding at the bottom removed */
}
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Adjust this value as needed to control the distance from the header */
}

.search-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 30px; /* Increase padding */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px; /* Increase the max-width for a larger form */
}

.search-input {
    width: 100%;
    max-width: 500px; /* Increase width */
    padding: 15px; /* Increase padding */
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 25px;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

.search-button {
    width: 200px; /* Increase width */
    padding: 15px; /* Increase padding */
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 25px;
}

.search-button:hover {
    background-color: #45a049;
}

.related-posts-box {
            border: 1px solid #ccc;
            padding: 15px;
            margin: 20px 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            background-color: #f9f9f9;
        }

.premium-plus-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    margin-left: 20px;  /* Add gap on the left side */
    margin-right: 20px; /* Add gap on the right side */
}

.premium-box-item {
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 15px;
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.premium-pagination {
    text-align: center;
    padding: 10px 0;
}

.premium-pagination a {
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    background-color: #e0e0e0;
    color: #333;
    text-decoration: none;
}

.premium-pagination a.active {
    background-color: #333;
    color: white;
}

