* {
    
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    padding: 15px;
	margin: 0;
    
}

header {
    text-align: center;
    margin-bottom: 10px;
		
}

h1 {
    font-size: 2em;
	
	
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.video-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.video-thumbnail {
    width: 100%;
    display: block;
}

.video-title {
    padding: 10px;
    font-size: 1em;
    text-align: center;
    background: #fafafa;
	color: black;
	font-weight: bold;
}

#logo-container {
    position:static;
    top: 60px;
    left: 30px;
    width: 60px; /* Adjust the logo size */
}

#logo {
    border-radius: 50%; /* Makes the logo fully rounded */
    width: 70px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

<!-- Menu Code -->

/* Header Styling */
#page-header {
    text-align: center;
    margin: 20px 0;
    font-size: 28px;
    color: black;
}

/* Navbar Styling */
#navbar {
    text-align: center;  /* Aligns the menu to the right */
    padding: 10px;
    margin-bottom: 20px;
	margin-top: 0; /* Remove any extra margin at the top */
    padding-top: 0; /* Remove or reduce padding to shift it up */
}

#menu-items {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#menu-items li {
    display: inline-block;
    margin-right: 20px;
}

#menu-items li a {
    color: #333;  /* Removed black background */
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    display: inline-block;
	font-weight: bold;
}

#menu-items li a:hover {
    text-decoration: underline;
}

/* Hamburger Icon (Hidden on large screens) */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

/* Responsive Menu */
@media (max-width: 600px) {
    #menu-items {
        display: none;  /* Hide menu by default on small screens */
        text-align: center;
    }

    #menu-items li {
        display: block;
        margin: 10px 0;
    }

    /* Show hamburger icon */
    .menu-icon {
        display: block;
        text-align: right;
        margin-right: 0px;
    }

    #page-header {
        font-size: 24px;
		padding: 15px; /* Add padding for better spacing */
    }
}
/* Styling for the Intro Tile */
#intro-tile {
    background-color: #87CEFA; /* Light sky blue color */
    padding: 20px;
    margin: 20px auto; /* Center the tile horizontally */
    text-align: center;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 60%; /* Make the tile smaller in width */
    max-width: 650px; /* Limit the maximum width */
}

#intro-tile p {
    font-size: 28px;
    color: black;
    margin: 0;
    font-weight: bold;
}


/* Pagination controls styling */
#pagination-controls {
    text-align: center;
    margin: 20px 0;
}

#pagination-controls button {
    background-color: #007BFF; /* Blue button color */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}

#pagination-controls button:disabled {
    background-color: #ddd; /* Grey color for disabled buttons */
    cursor: not-allowed;
}

#pagination-controls button:hover:not(:disabled) {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive grid for video cards */
#videoGallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between video cards */
}

#site-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 6px;
    margin-top: 20px;
}

#site-footer p {
    margin: 0;
    font-size: 14px;
}




/*  About Us CSS */

/* Center content and limit the width */
#about-content {
    max-width: 800px; /* Limit content width for readability */
	
    margin: 0 auto; /* Center content horizontally */
    padding: 20px;
    background-color: #fff; /* White background for the content */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 10px; /* Rounded corners for the container */
}

/* Styling for sections within the content */
#about-content section {
    margin-bottom: 30px;
}

#about-content h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

#about-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

/* Link styling inside the content */
#about-content a {
    color: #007BFF;
    text-decoration: none;
}

#about-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }

    #about-content {
        padding: 15px;
        max-width: 95%;
    }

    #logo {
        max-width: 100px;
    }
}


/*  Contact Us CSS */

/* Contact form styling */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

#contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #555;
    border-radius: 5px;
    font-size: 1em;
}

#contact-form button {
    background-color: #007BFF; /* Blue button */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

#contact-form button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

#contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

#contact-content h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
}

#contact-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

#confirmation-message {
    margin-top: 20px;
    color: green;
    font-size: 1.2em;
    font-weight: bold;
}

#display-count {
    font-weight: bold; /* Make text bold */
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
 //   max-width: 320px; /* Adjust as per your thumbnail width */
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: block; /* Maintain aspect ratio */
	
	
} 

.video-iframe {
    width: 100%;
    height: auto;
	aspect-ratio: 4 / 3;
	
}

.play-button {
    position: absolute;	
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
}

/* Blog CSS */
/* Blog Tile Grid Styling */
/* Blog CSS */
/* Blog Tile Grid Styling */
.blog-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid with auto-sizing tiles */
    gap: 20px;
    justify-content: center; /* Center the entire grid horizontally */
    align-items: center; /* Center items vertically within the grid */
    padding: 20px;
    margin: 0 auto; /* Center the grid container on the page */
}

.blog-card {
    margin: 0 auto; /* Ensure each blog card is centered within its grid cell */
    width: 100%; /* Ensure the blog card takes full width within the grid */
    max-width: 350px; /* Set a max width for the tiles */
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Add a shadow for depth */
    text-align: center;
}


.blog-thumbnail {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    border-bottom: 1px solid #ddd; /* Separate thumbnail from content */
}

.blog-title {
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
    background: #f1f1f1;
    color: #333;
    text-align: center;
}

.blog-excerpt {
    padding: 15px;
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.blog-read-more {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.blog-read-more:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Pagination controls styling */
#pagination-controls {
    text-align: center;
    margin: 20px 0;
}

#pagination-controls button {
    background-color: #007BFF; /* Blue button color */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}

#pagination-controls button:disabled {
    background-color: #ddd; /* Grey color for disabled buttons */
    cursor: not-allowed;
}

#pagination-controls button:hover:not(:disabled) {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive Design for Mobile Devices */
@media (max-width: 600px) {
    .blog-gallery {
        grid-template-columns: 1fr; /* Make each blog tile full-width on smaller screens */
    }

    .blog-card {
        max-width: 100%; /* Allow the blog card to take full width */
    }

    .blog-title {
        font-size: 1.1em;
    }
	video-container {
        max-width: 100%; /* Ensure full width on mobile */
    }
}

/* Center the blog container */
#blog-posts-container {
    max-width: 1200px; /* Set a max-width for readability */
    margin: 0 auto; /* Center the container horizontally */
    padding: 20px; /* Add padding for spacing */
		
}

/* Style individual blog posts */
#blog-posts .post {
    margin: 0 auto;
    max-width: 800px; /* Set a max width for each post */
    text-align: center; /* Center the text within each post */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#blog-posts .post h2 {
    font-size: 1.6em;
    color: #333;
}

#blog-posts .post p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

#blog-posts .post a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
}

#blog-posts .post a:hover {
    background-color: #0056b3;
}

/* Make the entire post clickable */
.post-link {
    text-decoration: none; /* Remove underline from the link */
    color: inherit; /* Ensure the link inherits the text color */
    display: block; /* Make the entire block clickable */
}

.post-link:hover {
    background-color: #f9f9f9; /* Add a subtle hover effect */
    transition: background-color 0.3s ease;
}

/* Styling for the full post */
.full-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.full-post h2 {
    font-size: 1.8em;
    color: #333;
}

.full-post .content {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

.full-post button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.full-post button:hover {
    background-color: #0056b3;
}

/* Target iframes within blog posts */
#full-post iframe, 
#full-post  video {
       
    max-width: 100%; /* Ensure the video doesn’t exceed the screen width */
    margin: 0 auto; /* Center the video */
    border: 0; /* Remove any default borders */
}

/* For desktop screens, set a fixed height */
@media (min-width: 1024px) {
    #full-post iframe, 
    #full-post video {
        height: 450px; /* Fixed height for desktop */
        width: 100%; /* Allow width to adjust automatically */
    }
}

/* For mobile devices, increase the height */
@media (max-width: 767px) {
    #full-post iframe, 
    #full-post video {
        height: 200px; /* Increase height for mobile (adjust as needed) */
        width: 100%; /* Maintain full width */
    }
}














