/*
Theme Name: Banglafeel.top 
Theme URI: https://banglafeel.top/
Author: SA Samim
Author URI: https://banglafeel.top/
Description: A responsive blog theme based own designe.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: myblog
Tags: blog, responsive, news, custom-menu
*/

/* ======= Reset & Universal ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
	font-size:22px;
}
a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ffc107;
}

/* ======= Top Bar ======= */
.top-bar {
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
.social-icons a {
  color: #333;
  margin-right: 12px;
}
.social-icons a:hover {
  color: #ffc107;
}

/* ======= Navbar ======= */
.navbar-brand {
  font-weight: bold;
}
.navbar-nav .nav-link {
  margin-right: 20px;
  text-transform: uppercase;
}
.navbar-nav .nav-link:hover,
.navbar-nav .current-menu-item .nav-link {
  color: #ffc107 !important;
}
form input.form-control {
  border-radius: 20px 0 0 20px;
}
form button.btn-warning {
  border-radius: 0 20px 20px 0;
}

/* ======= Blog Cards ======= */
.card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card-title {
  font-size: 1.4rem;
  font-weight: 600;
}
.card-text {
  color: #555;
}
.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ======= Sidebar ======= */
.sidebar h4 {
  margin-top: 20px;
  font-weight: bold;
}
.list-group-item {
  border: none;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.list-group-item:last-child {
  border-bottom: none;
}
.sidebar a {
  color: #333;
}
.sidebar a:hover {
  color: #ffc107;
}

/* ======= Footer ======= */
footer {
  background-color: #222;
  color: #ccc;
}
footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li i {
  margin-right: 8px;
}
footer a {
  color: white;
	transition: letter-spacing 1s ease-in-out;
}
footer a:hover {
  color: blue;
  text-decoration: none;
	letter-spacing:1px;
}
footer .border-top {
  border-color: #444 !important;
}

/* ======= Buttons ======= */
.btn-warning {
  color: #000;
  background-color: #ffc107;
  border: none;
}
.btn-warning:hover {
  background-color: #e0a800;
}

/* ======= Pagination ======= */
.page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
}
.page-numbers.current {
  background-color: #ffc107;
  color: #000;
  border-color: #ffc107;
}
.page-numbers:hover {
  background-color: #ffc107;
  color: #000;
  border-color: #ffc107;
}

/* ======= Widget ======= */
.widget {
  margin-bottom: 30px;
}
.widget-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffc107;
  display: inline-block;
}
.widget ul {
  padding-left: 0;
  list-style: none;
}
.widget ul li {
  margin-bottom: 10px;
}
.widget ul li a {
  color: #333;
}
.widget ul li a:hover {
  color: #ffc107;
}

/* ======= Search Widget ======= */
.widget_search input.search-field {
  width: calc(100% - 50px);
  border-radius: 20px 0 0 20px;
}
.widget_search input.search-submit {
  border-radius: 0 20px 20px 0;
  background-color: #ffc107;
  border: none;
  color: #000;
  padding: 8px 16px;
}
.widget_search input.search-submit:hover {
  background-color: #e0a800;
}

/* ======= Responsive ======= */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .form-inline {
    width: 100%;
    margin-top: 10px;
  }
  form input.form-control {
    width: 70%;
  }
  form button.btn-warning {
    width: 30%;
  }
  .top-bar {
    flex-direction: column;
    text-align: center;
  }
  .social-icons {
    margin-bottom: 5px;
  }
}
/* ====== Post Typography ====== */
.post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}
<style>
/* H2 Heading Design */

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-weight: bold;
  color: #333;
  border-left: 8px solid #ff4f81;
  padding-left: 15px;
  margin: 30px 0 15px;
  font-size: 1.4em;
	background:lightgray;
}
/* Blockquote Design */
blockquote {
  background: #fff9fb;
  border-left: 5px solid #ff4f81;
	border-right: 5px solid #ff4f81;
  padding: 15px 20px;
  margin: 40px 10;
  font-style: italic;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  font-size: 22px;
  color: #444;
  
  border-radius: 8px;
}

blockquote::before {
  content: "❝";
  font-size: 40px;
  color: #ff4f81;
  position: absolute;
  top: -10px;
  left: 10px;
  opacity: 0.2;
}

blockquote::after {
  content: "❞";
  font-size: 40px;
  color: #ff4f81;
  position: absolute;
  bottom: -15px;
  right: 10px;
  opacity: 0.2;
}

.post-content p {
  margin-bottom: 20px;
	font-size:18px;
}
.post-content ul, 
.post-content ol {
  margin-bottom: 20px;
  padding:8px;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 6px;
}
.author-box {
  border-left: 4px solid #ffc107;
}
.related-posts h4 {
  border-bottom: 2px solid #ffc107;
  display: inline-block;
  padding-bottom: 5px;
}

/* ====== Comment ====== */
.comment-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.comment-list .comment-body {
  display: flex;
}
.comment-list .comment-author .avatar {
  border-radius: 50%;
  margin-right: 15px;
}
.comment-list .comment-content {
  flex: 1;
}
.comment-list .comment-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
}
.comment-list .reply {
  margin-top: 10px;
}
.comment-list .reply a {
  color: #ffc107;
  font-weight: 500;
}
.comment-list .reply a:hover {
  text-decoration: underline;
}
.comment-form input, 
.comment-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 5px;
}
.comment-form input:focus, 
.comment-form textarea:focus {
  outline: none;
  border-color: #ffc107;
}

 
  
}

/* Code Styling */
code {
  background-color: #f4f4f4;
  color: #d63384;
  padding: 2px 5px;
  border-radius: 4px;
  font-family: monospace;
}

/* Preformatted */
pre {
  background-color: #222;
  color: #eee;
  padding: 15px;
  border-radius: 8px;
  overflow-x: auto;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
table th, table td {
  border: 1px solid #ddd;
  padding: 10px 15px;
  text-align: left;
}
table th {
  background-color: #f8f8f8;
  color: #111;
}
table tr:nth-child(even) {
  background-color: #fafafa;
}





/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Horizontal Line */
hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 40px 0;
}

/* Strong and Emphasis */
strong {
  color: #000;
  font-weight: bold;
}
em {
  color: #666;
  font-style: italic;
}

/* Caption */
figcaption {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-top: 8px;
}

/* ===== Section Wrapper ===== */
.bn24-post-section {
  background: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.bn24-post-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}


/* ===== Section Title ===== */
.bn24-section-title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #222;
  padding: 12px 18px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color, #4CAF50);
  background: linear-gradient(to right, #f7f7f7, #fff);
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  width: 100%;
  box-sizing: border-box;
}

.bn24-section-title:hover {
  box-shadow: 0 5px 10px rgba(0,0,0,0.12);
}

/* Title Variations */
.bn24-section-title.fire {
  border-left-color: #FF5722;
}

.bn24-section-title.new {
  border-left-color: #2196F3;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .bn24-section-title {
    font-size: 20px;
    padding: 10px 14px;
  }
  .bn24-post-section {
    padding: 15px;
  }
}


.widget {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
    margin-bottom: 15px;
    color: #333;
}
footer ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: #ffc107;
}
footer list-unstyled li{color:white;}

  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.bn24-premium-nav {
  background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
  color: white;
  padding: 12px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  margin: 0 auto;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: #4ca1af #2c3e50;
}

.bn24-premium-nav::-webkit-scrollbar {
  height: 6px;
}

.bn24-premium-nav::-webkit-scrollbar-track {
  background: #2c3e50;
  border-radius: 3px;
}

.bn24-premium-nav::-webkit-scrollbar-thumb {
  background: #4ca1af;
  border-radius: 3px;
}

.nav-scroll-container {
  display: inline-flex;
  gap: 15px;
  padding: 0 20px;
}

.nav-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  min-width: 80px;
  background: rgba(255,255,255,0.1);
}

.nav-item:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.nav-item i {
  font-size: 20px;
  margin-bottom: 5px;
}

.nav-label {
  font-size: 14px;
  font-weight: 500;
}

/* Active state */
.nav-item.active {
  background: rgba(255,255,255,0.3);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-item {
    padding: 8px 12px;
    min-width: 70px;
  }
  
  .nav-label {
    font-size: 12px;
  }
  
  .nav-item i {
    font-size: 18px;
  }
}

/* Container and Layout */
.container {
  max-width: 1200px;
}

/* Featured Image */
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

/* Title */
h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

/* Meta Info */
.text-muted {
  color: #666 !important;
}
.text-muted i {
  color: #ff9800;
}

/* Tags */
.mt-4 strong {
  color: #222;
}
.mt-4 a {
  background: #ff9800;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 6px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
}
.mt-4 a:hover {
  background: #e07b00;
}

/* Author Box */
.author-box {
  background-color: #fafafa;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.author-avatar img {
  border-radius: 50%;
  border: 3px solid #ff9800;
}
.author-box h5 {
  color: #222;
  font-weight: 600;
}
.author-box p {
  color: #555;
  font-size: 0.95rem;
}

/* Related Posts */
.related-posts h4 {
  font-weight: 700;
  border-bottom: 2px solid #ff9800;
  padding-bottom: 6px;
  color: #222;
}
.related-posts .card {
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.related-posts .card:hover {
  transform: translateY(-5px);
}
.related-posts .card-img-top {
  border-radius: 12px 12px 0 0;
}
.related-posts .card-title {
  font-size: 1rem;
  line-height: 1.4;
}
.related-posts .card-title a {
  color: #222;
  text-decoration: none;
}
.related-posts .card-title a:hover {
  color: #ff9800;
}

/* Comments Section */
.comments h4 {
  font-weight: 700;
  color: #222;
  border-bottom: 2px solid #ff9800;
  padding-bottom: 6px;
}
.comment-list li {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
}
.comment-list .avatar {
  border-radius: 50%;
}
.comment-meta {
  font-weight: 600;
  color: #222;
}
.comment-content {
  margin-top: 0.5rem;
  color: #444;
}

/* Comment Form */
.comment-form input,
.comment-form textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: none;
  padding: 10px 15px;
  width: 100%;
  background: #fff;
  transition: border-color 0.3s ease;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #ff9800;
  outline: none;
}
.comment-form button {
  background-color: #ff9800;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.comment-form button:hover {
  background-color: #e07b00;
}

/* Sidebar Widgets (Optional Styling) */
.widget {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  padding: 1.5rem;
}
.widget h2 {
  font-size: 1.2rem;
  border-bottom: 2px solid #ff9800;
  padding-bottom: 8px;
  margin-bottom: 1rem;
  color: #222;
}
.widget ul {
  padding-left: 1.2rem;
}
.widget ul li {
  margin-bottom: 0.7rem;
}
.widget ul li a {
  color: #333;
  text-decoration: none;
}
.widget ul li a:hover {
  color: #ff9800;
}
.author-box {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 40px 0;
    align-items: center;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.author-info {
    flex: 1;
}

.author-name {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.author-name a {
    color: inherit;
    text-decoration: none;
}

.author-bio {
    margin-bottom: 15px;
    color: #666;
}

.view-profile-link {
    display: inline-block;
    padding: 8px 15px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-profile-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar img {
        width: 80px;
        height: 80px;
    }
}
/* =Premium Page Styles
----------------------------------------------- */
.premium-page-wrapper {
    position: relative;
    overflow-x: hidden;
}

.dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.dynamic-background.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-sections {
    position: relative;
    z-index: 1;
    background-color: rgba(255,255,255,0.9);
}

.standard-content-section {
    padding: 8rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    z-index: 100;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease-out;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .standard-content-section {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .parallax-image {
        background-attachment: scroll;
    }
}