/*post.htmllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll*/
        /* General Styling */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .share-buttons {
            margin: 20px 0;
            display: flex;
            gap: 10px;
        }
        
        .share-buttons a {
            text-decoration: none;
            font-size: 1.5rem;
            color: #333; /* Default color */
            transition: color 0.3s ease;
        }
        
        .share-buttons a:hover {
            color: #ffe600; /* Change icon color on hover */
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #121212;
            color: #fff;
            line-height: 1.6;
        }

        h1, h2, h3 {
            color: #ffe600; /* Glowing Green Color */
        }

        a {
            text-decoration: none;
            color: #ffe600;
        }

        /* Navbar Styling */
        .navbar {
            background-color: #000;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            max-width: 80px; /* Logo size */
            margin-right: 15px;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 20px;
        }

        .nav-links a {
            color: #fff;
            font-size: 18px;
            transition: color 0.3s ease-in-out;
        }

        .nav-links a:hover {
            color: #ffe600;
        }

        /* Post Details */
        #post-details {
            padding: 20px;
            background-color: #1E1E1E;
            border-radius: 10px;
            margin: 20px auto;
            max-width: 800px;
            text-align: center; /* Center text and images */
        }

        #post-details img {
            width: 400px; /* Fixed width for larger screens */
            height: 300px; /* Fixed height for larger screens */
            object-fit: cover; /* Ensure the image covers the area without distortion */
            border-radius: 8px;
            margin: 20px 0; /* Center the image */
        }
        
        /* Media Query for Mobile */
        @media (max-width: 768px) {
            #post-details img {
                width: 100%; /* Full width on mobile */
                height: auto; /* Maintain aspect ratio */
            }
        }
        
        /* Footer Styling */
        footer {
            background-color: #000;
            padding: 20px;
            text-align: center;
        }

        footer a {
            color: #ffe600;
        }

        /* Bottom Navigation for mobile */
        .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #000;
            padding: 10px 0;
            justify-content: space-around;
            align-items: center;
        }

        .bottom-nav a {
            color: #fff;
            text-align: center;
            flex: 1;
        }

        .bottom-nav a i {
            font-size: 24px;
        }

        .bottom-nav a span {
            display: block;
            font-size: 12px;
        }
        .category {
            display: inline-block;
            background-color: #ffe600; /* Green background */
            color: #000; /* Black text */
            padding: 3px 6px; /* Reduced padding for a smaller tag */
            border-radius: 12px; /* More rounded corners */
            margin-bottom: 8px; /* Space below the category */
            font-size: 12px; /* Smaller font size */
            text-shadow: 0 0 5px #ffe600; /* Glowing effect */
            box-shadow: 0 0 5px #ffe600; /* Reduced glow effect */
        }

        /* Media Query for Mobile */
        @media (max-width: 768px) {
            .navbar .nav-links {
                display: none; /* Hide top nav links on mobile */
            }

            .bottom-nav {
                display: flex; /* Show bottom navigation on mobile */
            }
        }

/*news.htmlllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll
        /* General Styling */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #121212;
            color: #fff;
            line-height: 1.6;
        }

        h1, h2, h3 {
            color: #ffe600; /* Glowing Green Color */
        }

        a {
            text-decoration: none;
            color: #ffe600;
        }

        /* Navbar Styling */
        .navbar {
            background-color: #000;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            max-width: 80px; /* Logo size */
            margin-right: 15px;
        }

        .logo h1 {
            font-size: 24px;
        }

        .slogan {
            font-size: 14px;
            color: #ccc; /* Removed glow from slogan */
            margin-top: 5px;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 20px;
        }

        .nav-links a {
            color: #fff;
            font-size: 18px;
            transition: color 0.3s ease-in-out;
        }

        .nav-links a:hover {
            color: #ffe600;
        }

        /* Search Bar Styling */
        .search-container {
            text-align: center;
            margin: 30px 0;
        }

        .search-bar {
            padding: 10px;
            width: 300px;
            border: 2px solid #ffe600;
            border-radius: 5px;
            background-color: transparent;
            color: #ffe600;
            transition: border-color 0.3s;
        }

        .search-bar:focus {
            outline: none;
            border-color: #fff;
        }

        /* Posts Container */
        .posts-container {
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .post-card {
            background-color: #333;
            color: #fff;
            width: 300px;
            margin: 20px;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px #5c5c5c;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .post-card img {
            width: 500px;
            height: 275px;
            object-fit: cover;
            border-radius: 5px;
        }

        .post-card h3 {
            margin: 15px 0;
            color: #ffe600; /* No glow */
        }

        .post-card small {
            display: block;
            margin-bottom: 10px;
            font-size: 14px;
            color: #aaa;
        }

        /* Footer Styling */
        .footer {
            background-color: #000;
            padding: 20px;
            text-align: center;
        }

        .footer a {
            color: #ffe600;
        }

        /* Bottom Navigation for mobile */
        .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #000;
            padding: 10px 0;
            justify-content: space-around;
            align-items: center;
        }

        .bottom-nav a {
            color: #fff;
            text-align: center;
            flex: 1;
        }

        .bottom-nav a i {
            font-size: 24px;
        }

        .bottom-nav a span {
            display: block;
            font-size: 12px;
        }

        .cta-button {
            padding: 10px 20px;
            border: 2px solid #ffe600;
            background-color: transparent;
            color: #ffe600;
            font-size: 18px;
            transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            box-shadow: 0 0 10px #ffe600; /* Glowing effect on button */
        }

        .cta-button:hover {
            background-color: #ffe600;
            color: #000;
            box-shadow: 0 0 20px #ffe600, 0 0 30px #ffe600; /* Increase glow on hover */
        }

        .category {
            display: inline-block;
            background-color: #ffe600; /* Green background */
            color: #000; /* Black text */
            padding: 3px 6px; /* Reduced padding for a smaller tag */
            border-radius: 12px; /* More rounded corners */
            margin-bottom: 8px; /* Space below the category */
            font-size: 12px; /* Smaller font size */
            text-shadow: 0 0 5px #ffe600; /* Glowing effect */
            box-shadow: 0 0 5px #ffe600; /* Reduced glow effect */
        }



        /* Media Query for Mobile */
        @media (max-width: 768px) {
            .navbar .nav-links {
                display: none; /* Hide top nav links on mobile */
            }

            .bottom-nav {
                display: flex; /* Show bottom navigation on mobile */
            }
        }



/*indexxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

/* Trends Section */
/* Trends Section */
.trends-section {
    background-color: #181818; /* Dark background to match the general layout */
    padding: 60px 20px; /* Spacious padding */
    text-align: center; /* Center-align content */
    color: #fff; /* White text for contrast */
}


.trends-section p {
    font-size: 1.1em;
    color: #ccc; /* Lighter text for readability */
    line-height: 1.6; /* Better line spacing for readability */
    margin-bottom: 30px;
}

.trends-section ul {
    list-style: none; /* Remove default list styling */
    padding-left: 0;
    margin: 0 auto;
    max-width: 800px; /* Limit width for readability */
}

.trends-section ul li {
    background-color: #222; /* Dark background for list items */
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(251, 255, 0, 0.781); /* Subtle green shadow for depth */
    text-align: left; /* Align text to the left */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover effects */
}

.trends-section ul li:hover {
    transform: translateY(-5px); /* Lift on hover */
    box-shadow: 0 5px 15px rgba(251, 255, 0, 0.781); /* More prominent glow on hover */
}

.trends-section ul li strong {
    font-weight: 600;
    color: #ffe600; /* Accent color for the key trends */
}

.trends-section ul li p {
    font-size: 1em;
    color: #ddd; /* Lighter color for paragraph text */
    margin-top: 10px;
}

.trends-section ul li::before {
    content: "\2022"; /* Bullet point */
    color: #ffe600; /* Green for bullet point */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.trends-section ul li:nth-child(odd) {
    background-color: #1e1e1e; /* Slight variation for odd items */
}

.trends-section ul li:nth-child(even) {
    background-color: #282828; /* Slight variation for even items */
}

.trends-section p:last-of-type {
    margin-top: 40px; /* Extra margin before closing statement */
    font-size: 1.1em;
    color: #ffe600; /* Green for call-to-action text */
}
/* FAQ Section */
.faq-section {
    background-color: #181818; /* Dark background */
    padding: 60px 20px;
    color: #fff; /* White text for contrast */
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5em;
    color: #ffe600; /* Glowing green */
    margin-bottom: 40px;
    text-shadow: 0 0 10px #ffe600, 0 0 20px #ffe600; /* Glow effect */
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: #222; /* Dark background for FAQ items */
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(251, 255, 0, 0.781); /* Green shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 5px 15px rgba(251, 255, 0, 0.781); /* More prominent glow on hover */
}

.faq-item h3 {
    font-size: 1.5em;
    color: #ffe600; /* Green for FAQ question */
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.faq-item p {
    font-size: 1em;
    color: #ddd; /* Lighter color for answer text */
    line-height: 1.6;
    display: none; /* Hidden initially */
}

.faq-item.active p {
    display: block; /* Show answer when active */
}

/* Responsive Design */
@media (min-width: 768px) {
    .faq-section h2 {
        font-size: 3em; /* Larger on bigger screens */
    }
    
    .faq-item {
        padding: 25px 40px;
    }
}



/* Responsive design adjustments */
@media (min-width: 768px) {
    .trends-section h2 {
        font-size: 3em; /* Larger heading for bigger screens */
    }

    .trends-section ul li {
        padding: 25px 40px; /* More padding on larger screens */
    }
}


@media (min-width: 768px) {
    .trends-section h2 {
        font-size: 3em; /* Larger heading on bigger screens */
    }

    .trends-section ul li {
        padding: 25px 40px; /* More padding on larger screens */
    }
}

        /* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #ffe600; /* Glowing Green Color */
}

a {
    text-decoration: none;
    color: #ffe600;
}

/* Navbar Styling */
.navbar {
    background-color: #000;
    padding: 15px 20px; /* Consistent padding for desktop */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 80px; /* Logo size */
    margin-right: 15px;
}

.logo h1 {
    font-size: 24px;
}

.slogan {
    font-size: 14px;
    color: #ccc;
    margin-top: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    font-size: 18px;
}

.nav-links a:hover {
    color: #ffe600;
}

/* Main Header Styling */
.main-header {
    position: relative;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('459945806_440254222361676_501998551661838422_n.png') no-repeat center center;
    filter: blur(8px);
    z-index: 0;
    background-size: cover; /* Cover for better responsiveness */
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    max-width: 600px; /* Maintain max width for larger screens */
}

.header-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #ffe600, 0 0 20px #ffe600; /* Keep glow for this header */

}

.header-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* CTA Button Styling */
.cta-button {
    padding: 10px 20px;
    border: 2px solid #ffe600;
    background-color: transparent;
    color: #ffe600;
    font-size: 18px;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 10px #ffe600; /* Glowing effect on button */
}

.cta-button:hover {
    box-shadow: 0 0 20px #ffe600, 0 0 30px #ffe600; /* Increase glow on hover */
    background-color: #ffe600;
    color: #000;
}

/* News Section Styling */
.news-section {
    padding: 50px 20px;
    background-color: #181818;
    text-align: center;
}

.overview-section {
    padding: 50px 20px;
    text-align: center;
}
.Connect {
    padding: 50px 20px;
    text-align: center;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between icons */
}

.social-links li {
    display: inline-block;
}

.social-links a {
    text-decoration: none;
    color: #333; /* Default color */
    font-size: 2rem; /* Increase icon size */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #ffe600; /* Change color on hover */
    transform: scale(1.2); /* Slightly enlarge on hover */
}

.social-links i {
    animation: pulse 1.5s infinite; /* Add a subtle pulse animation */
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Increase size at the midpoint */
    }
}


.posts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center posts */
}

.post-card {
    background-color: #333;
    color: #fff;
    width: 300px; /* Fixed width for desktop */
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #5c5c5c;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
}

.post-card img {
    width: 100%; /* Full width of the card */
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensures images fill the space without distortion */
    border-radius: 5px;
}

.post-card h3 {
    margin: 15px 0;
}

.post-card small {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #aaa;
}


/* About Us Section */
.about-section {
    padding: 50px 20px;
    background-color: #121212;
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
}

/* Footer Styling */
.footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
}

.footer a {
    color: #ffe600;
}

/* Bottom Navigation for mobile */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    padding: 10px 0;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav a {
    color: #fff;
    text-align: center;
    flex: 1;
    padding: 10px 0; /* Increase touch target size */
}

.bottom-nav a i {
    font-size: 24px;
}

.bottom-nav a span {
    display: block;
    font-size: 12px;
}

/* Category Styling */
.category {
    display: inline-block;
    background-color: #ffe600;
    color: #000;
    padding: 3px 6px;
    border-radius: 12px;
    margin-bottom: 8px;
    font-size: 12px;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none; /* Hide top nav links on mobile */
    }

    .bottom-nav {
        display: flex; /* Show bottom navigation on mobile */
    }

    .header-content h2 {
        font-size: 28px; /* Adjusted size for mobile */
    }

    .header-content p {
        font-size: 16px; /* Adjusted size for mobile */
    }

    .post-card {
        width: 90%; /* Full width on mobile */
        max-width: 350px; /* Limit max width on mobile */
        margin: 10px 0; /* Vertical margin for mobile */
    }

    .about-section p {
        font-size: 16px; /* Smaller font size for mobile */
    }
}



/* contact.htmllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll
        /* General Styling */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #121212;
            color: #fff;
            line-height: 1.6;
        }

        h1, h2 {
            color: #ffe600;
        }

        a {
            text-decoration: none;
            color: #ffe600;
        }

        /* Navbar Styling */
        .navbar {
            background-color: #000;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
        display: flex;
        align-items: center;
        }

        .logo img {
            max-width: 80px; /* Logo size */
            margin-right: 15px;
        }

        .logo h1 {
            font-size: 24px;
        }

        .slogan {
            font-size: 14px;
            color: #ccc; /* Removed glow from slogan */
            margin-top: 5px;
        }


        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 20px;
        }

        .nav-links a {
            color: #fff;
            font-size: 18px;
            transition: color 0.3s ease-in-out;
        }

        .nav-links a:hover {
            color: #ffe600;
        }

        /* Main Content Styling */
        .content {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            background-color: #333;
            border-radius: 10px;
            box-shadow: 0 0 15px #5c5c5c;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 5px;
        }

        input, textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ffe600;
            border-radius: 5px;
            background-color: #222;
            color: #fff;
        }

        button {
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            background-color: #ffe600;
            color: #000;
            cursor: pointer;
            transition: background-color 0.3s ease-in-out;
        }

        button:hover {
            background-color: #00cc55;
        }

        /* Footer Styling */
        .footer {
            background-color: #000;
            padding: 20px;
            text-align: center;
        }

        .social-links {
            list-style: none;
            padding: 0;
        }

        .social-links li {
            display: inline;
            margin: 0 10px;
        }

        /* Bottom Navigation for mobile */
        .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #000;
            padding: 10px 0;
            justify-content: space-around;
            align-items: center;
        }

        .bottom-nav a {
            color: #fff;
            text-align: center;
            flex: 1;
        }

        .bottom-nav a i {
            font-size: 24px;
        }

        .bottom-nav a span {
            display: block;
            font-size: 12px;
        }

        /* Media Query for Mobile */
        @media (max-width: 768px) {
            .navbar .nav-links {
                display: none; /* Hide top nav links on mobile */
            }

            .bottom-nav {
                display: flex; /* Show bottom navigation on mobile */
            }
        }


        /*about.htmlllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll
                /* General Styling */
                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                }
        
                body {
                    font-family: 'Arial', sans-serif;
                    background-color: #121212;
                    color: #fff;
                    line-height: 1.6;
                }
        
                h1, h2 {
                    color: #ffe600;
                }
        
                a {
                    text-decoration: none;
                    color: #ffe600;
                }
        
                /* Navbar Styling */
                .navbar {
                    background-color: #000;
                    padding: 15px 20px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }
        
                .logo {
                display: flex;
                align-items: center;
                }
        
                .logo img {
                    max-width: 80px; /* Logo size */
                    margin-right: 15px;
                }
        
                .logo h1 {
                    font-size: 24px;
                }
        
                .slogan {
                    font-size: 14px;
                    color: #ccc; /* Removed glow from slogan */
                    margin-top: 5px;
                }
        
        
                .nav-links {
                    list-style: none;
                    display: flex;
                }
        
                .nav-links li {
                    margin-left: 20px;
                }
        
                .nav-links a {
                    color: #fff;
                    font-size: 18px;
                    transition: color 0.3s ease-in-out;
                }
        
                .nav-links a:hover {
                    color: #ffe600;
                }
        
                /* Main Content Styling */
                .content {
                    max-width: 800px;
                    margin: 40px auto;
                    padding: 20px;
                    background-color: #333;
                    border-radius: 10px;
                    box-shadow: 0 0 15px #5c5c5c;
                }
        
                /* Footer Styling */
                .footer {
                    background-color: #000;
                    padding: 20px;
                    text-align: center;
                }
        
                .social-links {
                    list-style: none;
                    padding: 0;
                }
        
                .social-links li {
                    display: inline;
                    margin: 0 10px;
                }
        
                /* Bottom Navigation for mobile */
                .bottom-nav {
                    display: none;
                    position: fixed;
                    bottom: 0;
                    width: 100%;
                    background-color: #000;
                    padding: 10px 0;
                    justify-content: space-around;
                    align-items: center;
                    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
                }
        
                .bottom-nav a {
                    color: #fff;
                    text-align: center;
                    flex: 1;
                    padding: 10px 0;
                    transition: background-color 0.3s ease;
                }
        
                .bottom-nav a:hover {
                    background-color: rgba(0, 255, 102, 0.3);
                }
        
                .bottom-nav i {
                    display: block;
                    font-size: 20px; /* Adjust icon size */
                }
        
                .bottom-nav span {
                    font-size: 12px; /* Adjust text size */
                }
        
                /* Media Query for Mobile */
                @media (max-width: 768px) {
                    .navbar .nav-links {
                        display: none; /* Hide top nav links on mobile */
                    }
        
                    .bottom-nav {
                        display: flex; /* Show bottom navigation on mobile */
                    }
                }
