
    .bg-gradient-primary {
        background: linear-gradient(90deg, rgba(0,136,255,1) 0%, rgba(69,99,255,1) 50%, rgba(202,103,255,1) 100%);
    }
    .navbar-brand b {
        font-size: 1.5rem;
        transition: transform 0.3s;
    }
    .navbar-brand b:hover {
        transform: scale(1.1);
    }
    .nav-link {
        font-size: 1.1rem;
        margin-right: 0.75rem;
        transition: color 0.3s;
        border-radius: 5px;
        color: #ffffff !important;
    }
    .nav-link:hover, .nav-link.active {
        color: #fbff00 !important;
        background-color: rgba(255, 255, 255, 0.2);
    }
    .navbar-nav .dropdown-menu {
        background: linear-gradient(90deg, rgba(0,136,255,1) 0%, rgba(69,99,255,1) 50%, rgba(202,103,255,1) 100%);
        border: none;
        border-radius: 5px;
    }
    .navbar-nav .dropdown-item {
        color: #fff;
        transition: background-color 0.3s;
    }
    .navbar-nav .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    .form-control {
        border-radius: 50px;
        border: 2px solid #006828;
        transition: border-color 0.3s, box-shadow 0.3s;
    }
    .form-control:focus {
        border-color: #ffd700;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    .btn-outline-light {
        border: 2px solid #fff;
        color: #fff;
        transition: all 0.3s;
    }
    .btn-outline-light:hover {
        background-color: #ffd700;
        color: #000;
        border-color: #ffd700;
    }





body {
    background: linear-gradient(to bottom, #f3f4f6, #e3f2fd); /* Soft gradient */
    /* background-image: url('background.jpg');/ */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #333; /* Dark text for readability */
}

/* Blog Content Background */
.container {
    background-color: rgba(255, 255, 255, 0.95); /* Light white with transparency */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Main Blog Cards */
.card {
    background: #fff; /* Solid white */
    border: none; /* Clean look */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Category and Recent Posts Sidebar */
.list-group {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.list-group-item {
    background: transparent;
    color: #333;
    border: none;
    transition: background 0.3s;
}

.list-group-item:hover {
    background-color: #e3f2fd;
    color: #1e88e5;
}

/* Popular Posts Section */
.d-flex.flex-wrap .card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
}

/* Titles and Headings */
h1, h3 {
    color: #1e88e5; /* Blue primary color */
}

h5 {
    font-size: 2vw;
    color: #444;
}

/* Buttons */
.btn-primary {
    background-color: #1e88e5;
    border: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #1565c0;
}


/* background color  */
img {
	max-width: 100%;
	/* height: 300px; */
    object-fit: cover;
}
.main-banner {
	width: 100%;
	height: 50vh;
	background: url("../img/welcome.jpg") center;
	background-size: 100%;
}
.main-blog-card {
	width: 90%;
}
.category-aside {
	width: 100%;
}
.main-blog {
	width: 70%;
}
.aside-main {
	width: 30%;
}

.w-450 {
	width: 450px;
}
.vh-100 {
	min-height: 100vh;
}
/*admin*/
.section-1 {
	width: 100%;
	padding: 15px;
}
.main-table {
   width: 90%;
   max-width: 700px;
}
.react-btns i {
	font-size: 24px;
	color: #222;
	cursor: pointer;
}
.react-btns a  {
	text-decoration: none;
	color: #222;
	cursor: pointer;
}
.react-btns a:hover  {
	opacity: .8;
}
.react-btns .like:hover  {
	color: #0088FF;
}
.react-btns .liked  {
	color: #0088FF;
}
.comments .comment span {
   color: #0088FF;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .aside-main {
  	display: none;
  }
  .main-blog {
	width: 100%;
  }
  .main-blog-card {
	width: 100%;
}
}