/*
Template Name: Pillarix - Multipurpose Website Template
Author: Pillarix
Author URI: https://wrapbootstrap.com/user/pillarix
Version: 1.0
*/
/*
-- Body
-- Custom Classes 
-- Sidebar Nav
-- Index
-- About
-- Footer
*/
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;500;600;700;800&amp;display=swap');

/* Body */
body {
	font-family: 'Sen', sans-serif;
}
a {
	text-decoration: none;
	color: #1b1b1b;
}
a:hover {
	color: #2BCA74;
}
.tasty-nav  a.nav-link {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
	color: #fff;
}
.tasty-nav  a.nav-link:hover, .tasty-nav  a.nav-link.active {
	color: #FFC2C2;
}

/* Custom Classes */
.three-slider .slick-arrow {
	display: none;
}
.page-link {
	color: #2BCA74;
}
.active>.page-link, .page-link.active {
	background: #2BCA74;
	border-color: #2BCA74;
}
.bg-dark {
	background-color: #FFC2C2 !important;
}
.bg-warning-subtle{
	background-color: #eae7ff !important;
}
.btn-sm {
	font-size: 15px;
	padding: 13px 30px;
}
.btn-lg {
	font-size: 15px;
	padding: 12px 18px;
}
.btn-danger {
	background-color: #2BCA74 !important;
	border-color: #2BCA74 !important;
}
.btn-danger:hover {
	background-color: #3926CA !important;
	border-color: #3926CA !important;
}
.btn-outline-danger {
	color: #2BCA74 !important;
	border-color: #2BCA74 !important;
}
.btn-outline-danger:hover {
	background-color: #2BCA74 !important;
	border-color: #2BCA74 !important;
	color: #fff !important;
}
.text-bg-danger {
	background-color: rgb(82 67 194 / 11%) !important;
	color: #2BCA74 !important;
}
.text-danger {
	color: #2BCA74 !important;
}
.bg-danger {
	background-color: #2BCA74 !important;
}
.osahan-profile-pic {
	height: 150px;
	width: 150px;
	object-fit: cover;
	margin: auto;
}

/* Sidebar Nav */
.sidebar-nav .nav-link.active {
	color: #2BCA74;
}

/* Index */
.by-profile {
	width: 32px;
	height: 32px;
	object-fit: cover;
}
.post-profile {
	width: 33px;
	margin-right: 7px;
	height: 33px;
	object-fit: cover;
}
.store {
	width: 10rem;
}
.icon {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* About */
.terminal-profile {
	width: 80px;
	height: 80px;
	object-fit: cover;
}

/* Footer */
.trending-img {
	width: 60px;
}
.footer-top a:hover {
	color: #2BCA74 !important;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .popup-content {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.5s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  .popup-content h2 {
    font-size: 1.4rem;
    color: #2BCA74;
    margin-bottom: 10px;
  }
  .popup-content p {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .popup-content ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  .popup-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
  }
  .popup-content ul li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    top: 0;
  }
  .popup-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #2BCA74;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  .popup-btn:hover {
    background: #2BCA74;
  }
  .popup-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #aaa;
  }
  @keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }