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

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.home-page-body {
    background-color: rgb(0, 0, 0);
}

/* Navbar Styling */
/* General Navbar Styling */
.navbar {
    background-color: #ffffff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.navbar .logo img {
    max-height: 60px;
}

/* Navigation Links - Default for Desktop */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #FF671F;
}

.nav-links li.active a {
    background-color: #FF671F;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
}

/* Hamburger Menu Toggle (Hidden by Default) */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    /* Hamburger Icon */
    .menu-icon {
        display: flex;
    }

    /* Hide nav-links by default */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .nav-links li {
        margin: 0;
        padding: 10px 20px;
        text-align: center;
    }

    /* Display nav-links when toggle is checked */
    .menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }
}



/* Outer container */
.homepage-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 50vh; /* Adjust this height as needed */
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out; /* Smooth transition */
}

/* Pseudo-element overlay */
.homepage-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black with 40% opacity */
    z-index: 1; /* Ensures the overlay appears on top of the background */
}

.homepage-content {
    position: relative;
    z-index: 2; /* Ensures the text appears above the overlay */
    color: white; /* Make text visible on dark background */
    text-align: center;
    padding: 20px;
}


.homepage-content h1 {
    font-size: 4rem;
    margin: 0;
    font-weight: bold;
}

.homepage-content .tagline {
    color: #FF671F;
    font-size: 1.5rem;
    margin-top: 10px;
    letter-spacing: 5px;
}

@media screen and (max-width: 768px) {
    .homepage-container {
        height: 50vh; /* Reduce height further for tablets */
        padding: 0 15px; /* Add some padding */
    }

    .homepage-content h1 {
        font-size: 2.5rem; /* Scale down heading for tablets */
    }

    .homepage-content .tagline {
        font-size: 1rem; /* Smaller tagline font size */
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 480px) {
    .homepage-container {
        height: 45vh; /* Height for small screens like mobile phones */
    }

    .homepage-content h1 {
        font-size: 2rem; /* Further reduce heading size */
    }

    .homepage-content .tagline {
        font-size: 0.9rem; /* Small tagline for mobile */
        letter-spacing: 1.5px;
    }
}



/* Main Header */
header {
    background-color: #f4f4f4; /* Light background for the header */
    padding: 20px 0; /* Add padding for spacing */
    text-align: center; /* Center align text */
    margin-bottom: 30px; /* Space below the header */
}

/* Logo Styling */
.logo-image {
    max-width: 250px; /* Adjust based on your logo size */
    height: auto;
}


.site-title {
    font-size: 36px; /* Adjust the font size as needed */
    font-weight: bold; /* Make the title bold */
    margin: 0;
}

.tagline {
    font-size: 14px; /* Font size for tagline */
    
    letter-spacing: 5px; /* Add letter-spacing */
    margin-top: 10px; /* Space above the tagline */
    color: #555; /* Slightly darker color for the tagline */
}

/* Home Page */


/* News List */
.news-list {
    padding: 40px 0;
    background-color: #dfdfdf;
}

.container {
    width: 95%;
    /* max-width: 1200px; */
    margin: 0 auto;
    background-color: white;
    text-align: center;
    border-radius: 10px;
}

/* News Item */
.news-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #4f4f4f;
    padding-bottom: 20px;
    list-style: none;
}

.news-title {
    font-size: 1.8rem;
    font-weight: bold;
    /* margin-bottom: 10px; */
    /* padding: 20px;
    padding-bottom: 0; */
    padding: 20px 20px 0px 20px;
    line-height: 35px;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    
}

.news-title a:hover {
    color: #FF671F;
}

.news-editor {
    font-size: 1rem;
    color: #888;
}

.news-date {
    font-weight: bold;
    color: #333;
}

.news-image {
    width: 100%;
    max-width: 500px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 0 20px;
}

.news-description {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
    /* padding: 20px 20px 0px 20px; */
    padding: 0 20px;
    text-align: justify;
}


.read-more {
    color: #FF671F;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.no-news {
    text-align: center;
    font-size: 1.2rem;
    color: #777;
}


/*  About Us  */
.about_us_heading h1 {
    font-size: 2.5rem;
    text-align: center;
    margin: 10px 0;
    color: #756e64;
}

.about-section, .mission-vision, .approach-journalism, .team, 
.content, .global-reach, .technology-innovation, .audience-engagement, 
.community-involvement, .future, .journey {
    padding: 20px;
    margin: 10px auto;
    max-width: 95%;
    line-height: 1.8;
}

.about-section h2, .mission-vision h2, .approach-journalism h2, .team h2, 
.content h2, .global-reach h2, .technology-innovation h2, .audience-engagement h2, 
.community-involvement h2, .future h2, .journey h2 {
    color: #55544e;
    text-align: center;
}

h3 {
    color: #555;
    margin-top: 10px;
}

p {
    color: #666;
    font-size: 1rem;
}



/* Contact container styles */
.contact-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.contact-container h1 {
    text-align: center;
    color: #333;
}
.contact-content {
    margin-top: 20px;
    font-size: 1.1em;
    color: #555;
}
.contact-content p, .contact-content address {
    margin: 10px 0;
}
.contact-content a {
    color: #FF671F;
    text-decoration: none;
}
.contact-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-container {
        margin: 20px; /* Adjusted margin */
    }
}

















.news-video-preview img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.news-video-preview img:hover {
    transform: scale(1.05);
}

.news-video-preview {
    margin-top: 20px;
}



/* General Footer Styles */
footer {
    background-color: #222;
    color: #fff;
    padding: 15px 10px; /* Adjust padding for smaller screens */
    font-family: Arial, sans-serif;
}

footer .marketing-links {
    text-align: center;
    margin-bottom: 15px;
}

footer .marketing-links a {
    color: #fff;
    font-size: 24px; /* Default size for laptops */
    margin: 0 15px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

footer .marketing-links a:hover {
    color: #f39c12;
    transform: scale(1.2);
}

footer .query {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px; /* Spacing between sections */
}

footer .query a {
    color: #f39c12;
    text-decoration: none;
}

footer .query a:hover {
    text-decoration: underline;
}

footer .legal-links {
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
}

footer .legal-links a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
}

footer .legal-links a:hover {
    text-decoration: underline;
}

footer .copyright {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

footer .copyright p {
    margin: 0;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
    footer {
        padding: 10px; /* Compact padding for smaller screens */
    }

    footer .marketing-links {
        margin-bottom: 10px; /* Reduced spacing */
    }

    footer .marketing-links a {
        font-size: 20px; /* Slightly smaller icons for tablets and mobiles */
        margin: 0 10px;
    }

    footer .query {
        font-size: 14px; /* Smaller font for queries */
    }

    footer .legal-links {
        font-size: 12px;
    }

    footer .copyright {
        font-size: 12px; /* Reduced size for copyright text */
    }
}

/* Privacy Policy and Terms Container */
.privacy-policy-container,
.terms-conditions-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 800px; /* Default size for laptops */
    margin: 20px auto;
    height: 550px; /* Fixed height for desktop */
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

.privacy-policy-container h1,
.terms-conditions-container h1 {
    text-align: center;
    font-size: 1.5rem;
}

.privacy-policy-container h2,
.terms-conditions-container h2 {
    margin-top: 10px;
    margin-bottom: 5px;
}

.privacy-policy-container a,
.terms-conditions-container a {
    color: #FF671F;
}

.privacy-policy-container::-webkit-scrollbar,
.terms-conditions-container::-webkit-scrollbar {
    width: 8px;
}

.privacy-policy-container::-webkit-scrollbar-thumb,
.terms-conditions-container::-webkit-scrollbar-thumb {
    background: #0056b3;
    border-radius: 4px;
}

.privacy-policy-container::-webkit-scrollbar-thumb:hover,
.terms-conditions-container::-webkit-scrollbar-thumb:hover {
    background: #003d80;
}

.privacy-policy-container::-webkit-scrollbar-track,
.terms-conditions-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

/* Responsive Privacy Policy and Terms Container */
@media (max-width: 768px) {
    .privacy-policy-container,
    .terms-conditions-container {
        padding: 15px;
        height: auto; /* Allow dynamic height for smaller screens */
        max-width: 95%; /* Full width on tablets */
    }

    .privacy-policy-container h1,
    .terms-conditions-container h1 {
        font-size: 1.3rem; /* Smaller headings for tablets */
    }

    .privacy-policy-container h2,
    .terms-conditions-container h2 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-container,
    .terms-conditions-container {
        margin: 10px;
        padding: 20px;
        max-width: 100%; /* Full screen width for mobiles */
        height: auto; /* Dynamic height */
    }

    .privacy-policy-container h1,
    .terms-conditions-container h1 {
        font-size: 1.2rem;
    }

    .privacy-policy-container h2,
    .terms-conditions-container h2 {
        font-size: 0.9rem;
    }
}




.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    max-width: 80%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Style for the news article title */

.news_detail_container {
 width: 90%;
 margin: 30px auto;
 background-color: rgb(255, 255, 255);
 border-radius: 20px;
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 text-align: center;

 /* padding: 50px; */
}

.news_detail_container h1 {
    font-size: 30px;
    color: #000000; /* Deep gray-blue */
    font-weight: bold;
    text-align: center;
    /* margin-bottom: 20px; */
    padding: 10px;
}

/* Editor and published date */
.news_detail_editor strong {
    color: #34495e; /* Dark gray */
    font-weight: bold;
}

.news_detail_published {
    font-size: 1rem;
    color: #7f8c8d; /* Medium gray */
    margin: 5px 0 15px;
    border-bottom: 3px solid #f2f2f2; /* Accent line */

}

/* Image styling */
.news_image {
    display: block;
    margin: 20px auto;
    border: 5px solid #ecf0f1; /* Light border */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Description section */
h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    border-left: 5px solid #3498db; /* Accent bar */
    padding-left: 10px;
}

.news_detail_description {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
    text-align: justify;
    padding: 10px 20px;
}

.youtube_container {
    padding-bottom: 30px;
}

.youtube_div {
    width: 100%;
    height: 300px;
    /* background-color: #007bff; */
    margin: auto;

}

/* YouTube embed container */
iframe {
    /* position: absolute;
    top: 0;
    left: 50%; */
    width: 50%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    /* General container styles for mobile and tablet */
    .news_detail_container {
        width: 95%;
        margin: 20px auto;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Title styling */
    .news_detail_container h1 {
        font-size: 1.8rem; /* Smaller font size for titles */
        padding: 5px; 
        line-height: 35px;
    }

    /* Editor and published date styling */
    .news_detail_editor strong,
    .news_detail_published strong {
        font-size: 1rem;
    }

    .news_detail_published {
        font-size: 0.9rem;
        margin: 5px 0 10px;
    }

    /* Image styling */
    .news_image {
        width: 100%; /* Full width on smaller screens */
        max-width: none; /* Remove max-width restriction */
        border-width: 3px; /* Lighter border */
        border-radius: 5px;
        margin: 10px auto;
    }

    /* Description styling */
    .news_detail_description {
        font-size: 0.9rem; /* Reduce font size */
        padding: 5px 5px;
        line-height: 1.4;
    }

    /* YouTube video container */
    .youtube_container {
        padding-bottom: 20px;
    }

    .youtube_div {
        height: 200px; /* Reduce height for mobile */
    }

    iframe {
        width: 100%; /* Adjust width to fill the container */
        height: 100%; /* Adjust height accordingly */
        border-radius: 5px;
        /* margin: 0px 10px; */
    }
}


/* Back to news list link */
/* Style for the button */
.backnewsclick .button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #ffffff; /* White text */
    background-color: black; /* Accent blue */
    text-decoration: none;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.backnewsclick .button:hover {
    background-color: #FF671F; /* Darker blue */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Optional: Center align the button */
.backnewsclick {
    text-align: center;
    margin-bottom: 30px;
}





/* General Styling */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.home-top-stories {
    margin: 20px 0;
}

.home-top-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Individual Story Styling */
.home-top-story {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}


.latest-news {
    font-size: 30px;
    text-align: center;
    margin: 10px 0;
    color: #ffffff;
}

.home-top-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.home-top-story-image {
    width: 100%;
    height: auto;
    display: block;
}

.home-top-story-title {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 15px;
    color: #333;
    text-align: center;
    line-height: 1.4;
    background: #f9f9f9;
}

.home-no-news {
    font-size: 1rem;
    color: #777;
    text-align: center;
    margin: 20px 0;
}

.contact-footer-page {
    width: 100%;
    position: absolute;
    bottom: 0;
}


.fa.fa-twitter{
	font-family:sans-serif;
}
.fa.fa-twitter::before{
	content:"𝕏";
	font-size:1.2em;
}

