@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* #56ff83 green night previous */
:root {
  /* 🌸 BACKGROUNDS */
  --bg-daymode: #fff0f5; /* light pink white */
  --bg-darkmode: #1a0f17; /* deep rose black */
  
  /* 🩰 CARDS */
  --bg-card-day: #ffe4ec; /* pastel pink */
  --bg-card-night: #3a1f2f; /* muted plum pink */
  
  /* 💗 SIDEBAR */
  --bg-sidebar-day: #ff85a2; /* vivid pink */
  --bg-sidebar-night: #4a1c33; /* dark rosy tone */
  
  /* 🎀 MENU ACTIVE STATES */
  --bg-menu-active: #ffb6c1; /* light pink active */
  --dark-bg-menu-active: #c94f7c; /* bright magenta active */
  
  /* 🌷 BUTTONS & HIGHLIGHTS */
  --bg-filter-btn: #ff66a3; /* bright pink */
  --bg-secondary: #ff80ab; /* accent pink */
  
  /* ✨ TEXT COLORS */
  --text-white: #ffffff;
  --text-black: #1f1f1f;
  --text-primary: #ff69b4; /* hot pink */
  --dark-text-primary: #ffb6c1; /* soft pink in dark mode */
  
  /* 💅 INPUT FIELDS */
  --bg-input: #ffeef2; /* soft pink background */
  --dark-bg-input: #2a1623; /* dark rose pink */
  
  /* 💖 BADGES (STATUS COLORS) */
  --badges-pending: #ffb6c1;
  --badges-inprogress: #ff69b4;
  --badges-completed: #ff4081;
  --badges-partials: #d1477f;
  --badges-canceled: #d32f2f;
  --badges-processing: #ad1457;
  
  /* 🌸 HOME / HERO TEXT */
  --home-hero-top-text: #e75480; /* deep pink headline */
  --home-btn-hover: #ff4081; /* neon pink hover */
}
/* 🌸 PINK THEME STYLE */
body {
  font-family: 'Poppins', sans-serif;
}

body.noAuth {
  background: #fff0f5; /* light pink white */
}

.hidden {
  display: none;
}

.dashboard {
  background: var(--bg-daymode);
}

/* 🌷 Navbar offset */
#notLogin {
  padding-top: 73px;
}

/* 💖 Navbar */
#navbar {
  position: fixed;
  width: 100%;
  z-index: 99;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.4); /* soft pink shadow */
}

/* 🌺 Sidebar */
#main_container .sidebar {
  position: fixed;
  width: 300px;
  min-height: 100vh;
  transition: 0.5s;
  z-index: 9;
  background: linear-gradient(45deg, #ffb6c1, #ff69b4); /* pink gradient */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  color: #fff;
}

#main_container .sidebar .sidebar_top {
  padding: 0px 20px;
}

#main_container.toogle_sidebar .sidebar {
  transform: translate(-300px);
}

#main_container .sidebar_menu::-webkit-scrollbar {
  display: none;
}

/* 🩰 Dropdown Menu (Order History) */
.order_history {
  position: relative;
}

.order_history > button {
  width: 100%;
  border: transparent;
  background: transparent;
  color: var(--text-primary);
  font-weight: 500;
}

.order_history .dropdown-menu {
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
  border-color: transparent;
  border-radius: 10px;
  margin-bottom: 4px;
  padding: 5px;
  color: var(--text-black);
  box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

/* 🌸 Sidebar Logo */
#main_container .sidebar .logo {
  width: 85%;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 8px;
}

#main_container .sidebar .logo .logo_img {
  margin-top: 2px;
  margin-bottom: 10px;
}

a.navbar-brand img {
  max-width: 230px;
}

/* 💗 Day Mode Sidebar (Soft Gradient) */
.dashboard #main_container .sidebar {
  background: linear-gradient(45deg, #ffc0cb, #ff69b4);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}

/* 🌹 Night Mode Sidebar (Deep Pink Gradient) */
.dashboard.nightmode #main_container .sidebar {
  background: url(https://cdn.mypanel.link/agrmdw/di5o3mx3h3rlznac.png),
              linear-gradient(45deg, var(--bg-sidebar-night), #8b2b50);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}
/* 🌸 PINK THEME – CONTENT AREA STYLES */

#main_container .content_area {
  width: 100%;
  min-height: 100vh;
  padding-left: 300px;
  transition: 0.5s;
  z-index: -1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#main_container .content_area .content {
  padding-top: 70px;
  width: 100%;
}

#main_container .content_area .top_header {
  position: fixed;
  width: calc(100% - 300px);
  height: 65px;
  z-index: 1;
  transition: 0.5s;
}

#main_container.toogle_sidebar .content_area {
  padding-left: 0px;
}

#main_container.toogle_sidebar .content_area .top_header {
  width: 100%;
}

/* 💖 TOP HEADER */
.dashboard #main_container .top_header {
  background: linear-gradient(90deg, #ffb6c1, #ff69b4);
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.dashboard.nightmode #main_container .top_header {
  background: linear-gradient(90deg, var(--bg-sidebar-night), #7a2e4d);
  box-shadow: 0px -20px 20px var(--bg-darkmode);
}

/* 🌷 CONTENT AREA BACKGROUND */
.dashboard #main_container .content_area {
  background: var(--bg-daymode);
}

.dashboard.nightmode #main_container .content_area {
  background: var(--bg-darkmode);
}

/* 🌙 NIGHTMODE TEXT COLOR */
.nightmode h1,
.nightmode h2,
.nightmode h3,
.nightmode h4,
.nightmode h5,
.nightmode h6,
.nightmode p,
.nightmode ul,
.nightmode li,
.nightmode .help-block {
  color: #fff;
}

/* 💅 BUTTON */
button.btn.btn-default.btn-big-secondary.clear-datetime {
  background: #ff4081; /* pink button */
  height: 100%;
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

button.btn.btn-default.btn-big-secondary.clear-datetime:hover {
  background: #ff6699;
  transform: scale(1.05);
}

/* 🌸 NAV PILLS */
.nav-pills .nav-link {
  color: #1a1a1a;
  border-radius: 10px;
  transition: 0.5s;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: linear-gradient(135deg, #ff9a9e, #ffb6c1, #fff0f5, #ff69b4);
  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;
  color: #fff !important;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
}

.dashboard.nightmode .nav-pills .nav-link.active,
.dashboard.nightmode .nav-pills .show > .nav-link {
  background: linear-gradient(135deg, #c94f7c, #8b2b50);
}

/* 🌺 TAB WRAPPER */
.tab_btn_wrap {
  background: linear-gradient(135deg, #ffb6c1, #ff69b4, #ffe4e1, #f78ca0);
  background-size: 400% 400%;
  display: inline-flex;
  padding: 10px;
  border-radius: 15px;
  animation: gradientFlow 6s ease infinite;
  box-shadow: 0 0 12px rgba(255, 182, 193, 0.4);
}

/* 🌈 GRADIENT ANIMATIONS */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* 🌸 PINK THEME CONTINUATION */

/* Gradient animation */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* 💕 Input fields inside tab buttons */
.tab_btn_wrap .nav-item input,
.tab_btn_wrap .nav-item input:focus {
  background: #ffe4ec;
  color: #222;
  border-radius: 8px;
  border: none;
  transition: 0.3s;
}

.tab_btn_wrap .nav-item input:focus {
  box-shadow: 0 0 0 2px rgba(255, 105, 180, 0.4);
}

.nightmode .tab_btn_wrap .nav-item input {
  background: #2a2438;
  color: #fff;
}

/* 🌙 Nightmode tab button wrapper */
.dashboard.nightmode .tab_btn_wrap {
  background: #151428;
  box-shadow: 0 0 8px rgba(255, 105, 180, 0.2);
}

/* 💄 Nav link styling */
.dashboard.nightmode .nav-pills .nav-link {
  color: #fff;
}

/* 🩰 Labels */
.dashboard label {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.35rem;
  font-size: 16px;
  font-weight: 500;
  color: #7e2a54; /* Deep pink for labels */
}

.dashboard.nightmode label {
  color: #ffcce5; /* Soft pink in dark mode */
}

/* 🌷 Form groups */
.dashboard .form-group {
  margin-bottom: 1rem;
}

/* 🌸 Input Fields */
.dashboard .form-control {
  background: var(--bg-input);
  height: 45px;
  border-radius: 10px;
  border: 1px solid #ffc0cb;
  color: var(--text-black);
  outline: 0 !important;
  transition: 0.3s;
}

.dashboard .form-control:focus {
  background: #fff0f5;
  box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.4);
  border-color: #ff69b4;
}

.dashboard.nightmode .form-control {
  background-color: var(--dark-bg-input);
  color: #fff;
  border: 1px solid #ff69b4;
}

/* 🌺 Primary Button */
.dashboard .btn-primary {
  padding: 10px 10px;
  border-radius: 5px;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #ff85a1, #ff4081, #ff9a9e);
  border: none;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.6);
  transition: all 0.3s ease;
}

.dashboard .btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff6699, #ff4081);
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.7);
}

.dashboard.nightmode .btn-primary {
  background: linear-gradient(135deg, #ff85a1, #c94f7c);
  color: #151428;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.4);
}

/* 🧁 User Data Card */
.user_data {
  background: linear-gradient(135deg, #ffd6e0, #ffb6c1);
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  border: 2px inset #fff;
  box-shadow: 5px 5px 10px rgba(255, 105, 180, 0.3);
  transition: 0.3s ease;
}

.user_data:hover {
  transform: translateY(-3px);
  box-shadow: 5px 10px 20px rgba(255, 182, 193, 0.5);
}

.user_data .total_data {
  padding: 15px;
}

.nightmode .user_data {
  background: linear-gradient(135deg, #2a2438, #4a2b3b);
  border: 1px solid #ff69b4;
  box-shadow: 5px 5px 10px rgba(255, 105, 180, 0.2);
}
/* 🌸 USER CARD & PROFILE SECTION */

.user_data .user_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* 💗 Badge ribbon (was blue) → bright pink gradient */
.user_data .user_badges {
  position: absolute;
  width: 160px;
  height: 25px;
  background: linear-gradient(135deg, #ff85a1, #ff4081);
  border: 2px inset #fff;
  top: 22px;
  transform: rotate(45deg);
  right: -48px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
  transition: 0.3s;
}

.user_data .user_badges:hover {
  background: linear-gradient(135deg, #ff99b8, #ff5fa2);
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.6);
}

.nightmode .user_data .user_badges {
  background: linear-gradient(135deg, #c94f7c, #ff85a1);
  border: 2px solid #ffb6c1;
}

/* 🩷 Badge text */
.user_data .user_badges h4 {
  margin: 0;
  font-size: 14px;
  color: var(--text-white);
  font-weight: bold;
}

.nightmode .user_data .user_badges h4 {
  color: var(--bg-darkmode);
}

/* 🌷 User info message text */
.user_data .user_info .msg {
  font-size: 18px;
  font-weight: 500;
  color: #ff69b4; /* pink accent */
}

/* 💞 Avatar style */
.v2_avatar img {
  width: 85px;
  margin-bottom: 8px;
  border: 3px solid #fff;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.4);
}

/* ✨ User name under avatar */
.v2_user_info h5 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: capitalize;
  margin: 0;
}

/* 💖 Highlighted user info text */
.user_data .user_info h2 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

/* 👤 Avatar small version */
.user_data .avatar {
  width: 60px;
}

/* 💸 User balance ribbon */
.user_data .user_balance {
  min-width: 150px;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #ff99b8, #ff4081);
  color: #fff;
  border: 2px inset #fff;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
  transition: 0.3s;
}

.user_data .user_balance:hover {
  background: linear-gradient(135deg, #ffb6c1, #ff6699);
  transform: scale(1.03);
}

.nightmode .user_data .user_balance {
  background: linear-gradient(135deg, #c94f7c, #ff85a1);
  color: #151428;
  border: 1px solid #ffb6c1;
}
/* 🌸 SIDEBAR MENU */

.sidebar_menu {
  margin-top: 25px;
  position: relative;
  height: calc(100vh - 311px);
  overflow: auto;
  padding: 0px 20px;
}

/* 💕 Sidebar menu items */
.sidebar_menu .menu_item {
  background: transparent;
  text-decoration: none;
  color: #fff;
  display: flex;
  gap: 8px;
  padding: 5px 15px;
  margin-bottom: 3px;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
}

.sidebar_menu .menu_item:hover {
  background: rgba(255, 182, 193, 0.25);
  box-shadow: 0 0 8px rgba(255, 192, 203, 0.3);
  transform: translateX(3px);
}

/* 💖 Active menu item */
.sidebar_menu .menu_item.active {
  background: linear-gradient(135deg, #ff85a1, #ff4081, #ff99b8);
  box-shadow: 0 5px 10px rgba(255, 105, 180, 0.5);
  border: 2px solid #ffe4ec;
  color: #fff;
}

.nightmode .sidebar_menu .menu_item.active {
  background: linear-gradient(135deg, #c94f7c, #ff85a1);
  color: #151428;
  box-shadow: 0 4px 10px rgba(255, 182, 193, 0.4);
}

.sidebar_menu .menu_item.active .menu_icon i {
  color: var(--text-white);
}

.nightmode .sidebar_menu .menu_item.active .menu_icon i {
  color: var(--bg-darkmode);
}

/* 🌷 PAGE INFO SECTION */
#page_info {
  display: flex;
  justify-content: center;
  margin: 10px 35px;
}

#page_info .item h4 {
  color: #232323;
  font-size: 18px;
  font-weight: 500;
}

#page_info .item h4 .sp_text_primary {
  color: #ff4081; /* pink highlight text */
  font-weight: 800;
}

.nightmode #page_info .item h4 {
  color: #fff;
}

.nightmode #page_info .item h4 .sp_text_primary {
  color: #ffb6c1;
}

/* 💞 CARD DESIGN */
.card.card_v2 {
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s ease;
}

.card.card_v2 .card-body {
  padding: 1rem;
  margin: 0;
}

/* 🩰 Dashboard card (light mode) */
.dashboard .card.card_v2 {
  background: linear-gradient(135deg, #ffe6ee, #ffd6e0);
  box-shadow: inset 2px 0px 6px rgba(255, 105, 180, 0.3),
              0 2px 10px rgba(255, 192, 203, 0.4);
  margin-bottom: 15px;
  border: 1px solid #ffd6e0;
}

/* 🌙 Dashboard card (dark mode) */
.dashboard.nightmode .card.card_v2 {
  background: linear-gradient(135deg, #2a2438, #4a2b3b);
  box-shadow: inset 2px 0px 4px rgba(255, 182, 193, 0.3);
  border: 1px solid #ffb6c1;
}

.card.card_v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}
.card-body.shadow_top {
    box-shadow: inset 4px 10px 5px #ffb6c1;
    border-radius: 15px;
}

/* Table */
#table.services_page {
    padding: 10px;
}

#table .catetitle td {
    padding: 8px 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff4f9e, #ff82b2, #ffc2d9);
    color: #fff;
    border-radius: 0;
}

.dashboard.nightmode #table .catetitle td {
    background: #ffb6d5;
    color: #1b0e17;
}

#table .table tr {
    background: #fff;
}

.dashboard.nightmode #table .table tr {
    background: #2b1823;
    color: #fff !important;
}

#table .table tr:nth-child(even) {
    background: #ffe8f0;
}

.dashboard.nightmode #table .table tr:nth-child(even) {
    background: #1e1021;
}

.dashboard #table .btn-primary.btn_serv {
    font-size: 14px;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50px;
    box-shadow: none;
    background: #ff4f9e;
}

.dashboard.nightmode #table .btn-primary.btn_serv {
    background: #ffb6d5;
    color: #1b0e17;
}

.dashboard #table .btn-primary.btn_serv:hover {
    background: #ff7ab8;
    color: #1b0e17;
}

.dashboard.nightmode #table .btn-primary.btn_serv:hover {
    background: #ff9cc2;
    color: #1b0e17;
}

.dashboard #table .btn-primary.btn_serv.btn_detail {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group-btn > button {
    background: #ff4f9e;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    display: flex;
    align-items: center;
}

.input-group-btn > button i {
    color: #fff;
}

.dashboard.nightmode .input-group-btn > button {
    background: #ffb6d5;
}

.noAuth #top_services {
    padding-top: 50px;
}

.service_button_filter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 50px));
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.service_button_filter .btn_ser_filter {
    background: #ff9cc2;
    border: none;
    padding: 10px 0px;
    border-radius: 10px;
    box-shadow: none;
    color: #fff;
    font-size: 18px;
}

.btn_ser_filter.btn_all {
    background: #ff4f9e;
    color: #fff;
}

.dashboard.nightmode .btn_ser_filter.btn_all {
    background: #ffb6d5;
}

.btn_ser_filter.btn_fb {
    background: #ff6699;
}

.btn_ser_filter.btn_tw {
    background: #ff85b3;
}

.btn_ser_filter.btn_ig {
    background: linear-gradient(90.28deg, #ff4f9e -5.68%, #ff7ab8 49.27%, #ffc2d9 99.81%);
    color: #fff;
}

.btn_ser_filter.btn_in {
    background: #ff7ab8;
}

.btn_ser_filter.btn_yt {
    background: #ff004d;
    color: #fff;
}

.btn_ser_filter.btn_sp {
    background: #ff85c1;
    color: #fff;
}

.btn_ser_filter.btn_tik {
    background: #ff007f;
}

.btn_ser_filter.btn_dis {
    background: #ff7ab8;
}

.btn_ser_filter.btn_traffic {
    background: #ffccd9;
    color: #232323;
}

/*
*
*
* New Order Page Design
*
*/

.card {
    transition: 0.5s;
}

.dashboard.nightmode .card {
    background-color: #2b1823;
}

.filter_btn_wrap {
    display: grid;
    gap: 10px 10px;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
}

.filter_btn_wrap .btn_filter {
    font-size: 18px;
    text-transform: capitalize;
    border: none;
    padding: 3px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    background: linear-gradient(135deg, #ff4f9e, #ff82b2, #ffc2d9, #ff9cc2);
    background-size: 400% 400%;
    color: #fff;
    border: 2px solid #ffbcd2;
    animation: gradientMove 6s ease infinite;
    transition: 0.4s;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ✅ Icons stay still — removed motion */
.btn_filter i {
    display: inline-block;
    color: #fff;
    transition: color 0.3s;
}

.dashboard.nightmode .category_filter_wrap .card {
    background: transparent !important;
    box-shadow: none;
    border: none !important;
}

.category_filter_wrap .card.card_v2 {
    background: transparent;
    box-shadow: none;
    border: 0;
}

.category_filter_wrap .card.card_v2 .card-body {
    padding: 0 !important;
}

.dashboard.nightmode .filter_btn_wrap .btn_filter {
    background: #2b1823;
    box-shadow: none;
    color: #fff;
    border: 2px solid #ffb6d5;
}

.search-orders-at-new-order {
    margin-top: -5px;
    margin-bottom: 10px;
}

.dashboard.nightmode .filter_btn_wrap .btn_filter:hover,
.dashboard.nightmode .filter_btn_wrap .btn_filter.activeItem {
    background: #ffb6d5;
    color: #000;
}

#minmax_value {
    color: #000;
}
.dashboard.nightmode #minmax_value {
    color: #fff;
}

/* Hover & Active state */
.btn_filter:hover,
.btn_filter.activeItem {
    background: #ffb6d5;
    border-color: #ff4f9e;
}

/* Details Section */
.dashboard .details_data {
    margin-bottom: 15px;
}

.dashboard .details_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dashboard .details_data .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    gap: 15px;
    background: #ffe6ef;
    padding: 12px;
    border-radius: 15px;
    transition: 0.3s;
}

.dashboard .details_data .item:hover {
    background: #ffd1e5;
}

.dashboard.nightmode .details_data .item {
    background: #2b1823;
}

.dashboard .details_data .item .item_left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard .details_data .item .item_left h3 {
    margin-bottom: 0px;
}

/* Icon styling (no movement) */
.dashboard .details_data .item .icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
    text-align: center;
    line-height: 30px;
    background: #ffb6d54a;
    color: #ff4f9e;
    border-radius: 50px;
}

.dashboard.nightmode .details_data .item .icon {
    background: #422233;
    color: #ffb6d5;
}

.dashboard .descriptions_box {
    background: #ffe6ef;
    padding: 10px;
    border-radius: 15px;
}

.dashboard.nightmode .descriptions_box {
    background: #2b1823;
    color: #fff;
}

.dashboard .details_data .item .item_content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #ff4f9e;
}

.dashboard .details_data .item .item_content p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #333;
}

.dashboard.nightmode .details_data .item .item_content {
    color: #fff;
}

/* Top Bar */
.top_head_wrap {
    background: linear-gradient(90deg, #ff4f9e, #ff82b2, #ffc2d9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
}

.top_head_wrap .item {
    display: flex;
    align-items: center;
}

/* User Settings Icons */
.user_settings {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user_settings .telegram {
    background-color: #ff4f9e;
    color: #fff;
    font-size: 28px;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.user_settings .telegram:hover {
    background: #ff7ab8;
    color: #fff;
}

.dashboard.nightmode .user_settings .telegram {
    background: #ffb6d5;
    color: #1b0e17;
}
/* Dropdowns */
#dropdownMenu3 {
    text-align: left;
}
#order-dd {
    text-align: left;
}
#newOrderTabsWrap .dropdown,
#newOrderTabsWrap .dropdown .form-control {
    min-height: 40px;
    height: auto;
}
#category-drop,
#orders-drop {
    width: 100%;
    height: 415px;
    overflow: auto;
}
#order-cItem,
#order-sItem {
    width: 100%;
    white-space: normal;
}
#category-drop .dropdown-item,
#orders-drop .dropdown-item {
    padding: .5rem 1rem;
    border-bottom: 1px solid #ff8cb8;
    white-space: normal;
    transition: 0.3s;
}
#category-drop .dropdown-item:hover,
#orders-drop .dropdown-item:hover {
    background: #ffe6ef;
}
.fa.fa-caret-down.ml-auto {
    position: absolute;
    right: 8px;
    top: 35%;
}
.nightmode #category-drop .dropdown-item,
.nightmode #orders-drop .dropdown-item {
    color: #fff;
    border-color: #ffb6d5;
}

/* Profile Button */
.btn_profiles {
    background: linear-gradient(90deg, #ff4f9e, #ff82b2, #ffc2d9);
    margin-right: 10px;
    padding: 3px 6px;
    border-radius: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 2px 2px 3px #ffb6d5 !important;
    border: 2px inset #fff !important;
    outline: none !important;
}
.btn_profiles:hover {
    background: #ff6fae;
}

/* Button Focus & Hover */
.btn-check:focus+.btn-secondary,
.btn-secondary:focus,
.btn-secondary:hover {
    background: linear-gradient(90deg, #ff4f9e, #ff82b2, #ffc2d9) !important;
}

/* Day/Night Switch */
.day_night_btn {
    width: 70px;
    position: relative;
    background: #fff;
    display: flex;
    justify-content: space-around;
    font-size: 20px;
    border-radius: 50px;
    color: #b0356d;
    transition: 0.3s;
}
.day_night_btn:hover {
    color: #ff4f9e;
}
.day_night_btn .active_circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    top: -5px;
    right: -2px;
    z-index: 0;
    background: linear-gradient(90deg, #ff4f9e, #ff82b2, #ffc2d9);
    transition: 0.5s ease;
}
.nightmode .day_night_btn .active_circle {
    transform: translate(-34px);
}
.day_night_btn .day_mode {
    color: #fff;
    transition: 0.5s ease;
}
.nightmode .day_night_btn .day_mode {
    color: #ffb6d5;
}
.day_night_btn .day_mode,
.day_night_btn .night_mode {
    display: block;
    z-index: 1;
}
.nightmode .night_mode {
    color: #fff;
    transition: 0.5s ease;
}

/* Logo */
.logo_off_nav {
    display: none;
    padding: 10px;
    transition: 0.5;
}
.toogle_sidebar .logo_off_nav {
    display: inline-block;
    margin-top: -5px;
}
.toogle_sidebar .logo_off_nav img {
    max-width: 200px;
}

/* Mass Order */
.dashboard .form-control.massorder_textarea {
    height: 350px;
}

/* Orders Page */
#orders_menu a .icon {
    font-size: 16px;
    margin-right: 10px;
}

#orders_menu.nav-pills .nav-link {
    border: 2px solid transparent;
    color: #ff4f9e;
}
#orders_menu.nav-pills .nav-link:hover {
    border-color: #ff82b2;
}
.dashboard.nightmode #orders_menu.nav-pills .nav-link.active {
    background: linear-gradient(90deg, #ff4f9e, #ff82b2, #ffc2d9);
    color: #fff;
}
.dashboard.nightmode #orders_menu.nav-pills .nav-link:hover {
    border-color: #ffb6d5;
}

/* Order Links */
.order_page .order_link_wrap a.order_link {
    width: 330px;
    border: 1px solid #ff82b2;
    font-size: 16px;
    padding: 8px;
    border-radius: 10px;
    display: inline-block;
    color: #ff4f9e;
    background: #fff0f6;
}
.dashboard.nightmode .order_page .order_link_wrap a.order_link {
    color: #fff;
    border-color: #ffb6d5;
}

/* Order Inputs */
.order_link_wrap > input.form-control {
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #ff82b2;
    width: 100%;
    height: 40px;
}
.dashboard.nightmode .order_link_wrap > input.form-control {
    border-color: #ffb6d5;
}

/* Order Link Button */
.order_link_wrap > .btn_order_link {
    right: 5px;
    background: #ff4f9e;
    height: 30px;
    top: 5px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}
.dashboard.nightmode .order_link_wrap > .btn_order_link {
    background: #ffb6d5;
    color: #1b0e17;
}

/* Order IDs & Services */
.order_page .order_id {
    display: block;
    background: #ff4f9e;
    text-align: center;
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
}
.dashboard.nightmode .order_page .order_id {
    background: #ffb6d5;
    color: #1b0e17;
}
.order_page .order_date {
    width: 85px;
    font-size: 14px;
}
.order_page .order_service {
    width: 220px;
}
.order_page a.serv_id {
    background: #ff82b2;
    color: #fff;
    padding: 1px 13px;
    border-radius: 50px;
    font-size: 14px;
}
.dashboard.nightmode .order_page a.serv_id {
    background: #ffb6d5;
    color: #1b0e17;
}

/* Action Buttons */
.btn_action {
    background: #ff4f9e;
    color: #fff;
    border-radius: 10px;
    border: none;
    box-shadow: none;
}
.btn_action:hover {
    background: #ff7ab8;
}
.dashboard.nightmode .btn_action {
    background: #ffb6d5;
    color: #1b0e17;
}

/* Status Badges */
.order_status_badges {
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 50px;
    padding: 3px 10px;
    background: #ff4f9e;
}
.dashboard.nightmode .order_status_badges {
    background: #ffb6d5;
    color: #1b0e17;
}
.order_status_badges.badges_pending {
    background: #ffea96 !important;
    color: #000;
}
.order_status_badges.badges_inprogress {
    background: #ffa3cf !important;
}
.order_status_badges.badges_completed {
    background: #9ef7d1 !important;
}
.order_status_badges.badges_partials {
    background: #ffd5eb !important;
}
.order_status_badges.badges_canceled {
    background: #ffb4b4 !important;
}
.order_status_badges.badges_processing {
    background: #ff89b3 !important;
}

/* Add Fund Table */
#addfundTable thead tr th:nth-child(1),
#addfundTable tbody tr td:nth-child(1) {
    width: 60px;
}
#addfundTable thead tr th:nth-child(2),
#addfundTable tbody tr td:nth-child(2) {
    width: 130px;
    font-size: 16px;
}
#addfundTable thead tr th:last-child,
#addfundTable tbody tr td:last-child {
    width: 150px;
    font-size: 16px;
}
#addfundTable tbody tr:nth-child(even) {
    background: #ffe6ef;
}
.dashboard.nightmode #addfundTable tbody tr:nth-child(even){
    background: #121028;
}
.dashboard.nightmode #addfundTable thead tr th,
.dashboard.nightmode #addfundTable tbody tr td{
    color:#fff;
}
.tab_id {
    display: block;
    height: 30px;
    background: #ff69b4; /* 💖 Pink */
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
}

/* def side */
.dashboard #def_side_title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin-bottom: 1rem;
}

.dashboard #def_side_title .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    color: #ff69b4; /* 💖 Pink text */
    text-align: center;
    background: #ffe6f1; /* soft pink background */
    border-radius: 10px;
}

.dashboard.nightmode #def_side_title .icon{
    background: #ff69b4;
    color: #2b1a2f;
}

.dashboard #def_side_title .name {
    font-size: 20px;
    font-weight: 700;
    color: #ff69b4; /* 💖 */
}

.dashboard.nightmode #def_side_title .name {
    color: #ffb6c1; /* light pink text */
}


/*
Global Accordion
*/
.site_accordion .accordion-item{
    margin-bottom: 10px;
    border: 1px solid #ff69b4; /* 💖 */
    border-radius: 10px;
    background: var(--text-white);
    transition: 0.5s;
}
.site_accordion .accordion-item .accordion-header button{
    box-shadow: none!important;
}
.site_accordion .accordion-item .accordion-button{
    background: linear-gradient(90deg, #ff69b4, #ff8dc7); /* 💖 Pink gradient */
    color: #fff;
    font-size: 18px;
    border-color: #ff69b4;
    border-radius: 5px 5px 0px 0px;
}
.site_accordion .accordion-item .accordion-button i{
    margin-right: 10px;
}
.site_accordion .accordion-item .accordion-button.collapsed {
    background: #ffe6f1;
    color: #b3005a;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.5s;
}
.dashboard.nightmode .site_accordion .accordion-item .accordion-button{
    background: #ff69b4;
    color: #2b1a2f;
}
.dashboard.nightmode .site_accordion .accordion-item .accordion-button.collapsed{
    background: #3a243b;
    color: #fff;
}
.dashboard.nightmode .site_accordion .accordion-item{
    background: #2b1a2f;
    color: #fff !important;
    border-color: #ff69b4;
}

/*
Ticket page
*/
#viewTicket .msg_user .ticket-message {
    background: #ff69b4; /* 💖 */
    padding: 25px;
    border-radius: 20px;
    color: #fff;
}

#viewTicket .msg_user,
#viewTicket .msg_admin {
    margin-bottom: 20px;
}
#viewTicket .msg_user .info,
#viewTicket .msg_admin .info{
    padding: 4px 10px;
}


#viewTicket .msg_admin .ticket-message {
    background: #ffb6c1; /* 💖 Lighter pink */
    padding: 25px;
    border-radius: 20px;
    color: #fff;
}

.dashboard.nightmode #viewTicket .msg_admin .ticket-message{
    background: #ff69b4;
}

.dashboard.nightmode #viewTicket .msg_user .info,
.dashboard.nightmode #viewTicket .msg_admin .info{
    color: #fff;
}

.dashboard .ticket_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin: 10px 0px;
    padding: 15px 15px;
    background: #ffe6f1;
    border-left: 3px solid #ff69b4; /* 💖 */
    border-radius: 15px;
}
.dashboard .ticket_item.ticket_Closed{
    border-color: #ff3b6f; /* darker pink/red */
}
.dashboard .ticket_item.ticket_Answered{
    border-color: #ff85b7;
}
.dashboard .item_left h3{
    display: inline;
    font-size: 16px;
    color: #b3005a;
}
.dashboard.nightmode .ticket_item{
    background: #2b1a2f;
}
.dashboard .ticket_item p,
.dashboard .ticket_item h3{
    margin: 0;
    padding: 0;
    color: #b3005a;
}
.dashboard.nightmode .ticket_item p,
.dashboard.nightmode .ticket_item h3{
    color: #fff;
}
.dashboard .ticket_item .item_left{
    display: flex;
    gap: 10px;
    width: 48%;
    align-items: center;
}
.dashboard .ticket_item .item_left .ticket_icon{
    width: 60px;
    height: 60px;
    background: #ff69b4; /* 💖 */
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 60px;
    border-radius: 50px;
}
#ticket_filter_wrap{
    margin: 10px 0px;
}
#ticket_filter_wrap button{
    background: transparent;
    border: 2px solid #ff69b4; /* 💖 */
    border-radius: 10px;
    color: #b3005a;
}
.dashboard.nightmode #ticket_filter_wrap button{
    border-color: #ff69b4; /* Hot pink */
    color: #fff;
}

.dashboard #ticket_filter_wrap button:hover{
    background: #ff69b4 !important; /* Hot pink hover */
    color: #fff;
}

.dashboard.nightmode #ticket_filter_wrap button:hover{
    background: #ff85c1 !important; /* Softer pink for dark mode hover */
    color: #fff;
}

.dashboard #ticket_filter_wrap .ticket_btn_active{
    background: #ff69b4; /* Active pink */
    color: #fff;
}

.dashboard.nightmode #ticket_filter_wrap .ticket_btn_active{
    background: #ff85c1;
    color: #fff;
}

/* Affiliate Page */

#affiliates .aff_item {
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
}

#affiliates .item_left {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
}

#affiliates .item_left .icon {
    width: 50px;
    height: 50px;
    background: #ffe6f1; /* soft pink background */
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    color: #ff69b4; /* main pink accent */
}

#affiliates .item_right {
    display: flex;
    align-items: center;
}

#affiliates .affiliate_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#affiliates .sm_aff_item .icon {
    background: #ffe6f1; /* light pink background */
    width: 50px;
    height: 50px;
    border-radius: 10px;
    color: #ff69b4; /* pink icon */
    text-align: center;
    line-height: 50px;
    font-size: 18px;
}

#affiliates .sm_aff_item {
    display: flex;
    gap: 12px;
}

#affiliates .sm_content h4 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    color: #b3005a; /* deep pink text */
}

#affiliates .sm_content p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #b3005a;
}

/* Nightmode adjustments */
.dashboard.nightmode #affiliates .item_left .icon,
.dashboard.nightmode #affiliates .sm_aff_item .icon {
    background: #ff69b4;
    color: #2b1a2f; /* dark background contrast */
}

.dashboard.nightmode #affiliates .sm_content h4,
.dashboard.nightmode #affiliates .sm_content p {
    color: #fff;
}
/*
*
*
* NO Auth Page Css (Pink Theme)
*
*
*/

/* def side */
#def_side_title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin-bottom: 1rem;
}

#def_side_title .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    background: #ff69b4; /* main pink */
    border-radius: 10px;
}

#def_side_title .name {
    font-size: 20px;
    font-weight: 700;
    color: #b3005a; /* deep pink text */
}

/* Reset Password */
.highlight-lside .hlight-box {
    margin-bottom: 30px;
    padding: 24px 30px;
    background: #fff;
    border-radius: 9px;
    box-shadow: 0px 10px 10px #7878780f;
}

.highlight-lside .hlight-box .hlight-first {
    font-size: 19px;
    line-height: 24px;
    color: #b3005a; /* deep pink text */
    font-weight: 800;
}

.highlight-lside .hlight-box .hlight-second {
    font-size: 14px;
    line-height: 25px;
    color: #232323;
    margin: 0;
    width: 100%!important;
}

.nightmode .card_v2 table td{
    color: #fff;
}

.highlight-lside .hlight-box .icon {
    font-size: 60px;
    width: 70px;
    text-align: center;
    line-height: 100px;
}

.highlight-lside .hlight-box:nth-child(1) .icon {
    color: #ff69b4;
}

.highlight-lside .hlight-box:nth-child(2) .icon {
    color: #ff85c1;
}

.highlight-lside .hlight-box:nth-child(3) .icon {
    color: #ff99cc;
}

@media (max-width: 1199.98px) {
	.highlight-lside .hlight-box {
		text-align: center!important;
	}
}

/* Input Fields */
.noAuth .form-control{
    background: #ffe6f1;
    height: 45px;
    border-radius: 10px;
    border: none;
    color: #b3005a;
    outline: 0!important;
}

.noAuth .control-label .icon{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #ff69b4;
    text-align: center;
    background: #ffe6f1;
    border-radius: 10px;
}

.noAuth .btn.btn-primary{ 
    padding: 15px 10px;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(90deg, #ff69b4, #ff85c1);
    border: none;
    font-weight: 700;
}

.noAuth .btn.btn-primary:hover{ 
    background: linear-gradient(90deg, #ff85c1, #ff99cc);
}

.reset_Card .card.card_v2{
    box-shadow: 0px 10px 10px #7878780f;
}

/* API PAGE */
#notLogin #blog_post,
#notLogin #api {
    padding-top: 50px;
}

#api pre {
    background: #2b1a2f;
    padding: 50px 20px;
    border-radius: 20px;
    color: #fff;
}

/*
*
* Service Page (Pink Buttons)
*
*/
.cat_btn_filter{
    background: linear-gradient(90deg, #ff69b4, #ff85c1);
    padding: 10px 10px;
    width: 100%;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 10px;
    border: none;
}

#currency_changer .btn.btn-primary.dropdown-toggle{
    background: linear-gradient(90deg, #ff69b4, #ff85c1);
    padding: 10px 10px;
    width: 100%;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 10px;
}

.dashboard.nightmode #currency_changer .btn.btn-primary.dropdown-toggle{
    background: #ff85c1;
}

.cat_btn_filter:hover{
    background: #ff99cc;
    color: #fff;
}

#catList {
    display: none;
}

#currency_changer {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.dashboard.nightmode .cat_btn_filter{
    background: #ff85c1;
    color: #2b1a2f;
}

#currency_changer .dropdown .dropdown-toggle {
    width: 100%;
}
#currencies-list.openNow{
    display: block;
    width: 100%;
}
.dashboard.nightmode .dropdown-menu{
    background: #2b1a2f;
}
.dashboard.nightmode .dropdown-menu li a{
    color: #fff;
}
.dashboard.nightmode .dropdown-item:focus,
.dashboard.nightmode .dropdown-item:hover{
    background: #ff69b4;
    color: #fff!important;
}

#cat_filter{
    position: relative;
}
#cat_filter #catList{
    position: absolute;
    height: 400px;
    overflow: hidden;
    overflow-y: auto;
    background: #ffe6f1;
    z-index: 1;
}
.dashboard.nightmode #cat_filter #catList{
    background: #2b1a2f;
}

#cat_filter #catList button{
    width: 100%;
    display: block;
    padding: 8px;
    text-align: left;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ff99cc;
}
#cat_filter #catList button:hover{
    background: #ff69b4;
    color: #fff;
}
.dashboard.nightmode #cat_filter #catList button:hover{
    background: #ff85c1;
    color: #fff;
}
.dashboard.nightmode #cat_filter #catList button{
    color: #fff;
}

#catList.openFilter{
    display: block;
}

.text_imp{
    color: #ff69b4;
}
.dashboard.nightmode .text_imp{
    color: #ff85c1;
}

/* Dashboard page design */
#dashboard .user_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#dashboard .user_info .text_info h5 {
    font-size: 16px;
    margin: 0;
    margin-bottom: 5px;
    color: #b3005a;
}
#dashboard .user_info .text_info h4{
    font-size: 16px;
    margin: 0;
    color: #b3005a;
    font-weight: bold;
}

#dashboard .user_info .icon_info{
    color: #232323;
}
.dashboard.nightmode #dashboard .user_info .text_info h5,
.dashboard.nightmode #dashboard .user_info .text_info h4{
    color: #fff;
}
.dashboard.nightmode #dashboard .user_info .icon_info{
    color: #fff;
}
.btn_ac_benefit {
    position: absolute;
    width: 140px;
    align-items: center;
    height: 40px;
    border: none;
    font-size: 18px;
    gap: 10px;
    display: flex;
    color: #ffffff;
    top: 15px;
    background: var(--text-primary);
    border-radius: 10px;
    justify-content: center;
    right: 15px;
}
.dashboard.nightmode .btn_ac_benefit{
    background: var(--dark-text-primary);
}
.acc_benefit_cont {
    min-height: 280px;
}
.acc_spend_status {
    width: 87%;
    font-weight: bold;
    display: grid;
    grid-template-columns: 100px 50px 200px;
    margin-bottom: 5px;
}
.dashboard.nightmode .btn_ac_benefit {
    color: #fff;
}
.dashboard.nightmode .acc_spend_status{
    color: var(--text-white);
}
/* Show more btn styles */

#show_more_wrap {
    color: #fff;
    padding: 5px 10px;
    background: var(--primary-gradient);
    border: 2px inset #fff;
    border-radius: 5px;
}
.nightmode #show_more_wrap{
    border-color: var(--bg-darkmode);
}
.dashboard.nightmode #show_more_wrap{
    /* background: var(--dark-text-primary); */
}
#showMore {
    width: 100%;
    display: flex;
    background: transparent;
    margin: 0;
    padding: 0;
    border: 0;
    color: #fff;
    justify-content: space-between;
}
.nightmode #showMore{
    color: var(--bg-darkmode);
}
 #more_menu{
    display: none;
    overflow: hidden;
    /* padding-top: 10px; */
    margin-top: 7px;
    transition: 0.5s;
    /* background: #1b07496e; */
    border-radius: 10px;
}
.dashboard.nightmode #more_menu{
    background: #2f2d4f;
}
 #more_menu.active_more_menu {
    display: block;
}

.modal_status_close {
    position: absolute;
    right: 12px;
    font-size: 20px;
    width: 30px;
    height: 30px;
    background: var(--text-primary);
    border-radius: 50px;
    color: #fff;
    z-index: 999999;
    opacity: 1;
}

.nightmode .modal_status_close{
    background: var(--dark-text-primary);

}
.status_modal .nav-pills .nav-link {
    background: #80808036;
    color: var(--text-primary);
    border-radius: 10px;
    transition: 0.5s;
    margin-bottom: 5px;
}

.nightmode .status_modal .nav-pills .nav-link {
    background:#151428;
} 

.status_modal .nav-pills .nav-link.active{
    background: var(--text-primary);
    color: #fff;
}

.status_modal .tab-content {
    background: #e4e4e4;
    height: 100%;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #fb981e;
}

.nightmode .status_modal .tab-content{
    background: var(--bg-darkmode);
    border-color: var(--dark-text-primary);
    color: #fff!important;
}

.nightmode .modal-body.status_modal{
    background: var(--bg-sidebar-night);
}

ul.pagination li a{
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fb981e1c;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    margin-right: 5px;
}
ul.pagination li a{
    color: #4916bf;
}
.nightmode ul.pagination li a{
    background: #00ffa330;
}

.nightmode ul.pagination li a{
    color: #d92d52;
}

.sidebar_menu_icon{
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 30px;
    padding: 5px;
}

.close_btn_phone{
    display: none;
}

/*
*
*   Responsive area start 
*
*/
@media only screen and (max-width: 1600px) {
    .order_page .order_link_wrap a.order_link{
        width: 200px;
        font-size: 14px;
    }
    .order_page .order_service{
        width: 150px;
        font-size: 14px;
    }
    .order_page a.serv_id{
        font-size: 14px;
    }
}
@media only screen and (max-width: 1250px){

    .logo_off_nav{
        display: inline-block;
        width: 250px;
    }
    #page_info{
        flex-direction: column;
        align-items: center;
    }
    #page_info .item{
        text-align: center;
    }
    .dashboard .details_2{
        grid-template-columns: 1fr;
    }

}
@media only screen and (max-width: 991px) {
    #main_container .sidebar{
        transform: translate(-300px);
    }
    #main_container.toogle_sidebar .sidebar{
        transform: translate(0px);
    }

    .close_btn_phone {
        display: block;
        position: absolute;
        width: 30px;
        height: 30px;
        font-size: 20px;
        border-radius: 50px;
        border: none;
        right: 6px;
        background: #ff606069;
        color: #ff6060;
    }

    #main_container .content_area{
        padding-left: 0px;
    }
    #main_container .content_area .top_header{
        width: 100%;
    }
    
    .logo_off_nav{
        display: inline-block;
    }
    #page_info{
        flex-direction: column;
        align-items: center;
    }
    #page_info .item{
        text-align: center;
    }
    .dashboard .details_2{
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 768px) {
   .user_settings .menu_text{
        display: none;
    }
    .logo_off_nav{
        display: inline-block;
    }
    
}

@media only screen and (max-width: 550px) {
    #main_container.toogle_sidebar .content_area{
        filter:blur(5px);
        pointer-events: none;
    }
    .logo_off_nav img{
        width: 150px;
    }
    .user_settings .telegram{
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 15px;
    }
    .day_night_btn{
        font-size: 15px;
        width: 55px;
  
    }
    .day_night_btn .active_circle{
        width: 30px;
        height: 30px;
        top: -4px;
        right: -2px;
    }
    .nightmode .day_night_btn .active_circle {
        transform: translate(-28px);
    }
    .dropdown-toggle.btn_profiles{
        padding: 2px;
        border-radius: 50px;
    }
    .dropdown-toggle.btn_profiles::after{
        display: none;
    }
    .dropdown-toggle.btn_profiles img{
        width: 100%;
        height: 100%;
    }
    .dashboard .details_2{
        grid-template-columns: 1fr;
    }
    .filter_btn_wrap{
        grid-template-columns: repeat(4, 1fr);
        height: 150px;
        overflow: hidden;
        overflow-y: scroll;
        grid-gap: 8px 10px;
    }
    .filter_btn_wrap .btn_filter{
        font-size: 20px;
        padding: 5px;
        border-width: 1px;
    }
    .filter_btn_wrap .btn_filter .filter_txt{
        display: none;
    }
    .dashboard.nightmode .filter_btn_wrap .btn_filter{
        border-width:1px;
    }
    .card.card_v2 .card-body{
        padding: 0.6rem;
    }
    .tab_btn_wrap{
        width: 100%;
        /* justify-content: space-between; */
        gap: 15px;
    }
    .nav-pills .nav-link{
        font-size: 16px;
        padding: 0.5rem 1rem;
    }
    .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
        font-size: 16px;
        padding: 0.5rem 1rem;
    }
    .dashboard .details_data .item .item_content h3{
        font-size: 16px;
    }
    .dashboard .details_data .item .item_content p{
        font-size:14px;
    }
    .dashboard .details_data .item{
        height: 40px;
        gap: 10px;
        padding: 10px;
    }
    .dashboard .details_data .item .icon{
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 15px;
    }
    .dashboard .details_data .item h3{
        font-size: 14px;
    }
    /* Table */
        #table{
            padding: 0px;
        }
        #table .table tr{
            font-size: 14px;
        }
        .dashboard #table .btn-primary.btn_serv{
            font-size: 14px;
            padding: 3px 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .table-responsive table {
            width: 1500px;
        }
        #table .category_title{
            font-size: 16px;
        }

        #affiliates .affiliate_wrap{
            grid-template-columns: 1fr;
        }
        #currency_changer{
            margin-bottom: 1rem;
        }
        .drop_dwon_menu{
            margin-bottom: 1rem;
        }
        .hide_phone{
            display: none;
        }
        #page_info .item h4{
            font-size: 14px;
            line-height: 1.1;
        }   

        .user_data .user_balance{
            padding: 8px 0px;
            font-size: 14px;
            margin-bottom: 5px;
        }
        .user_data .user_wrap{
            margin-bottom: 5px;
        }
        .user_data{
            margin-bottom: -15px;
        }
        #main_container .sidebar .logo{
            margin-bottom: 0px;
        }
        .sidebar_menu{
            height: calc(100vh - 200px);
        }
        .user_data .total_data{
            padding: 10px 12px;
        }
        .v2_avatar img{
            width: 50px;
            margin-bottom: 0;
        }
        .v2_user_info h5{
            font-size: 14px;
        }
        .user_data .user_balance{
            font-size: 13px;
        }
        .user_data .user_balance{
            padding: 5px 0px;
            box-shadow: 0 2px 4px rgb(19 5 52 / 61%);
            border-radius: 4px;
        }
        .user_data .user_info .msg{
            font-size: 14px;
        }
        .user_data .user_info h2{
            font-size: 16px;
        }
        .user_data .avatar{
            width: 40px;
        }
        #main_container .sidebar .logo{
            text-align: center;
        }
        #main_container .sidebar .logo .logo_img{
            width: 180px;
        }
        .sidebar_menu .menu_item{
            padding: 3px 15px;
            margin-bottom: 2px;
        }
        .search-orders-at-new-order .input-group .form-control{
            height: 35px!important;
        }
}

@media only screen and (max-width: 480px) {
    
}


/*
*
*
*
*=================== SIGN IN PAGE CSS START FROM HERE =======================================
*
*
*/
section.formSec {
    background-color: var(--bg-light);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 150px 0 50px;
    overflow: hidden;
    margin: 0;
}

section.formSec h1 {
    margin: 0;
    font-size: 49px;
    font-weight: 600;
    color: var(--text-primary);
}

section.formSec p {
    font-size: 18px;
    font-weight: 300;
    color: #444;
    width: 70%;
    margin: 10px 0 20px;
}

/* ========== Banner App Mock ========== */
.banner-app-mock {
    position: relative;
    width: 272px;
}

.banner-app-mock .main-img {
    margin-top: 21px;
    width: 100%;
    height: 250px;
}

/* ========== Form Inputs and Buttons ========== */
.input-group .btn {
    z-index: 0;
}

.noAuth .form-group.inputDiv {
    position: relative;
}

.noAuth .form-group.inputDiv span {
    position: absolute;
    background: var(--text-primary);
    display: flex;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: #ffffff;
    left: 6px;
    top: 4px;
}

.my-form input[type="text"],
.my-form input[type="password"],
.my-form input[type="email"] {
    background: none;
    box-shadow: none;
    border: 2px solid var(--text-primary);
    height: 55px;
    font-size: 14px;
    padding-left: 60px;
    border-radius: 50px;
    width: 100%;
    color: #333;
}

.my-form .btn.btn-default {
    background: var(--text-primary);
    border-color: var(--text-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    height: 55px;
    width: 100%;
    color: #fff;
    transition: all 0.3s ease;
}

.my-form .btn.btn-default:hover {
    background: #d81b60;
}

/* ========== Checkbox ========== */
.checkbox label {
    color: var(--text-primary);
    font-size: 16px;
    margin: 0;
}

/* ========== Stats / Features Section ========== */
.noAuth .stat-wrap {
    background-color: #fff;
    box-shadow: 0 0 10px #f8bbd0;
    display: block;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid var(--text-secondary);
}

.stat-icon i {
    font-size: 46px;
    color: var(--text-primary);
}

.stat-wrap:hover .stat-icon i {
    animation: tada 3s infinite;
}

.stat-desc {
    padding: 22px 22px 0;
}

.stat-desc h5 {
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 20px;
    position: relative;
    padding: 0 0 25px;
    color: var(--text-primary);
}

.stat-desc h5::before {
    content: '';
    width: 112px;
    height: 8px;
    display: block;
    background-color: var(--text-secondary);
    border-radius: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 10px;
}

.stat-desc h5::after {
    content: '';
    width: 72px;
    height: 8px;
    display: block;
    background-color: var(--text-primary);
    border-radius: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -5px;
}

.stat-desc p {
    font-size: 14px;
    font-weight: 300;
    margin-top: 25px;
}

/* ========== Offer Section ========== */
section.whatWeOffer {
    padding: 80px 0 40px;
    background-color: var(--bg-accent);
    overflow: hidden;
}

section.whatWeOffer h2.heading~p {
    text-align: center;
    width: 65%;
    margin: 0 auto 60px;
    color: #444;
}

section.whatWeOffer .singleOfr {
    background-color: #fff;
    padding: 35px 25px;
    box-shadow: 0 10px 10px 5px #f8bbd008;
    min-height: 330px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.whatWeOffer .singleOfr:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px #f8bbd0;
}

section.whatWeOffer .singleOfr h3.heading {
    position: relative;
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 20px;
    padding: 0 0 35px;
    color: var(--text-primary);
}

section.whatWeOffer .singleOfr h4 {
    font-size: 82px;
    line-height: 62px;
    margin-top: 0;
    color: var(--text-secondary);
}

/* ========== Happy User Section ========== */
section.happyUser {
    text-align: center;
    background-color: var(--text-primary);
    padding: 115px 0 40px;
    position: relative;
    color: #fff;
}

section.happyUser h2 {
    font-size: 49px;
    font-weight: 600;
    margin: 0 0 10px;
}

section.happyUser h2~h3 {
    font-size: 30px;
    color: #fff;
    margin: 0 0 60px;
    font-weight: 600;
}

section.happyUser .pInfo span {
    background-color: #fff;
    border-radius: 70px;
    width: 110px;
    height: 110px;
    line-height: 110px;
    text-align: center;
    margin-right: 25px;
    box-shadow: 0 5px 10px 0 #f8bbd0;
}

section.happyUser .pInfo span img {
    max-width: 70px;
}
section.happyUser .pInfo h3 {
	margin: 0 0 5px;
	font-size: 30px;
	font-weight: 600;
	color: #ffffff;
}

section.happyUser .pInfo p {
	margin: 0;
	color: #fff;
	font-weight: 400;
}

section.happyUser .uniBtn {
	margin: 60px auto 0;
	background-color: #e91e63; /* pink button */
}

section.serWeOffer {
	padding: 80px 0 50px;
	text-align: center;
}

.box .nav.nav-tabs {
	display: block;
	width: 96%;
	margin: 0;
	border: 0;
}

h2.heading {
	font-size: 49px;
	font-weight: 600;
	text-align: center;
	color: #e91e63; /* pink headings */
}

.heading.bordered::before,
.heading.bordered::after {
	content: '';
	width: 112px;
	height: 8px;
	display: block;
	background-color: #f48fb1; /* lighter pink line */
	border-radius: 10px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 15px;
}

.heading.bordered::after {
	width: 77px;
	bottom: 1px;
}

section.happyUser img.mickeyMouse {
	top: -80px;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
}

section.happyUser h2 {
	color: #ffffff;
	font-size: 49px;
	font-weight: 600;
	margin: 0 0 10px;
}

n.happyUser h2~h3 {
	font-size: 30px;
	color: #fff;
	margin: 0 0 60px;
	font-weight: 600;
}

@media (max-width: 1024px) {
	.box .nav.nav-tabs li {
		margin: 3px 0!important;
	}
}

section.serWeOffer .tab-content h2 {
	font-size: 49px;
	font-weight: 600;
	margin: 0 0 20px;
	color: #e91e63;
}

section.serWeOffer .nav-link {
	text-align: center;
}

.forActive {
	display: none;
}

.nav-link.active > img {
	display: none;
}

.nav-link.active .forActive {
	display: inline;
}

.social-slider .slick-slide img {
	text-align: center;
	display: inline;
}

section.serWeOffer .nav-link.active {
	background: transparent;
	text-align: center;
}

.uniBtn {
	text-decoration: none;
	background-color: #e91e63; /* pink button */
	display: block;
	max-width: 210px;
	text-align: center;
	padding: 19px 20px;
	border-radius: 50px;
	font-size: 14px;
	color: #fff !important;
	font-weight: 600;
	margin: 0 auto;
	margin-top: 30px;
}

.testimonial .slick-slide .userReview .bg {
	background-color: #f48fb1; /* light pink */
	color: #fff;
	min-height: 340px;
	padding: 30px 30px 40px;
}

.testimonial .slick-slide:nth-child(2n) .userReview .bg {
	background-color: #e91e63; /* deeper pink */
	color: #ffe4ec;
}

.testimonial .slick-slide .userReview img.quote {
	display: block;
	margin: 0 0 -10px auto;
}

.testimonial .slick-slide .userReview span.userImg {
	display: block;
	width: 70px;
	height: 70px;
	border-radius: 70px;
	overflow: hidden;
	margin: 0 0 30px;
}

.testimonial .slick-slide .userReview p {
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}

.testimonial .slick-slide .userReview span.date {
	display: block;
	margin: 30px 0 0;
	font-size: 12px;
}

.testimonial .slick-slide .userReview span.date i {
	font-size: 16px;
	margin-right: 13px;
}

.testimonial .slick-slide .userReview .author {
	background-color: #fff;
	padding: 25px 10px;
	text-align: center;
}

.testimonial .slick-slide .userReview .author p {
	font-weight: 300;
	color: #ad1457; /* muted dark pink for contrast */
	margin: 0 0 5px;
}

.testimonial .slick-slide .userReview .author img.rating {
	display: block;
	margin: auto;
}

a {
	text-decoration: none !important;
}

footer {
	padding: 80px 0 0;
}

footer .col-sm-3:nth-child(2),
footer .col-sm-3:nth-child(3) {
	padding-left: 80px;
}

footer img.ftrLogo {
	margin-bottom: 15px;
}

footer p {
	font-size: 13px;
	color: #5a4a4a;
	margin: 0 0 30px;
	font-weight: 400;
}

footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

footer ul.cntctInfo li {
	display: flex;
	margin: 0 0 15px;
}

footer ul li {
	margin: 0 0 7px;
}

footer ul.cntctInfo li i {
	font-size: 18px;
	color: #f06292; /* pink icon accent */
	width: 28px;
	margin-right: 5px;
}

footer ul li a {
	font-size: 13px;
	color: #5a4a4a;
}

footer h4 {
	margin: 35px 0 30px;
	font-size: 18px;
	font-weight: 600;
	color: #e91e63;
}

footer div.input-group {
	border: 1px solid #f06292; /* pink border */
	padding: 5px;
	border-radius: 40px;
	background-color: #ffffff;
}

footer div.input-group input {
	border-radius: 40px;
	border: 0;
	background-color: #ffffff;
	box-shadow: none !important;
	height: 40px;
	font-size: 13px;
}

footer div.input-group input::placeholder {
	color: #f06292;
}

footer div.input-group .input-group-addon {
	border: 0;
	border-radius: 40px;
	background-color: transparent;
	padding: 0;
}

footer div.input-group .input-group-addon button.sendBtn {
	padding: 0;
	width: 40px;
	height: 40px;
	border: 0;
	background-color: transparent;
}

footer div.ftrStrip {
	background-color: #e91e63; /* pink footer bar */
	padding: 20px 0;
	margin: 60px 0 0;
}
footer div.ftrStrip p {
	color: #ffffff;
	margin: 0;
	font-weight: 400;
}

footer div.ftrStrip ul {
	text-align: right;
}

footer div.ftrStrip ul li {
	display: inline-block;
	margin: 0 0 0 30px;
}

footer div.ftrStrip ul li a {
    text-decoration: none;
	color: #fff;
}

/* Keyframes */

@keyframes scaleIn {
	from {
		transform: scale(.5, .5);
		opacity: .5;
	}
	to {
		transform: scale(2.5, 2.5);
		opacity: 0;
	}
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: rotate(0deg);
	}
	10% {
		-webkit-transform: rotate(-3deg);
	}
	20% {
		-webkit-transform: rotate(-3deg);
	}
	30% {
		-webkit-transform: rotate(3deg);
	}
	40% {
		-webkit-transform: rotate(-3deg);
	}
	50% {
		-webkit-transform: rotate(3deg);
	}
	60% {
		-webkit-transform: rotate(-3deg);
	}
	70% {
		-webkit-transform: rotate(3deg);
	}
	80% {
		-webkit-transform: rotate(-3deg);
	}
	90% {
		-webkit-transform: rotate(3deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
	}
}

#order_average_time{
    display: none!important;
}


/* New Changes */

#newOrderTabsWrap #pills-tab {
    width: 100%;
    gap: 5px 5px;
}

#newOrderTabsWrap #pills-tab .nav-item{
    width: calc(50% - 5px);
}

#newOrderTabsWrap #pills-tab .nav-item .nav-link {
width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #ff69b4, #ff1493, #ffc0cb, #ff69b4, #ff80ab);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
    color: #fff;
    border: 2px solid #fff;
    padding: 5px 10px;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}

#newOrderTabsWrap #pills-tab .nav-item .nav-link.active{
    background: #ff80ab;
    border: 2px solid #fff;
    color: #fff;
}

.dashboard.nightmode #newOrderTabsWrap #pills-tab .nav-item .nav-link{
    color: #fff;
    border-color: #ff69b4;
}
.dashboard.nightmode #newOrderTabsWrap #pills-tab .nav-item .nav-link.active{
    background: #ff69b4;
    color: #fff0f5;
}

.search_byId > .search{
    border-radius: 0px 10px 10px 0px;
}

.card.card_v2{
    border: 2px outset #ff69b4;
}

/* Child Panel Order Page */
.card.card_v2.child_step {
    margin-bottom: 0px;
    border: none;
    background: #ffe4ec;
    box-shadow: none;
}
.nightmode .card.card_v2.child_step {
    background: #fff0f5;
}
.nightmode .card.card_v2{
    border: 1px solid #ff69b4;
}
.child_panel_step {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.child_panel_step .left_item h6 {
    background: #ffb6c147;
    display: inline-block;
    padding: 5px 15px;
    color: #000;
    border-radius: 0;
    margin: 0;
    margin-bottom: 10px;
    border-left: 4px solid #ff69b4;
}

.nightmode .child_panel_step .left_item h6 {
    background: #ff80ab69;
    color: #fff;
    border-left:4px solid #ff69b4 ;
}

.child_panel_step .left_item p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.child_panel_step .right_item i {
    font-size: 35px;
    margin-right: 20px;
    color: #ff69b4;
}
.nightmode .child_panel_step .right_item i{
    color: #ff69b4;
}

.dns_info {
    margin-top: 20px;
    margin-bottom: 32px;
}

/* Child Panel Page Accordian*/
#child_faq{
    padding: 1rem 0 3rem 0;
}
#child_faq .accordion-item{
    margin-bottom: 10px;
    border-radius: 10px;
    background: transparent;
}

#child_faq .accordion-item .accordion-collapse{
    background: #fff;
    border-radius: 0px 0px 10px 10px;
}
.nightmode .accordion-item .accordion-collapse{
    background: #fff0f5!important;
}

.accordion-flush .accordion-item .accordion-button.collapsed{
    border-radius: 10px 10px 10px 10px;
    border-color: transparent;
    background: #fff;
}

.accordion-flush .accordion-item .accordion-button{
    border-radius: 10px 10px 0px 0px;
    border-color: transparent;
    transition: 0.5s;
}

.nightmode .accordion-flush .accordion-item .accordion-button{
    background: #ff80ab;
    color: #fff;
}


.accordion-button:not(.collapsed){
    background: #ff69b4;
    color: #fff;
}

.for_phone{
    display: none;
}


@media only screen and (max-width:550px) {
    .for_desktop{
        display: none;
    }
    .for_phone{
        display: block;
    }
    #newOrderTabsWrap #pills-tab {
       gap: 5px; 
    }
    #newOrderTabsWrap #pills-tab .nav-item{
        width: calc(50% - 5px);
    }
    #newOrderTabsWrap #pills-tab .nav-item .nav-link{
        border-width: 1px;
        font-size: 14px;
    }
        #category-drop .dropdown-item,
        #orders-drop .dropdown-item{
            padding: .23rem 1rem;
            border-bottom: 1px solid #ff69b4;
            font-size: 14px;
        }
        #category-drop, #orders-drop{
            height: 444px;
            padding: 0px;
        }

        #orders-drop{
            height: 305px!important;
        }
        ul.pagination li a{
            display: inline-block;
            width:30px;
            height:30px;
            background: #ff69b41c;
            border-radius: 50px;
            text-align: center;
            line-height: 30px;
            margin-right: 2px;
        }
        #child_panel .card.card_v2.child_step{
            margin-bottom: 8px;
        }
        #child_panel .card.card_v2.child_step .card-body{
            padding: 1rem;
        }
       .nightmode .alert.alert-info.dns_info{
        background: #ff69b4!important;
        border-color: #ff69b4!important;
        color: #fff!important;
       }
}



/* Footer Design Started */

footer {
    padding: 2rem 0;
}

#footerV2{
    background: url(https://cdn.mypanel.link/hmz1fi/f33oq7i66czlwtj4.jpg);
    background-size: cover;
    background-position: top center;
}

#footerV2 .row.footer_top {
    padding: 3rem 0;
}

#footerV2 .footer_link .link_item {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 18px;
}
#footerV2 .footer_link .link_item  .icon i{
    color: #ff69b4;
}
#footerV2 .footer_link .link_item a{
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
}
#footerV2 .footer_link .link_item a:hover{
    color: #ff80ab;
}

#footerV2 .footer_bottom_links {
    padding: 1rem 0;
}

#footerV2 .footer_bottom_links {
    padding: 1rem 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    color: #fff;
}

#footerV2 .footer_bottom_links span,
#footerV2 .footer_bottom_links a{
    color: #fff;
    transition: 0.5s;
}
#footerV2 .footer_bottom_links a:hover{
    color: #ff80ab;
}

#footerV2 .footer_v2_logo img {
    max-width: 260px;
}

.hr_primary {
    background: #ff69b4;
    height: 3px!important;
    opacity: 1;
}

@media only screen and (max-width: 550px){
    #footerV2 .footer_bottom_links{
        gap: 10px;
        column-gap: 18px;
    }
    .footer_v2_logo {
        text-align: center;
        margin-bottom: 15px;
    }
    #footerV2 .row.footer_top {
        padding: 2rem 0;
    }
  
    .hr_primary{
        height: 2px!important;
    }
    span.divid{
        display: none;
    }
    
    #footerV2 .footer_bottom_links span{
        width: 100%;
    }
}
/* Footer Design Ended */



/* Home Page Css Start  */
/* Hero Section Design Start From Here */
#hero{
    min-height: 1200px;
    background: url(https://res.cloudinary.com/grow-follows/image/upload/v1656760174/growfollows_home/hero_bg_dt2xey.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}
#hero .banner_content h1{
   font-family: 'Poppins', sans-serif;
   font-size: 55px;
   font-weight: bold;
   line-height: 1.3;
   color: #ff69b4;
   margin-bottom: 10px;
}

#hero .banner_content h1 > span.title_top{
    font-size: 30px;
    color: #ff80ab;
}
#hero .banner_content p{
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: #666666;
    margin-top: 10px;
}


#hero .banner_content .btn-hero{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-white);
    background: var(--text-primary);
    width: 200px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s;
}
/* FAQ's Page */
#faq{
    padding: 100px 0px;
    background: url(https://cdn.mypanel.link/hmz1fi/0wbfo7anbtn320i5.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Services Area Design */
#services_area{
    padding: 3rem 0rem;
    background: var(--text-white);
}
.top__title{
    color: var(--text-black);
    text-align: center;
}

.top__title h5{
    font-size: 16px;
    font-weight: 600;
    color: #ff69b4;
    text-align: center;
    margin-bottom: 5px;
}
.top__title h2{
    font-size: 30px;
    font-weight: 800;
    color: #e91e63;
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: center;
    margin-bottom: 10px;
}
.top__title p{
    width: 70%;
    margin: 0 auto;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 15px;
}

#services__wraper .nav-pills .nav-link, #services__wraper .nav-pills .show>.nav-link {
    cursor: pointer;
    width: 100px;
    padding: 0px;
    margin-right: 10px;
    background: transparent!important;
    border-bottom: 3px solid #ffc0cb;
    border-radius: 0px!important;
    transition: 0.5s;
}
#services__wraper .nav-pills .nav-link:hover,
#services__wraper .nav-pills .nav-link{
    cursor: pointer!important;
}
#services__wraper .nav-pills .nav-link.active{
    border-color: #e91e63;
    background: transparent!important;
    border-radius: 0px!important;
}


.tab_content_wraper {
    margin-top: 5rem;
}

.tab_content_wraper .tab__img {
    text-align: center;
}
.tab_content_wraper .tab__content h3 {
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #e91e63;
}

.tab_content_wraper .tab__content p {
    font-size: 16px;
    color: #3f3b50;
    margin-bottom: 10px;
}

.faqAcc .accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border-bottom: 0px;
    box-shadow: 0 0 10px #ffc0cb80;
}


/* Testimonials */
.whatPeopleSay{
    padding: 100px 0;
}

.testimonial_item .testimonials_wraper {
    position: relative;
    width: 92%;
    margin: 0 auto;
    background: var(--text-white);
    padding: 30px 50px;
    margin-bottom: 20px;
    box-shadow: 0 10px 37px #ffb6c1a8;
    margin-top: 60px;
    margin-bottom: 60px;
    top: -50px;
    cursor: pointer;
}
.testimonials .slick-slide:nth-child(odd) .testimonial_item .testimonials_wraper{
    top: 0px;
}

.testimonial_item .testimonials_wraper .testimoni_content p{
    font-size: 18px;
    line-height: 30px;
    font-weight: normal;
    color: #3f3b50;
    margin-bottom: 20px;
    min-height: 180px;
    max-height: 180px;
}

.testimonial_item .testimonials_wraper .testimoni_content h4{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #e91e63;
    line-height: 30px;
}

.testimonial_item .testimonials_wraper .testimoni_content img{
    margin-bottom: 20px;
}

.testimonials .slick-slide:nth-child(odd) .testimonial_item .testimonials_wraper{
    background: #e91e63!important;
}

.testimonial_item .testimonials_wraper .item_icon::after {
    content: '';
    background: url(https://res.cloudinary.com/grow-follows/image/upload/v1656760175/growfollows_home/quote_1_svjvm7.png);
    width: 45px;
    height: 45px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 20px;
}


.testimonials .slick-slide:nth-child(odd) .testimonial_item .testimonials_wraper .item_icon::after{
    background: url(https://res.cloudinary.com/grow-follows/image/upload/v1656760176/growfollows_home/quote_2_z1gerb.png);
    width: 45px;
    height: 45px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 20px;
}


.testimonials .slick-slide:nth-child(odd) .testimonial_item .testimonials_wraper .testimoni_content p,
.testimonials .slick-slide:nth-child(odd) .testimonial_item .testimonials_wraper .testimoni_content h4{
    color: #fff;
}

.blog_wraper {
    background: var(--text-white);
    padding: 15px;
    border: 1px solid #ffc0cb;
    margin-bottom: 25px;
    box-shadow: 0 0 10px #ffb6c1a8;
    border-radius: 10px;
}

.blog_content h4 {
    font-family: 'Poppins', sans-serif;
    color: #e91e63;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    max-height: 100px;
}

.blog_content .blog_content {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #3f3b50;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.blog_btn_wrap {
    margin-top: 15px;
}

.blog_btn_wrap .btn.btn-primary {
    background: #e91e63;
    border-color: #e91e63;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    padding: 10px 30px;
    font-size: 16px;
}
.blog_btn_wrap .btn.btn-primary:hover{
    background: #ffb6c1;
    box-shadow: 0 0 5px #ffc0cb;
}

/* v2 qna section */
.sig_qna_wrap {
    width: 95%;
    margin: 0 auto!important;
    position: relative;
    background: #ffffff4d;
    padding: 10px 20px;
    border-radius: 15px;
    border: 2px solid #e91e6394;
    min-height: 470px;
    max-height: 470px;
    cursor: pointer;
}

.sig_qna_wrap .num_item {
    color: #e91e63;
    width: 70px;
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    border-radius: 50px;
    margin-bottom: 15px;
    border: 2px solid #e91e6394;
}

.sig_qna_wrap .qna_cont h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: bold;
}

.sig_qna_wrap .itm_btn {
    text-align: right;
    position: absolute;
    bottom: 20px;
    right: 25px;
}

.sig_qna_wrap .itm_btn a{
    font-size: 18px;
    font-weight: bold;
    color: var(--text-black);
    text-decoration: none;
    transition: 0.5s;
}

.sig_qna_wrap .itm_btn a:hover{
    color: #e91e63;
}

.sig_qna_wrap .qna_cont .txt {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text-black);
    font-weight: normal;
    overflow: auto;
    max-height: 250px;
    margin-top: 15px;
}

/* width */
.sig_qna_wrap .qna_cont .txt::-webkit-scrollbar {
    width: 4px;
}
  
/* Track */
.sig_qna_wrap .qna_cont .txt::-webkit-scrollbar-track {
    background: #ffffffd3; 
}
   
/* Handle */
.sig_qna_wrap .qna_cont .txt::-webkit-scrollbar-thumb {
    background: #e91e63; 
}
  
/* Handle on hover */
.sig_qna_wrap .qna_cont .txt::-webkit-scrollbar-thumb:hover {
    background: #d81b60; 
}

#faqSlider .slick-dots{
    bottom: -50px;
}

#faqSlider .slick-dots li button:before{
    font-size: 16px;
    color:#e91e63;
}
#faqSlider .slick-dots li{
    margin: 0;
}

/*
*
*
*
* Responsive Area Start For Home Page
*
*
*
*/

@media only screen and (max-width: 1260px){
    #hero {
        min-height: 800px;
        overflow: hidden;
    }
    #hero .banner_content h1 > span.title_top {
        font-size: 30px;
    }
    #hero .banner_content h1{
        font-size: 45px;
    }
    #hero .banner_content p{
        font-size: 18px;
        margin-bottom: 10px;
    }
    #hero .banner_content .btn-hero{
        font-size: 18px;
        height: 50px;
    }
    #hero .banner_img .icon1 {
        left: 50px;
        top: 245px;
        width: 50px;
    }
    #hero .banner_img .icon2 {
        top: 337px;
        left: 100px;
        width: 55px;
    }
    #hero .banner_img .icon3 {
        top: 437px;
        width: 60px;
        left: 31px;
    }
    #hero .banner_img .icon4 {
        top: 526px;
        left: 110px;
    }
    #hero .banner_img .icon5 {
        top: 590px;
        left: 15px;
        width: 50px;
    }
    #hero .banner_img .icon6 {
        top: 215px;
        width: 60px;
        left: -152px;
    }

    #hero .banner_img .icon7 {
        top: 300px;
        left: -70px;
        width: 50px;
    }
    #hero .banner_img .icon8 {
        top: 400px;
        left: -128px;
        width: 60px;
    }
    #hero .banner_img .icon9 {
        top: 480px;
        left: -30px;
        width: 60px;
    }
    #hero .banner_img .icon10 {
        top: 600px;
        left: -98px;
        width: 60px;
    }
    #login .login_box{
        padding: 30px 12px;
    }
    .login_box .btn-signin{
        height: 50px;
        font-size: 18px;
    }
    .login_box .in_group .in_control{
        height: 50px;
        font-size: 18px;
        padding-left: 40px;
    }
    .login_box .in_group .icon{
        font-size: 18px;
        top: 12px;
        left: 13px;
    }
    .forgot_password a{
        color: var(--text-black);
        font-size: 18px;
        text-decoration: none;
    }
    .no_account a{
        font-size: 18px;
        color: var(--text-black);
        text-decoration: none;
    }
    #whySec{
        margin-top: 0px;
        padding-bottom: 50px;
    }
    #whySec .why_title{
        font-size: 35px;
    }
    #whySec .why_item{
        margin-top: 50px;
    }
    #whySec .why_item .why_item_wrap{
        width: 100%;
        padding: 30px 22px;
        border-radius: 10px;
    }
    #whySec .why_item .why_item_wrap .icon{
        width: 90px;
        margin-top: -75px;
    }
    #whySec .why_item .why_item_title{
        font-size: 25px;
    }
    #whySec .why_item .why_content p {
        width: 100%;
        font-size: 16px;
    }
    #deafultSec {
        padding: 40px 0;
    }
    #deafultSec .def_sec_content h2{
        font-size: 35px;
        margin-bottom: 15px;
    }
    #deafultSec .def_sec_content p{
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    #deafultSec .def_sec_content .def_btn_wrap .def_btn{
        height: 50px;
        font-size: 18px;
    }

    #deafultSec .def_right_img .insc_size{
        max-width: 100%;
    }
    #paymentSec {
        padding: 50px 0;
    }
    .sec_title .top_sm_title{
        font-size: 25px;
        margin-bottom: 12px;
    }
    .sec_title .title_normal{
        font-size: 35px;
        margin-bottom: 35px;
    }
    .sec_title.mb-5{
        margin-bottom: 2rem!important;
    }
    #paymentSec{
        background-position: 0px -40px;
    }
    .payment_item img{
        max-width: 1400px;
    }
    .payment_item_2 img{
        max-width: 1400px;
    }
    @keyframes paymentItem1 {
        0%{
            left: -800px;
        }
        50%{
            left: 400px;
        }
        100%{
           left: -800px;
        }
    }
@keyframes paymentItem2 {
    0%{
        right: -200px;
    }
    50%{
        right: 1000px;
    }
    100%{
        right: -200px;
    }
}

#faq {
    padding: 50px 0px;
}

.faqAccordian .accordion-item .accordion-button {
    font-size: 18px;
}

.faqAccordian .accordion-body {
    font-size: 16px;
}

.sig_qna_wrap .qna_cont h4 {
    font-size: 20px;
}

/* Pink color update */
.sig_qna_wrap .num_item {
    font-size: 25px;
    width: 60px;
    height: 60px;
    color: #ff69b4; /* Hot pink */
    border: 2px solid #ff69b494; /* Light pink border */
}

.sig_qna_wrap .itm_btn a {
    font-size: 16px;
    color: var(--text-black);
    transition: 0.5s;
}

.sig_qna_wrap .itm_btn a:hover {
    color: #ff69b4; /* Pink hover */
}

#testimonials {
    padding: 50px 0px;
}

.testimonial_item .testimonials_wraper {
    width: 90%;
    padding: 19px 20px;
}

/* Pink highlight under testimonials */
.testimonial_item .testimonials_wraper .testimoni_content p {
    font-size: 18px;
    min-height: 150px;
    max-height: 150px;
    line-height: 28px;
    color: #333;
}

.testimonials .slick-slide:nth-child(odd) 
.testimonial_item .testimonials_wraper .item_icon::after {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    background-color: #ffb6c1; /* Light pink accent */
}

.testimonial_item .testimonials_wraper .testimoni_content img {
    margin-bottom: 12px;
    width: 120px;
    border: 3px solid #ff69b4; /* Pink border for image */
    border-radius: 50%;
}

.testimonial_item .testimonials_wraper .item_icon::after {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    background-color: #ff9ccf; /* Soft pink tone */
}

.testimonial_item .testimonials_wraper .testimoni_content h4 {
    font-size: 24px;
    color: #ff69b4; /* Pink title */
}

/* Keep animation placement same */
.def_animations .def_icon1 {
    top: 200px;
    left: 125px;
    width: 60px;
}
.def_animations .def_icon2 {
    top: 300px;
    width: 60px;
    left: 170px;
}
.def_animations .def_icon3 {
    top: 390px;
    left: 115px;
    width: 60px;
}
.def_animations .def_icon4 {
    top: 160px;
    right: 70px;
    width: 60px;
}
.def_animations .def_icon5 {
    top: 250px;
    width: 60px;
    right: 100px;
}
@media only screen and (max-width: 992px) {
    #hero {
        min-height: 800px;
        overflow: hidden;
    }
    #hero .banner_content h1 > span.title_top {
        font-size: 22px;
        color: #ff69b4; /* soft hot pink accent */
    }
    #hero .banner_content h1 {
        font-size: 35px;
        color: #d81b60; /* dark pink for headings */
    }
    #hero .banner_content p {
        font-size: 16px;
        margin-bottom: 0px;
        color: #ffb6c1; /* light pink text */
    }
    #hero .banner_content .btn-hero {
        font-size: 16px;
        height: 45px;
        background-color: #ff69b4;
        border-color: #ff69b4;
        color: #fff;
    }
    #hero .banner_content .btn-hero:hover {
        background-color: #ff85c1;
        box-shadow: 0 0 10px #ffb6c1;
    }

    /* pink glow icons */
    #hero .banner_img .icon1,
    #hero .banner_img .icon2,
    #hero .banner_img .icon3,
    #hero .banner_img .icon4,
    #hero .banner_img .icon5,
    #hero .banner_img .icon6,
    #hero .banner_img .icon7,
    #hero .banner_img .icon8,
    #hero .banner_img .icon9,
    #hero .banner_img .icon10 {
        filter: drop-shadow(0 0 6px #ffb6c1);
    }

    #hero .banner_img .icon1 {
        left: 20px;
        top: 160px;
        width: 40px;
    }
    #hero .banner_img .icon2 {
        top: 225px;
        left: 55px;
        width: 45px;
    }
    #hero .banner_img .icon3 {
        top: 285px;
        width: 45px;
        left: 0px;
    }
    #hero .banner_img .icon4 {
        top: 340px;
        left: 45px;
    }
    #hero .banner_img .icon5 {
        top: 415px;
        left: -5px;
        width: 40px;
    }
    #hero .banner_img .icon6 {
        top: 130px;
        width: 45px;
        left: -85px;
    }
    #hero .banner_img .icon7 {
        top: 210px;
        left: -40px;
        width: 45px;
    }
    #hero .banner_img .icon8 {
        top: 308px;
        left: -74px;
        width: 50px;
    }
    #hero .banner_img .icon9 {
        top: 358px;
        left: -15px;
        width: 45px;
    }
    #hero .banner_img .icon10 {
        top: 440px;
        left: -50px;
        width: 50px;
    }

    #login .login_box {
        padding: 30px 12px;
    }
    .login_box .btn-signin {
        height: 45px;
        font-size: 16px;
        background-color: #ff69b4;
        color: #fff;
        border-color: #ff69b4;
    }
    .login_box .btn-signin:hover {
        background-color: #ff85c1;
    }

    .login_box .in_group .in_control {
        height: 45px;
        font-size: 16px;
        padding-left: 35px;
        border-color: #ffb6c1;
    }
    .login_box .in_group .icon {
        font-size: 16px;
        top: 10px;
        left: 14px;
        color: #ff69b4;
    }

    .forgot_password a {
        color: #ff69b4;
        font-size: 16px;
        text-decoration: none;
    }
    .no_account a {
        font-size: 16px;
        color: #d81b60;
        text-decoration: none;
    }

    #whySec {
        margin-top: 0px;
        padding-bottom: 40px;
    }
    #whySec .why_title {
        font-size: 30px;
        color: #ff69b4;
    }
    #whySec .why_item {
        margin-top: 40px;
    }
    #whySec .why_item .why_item_wrap {
        width: 100%;
        padding: 30px 22px;
        border-radius: 10px;
        border: 1px solid #ffb6c1;
        background-color: #fff0f6;
    }
    #whySec .why_item .why_item_wrap .icon {
        width: 90px;
        margin-top: -75px;
        filter: drop-shadow(0 0 6px #ffb6c1);
    }
    #whySec .why_item .why_item_title {
        font-size: 20px;
        color: #d81b60;
    }
    #whySec .why_item .why_content p {
        width: 100%;
        font-size: 14px;
        color: #ff69b4;
    }

    #deafultSec {
        padding: 40px 0;
    }
    #deafultSec .def_sec_content h2 {
        font-size: 30px;
        margin-bottom: 10px;
        color: #ff69b4;
    }
    #deafultSec .def_sec_content p {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 10px;
        color: #ffb6c1;
    }
    #deafultSec .def_sec_content .def_btn_wrap .def_btn {
        height: 45px;
        font-size: 16px;
        background-color: #ff69b4;
        color: #fff;
        border: none;
    }
    #deafultSec .def_sec_content .def_btn_wrap .def_btn:hover {
        background-color: #ff85c1;
    }
}
#deafultSec .def_right_img .insc_size{
    max-width: 100%;
}
#paymentSec {
    padding: 40px 0;
    background-color: #ffe4ec; /* light pink background */
}
.sec_title .top_sm_title{
    font-size: 22px;
    margin-bottom: 10px;
    color: #ff69b4; /* hot pink */
}
.sec_title .title_normal{
    font-size: 30px;
    margin-bottom: 30px;
    color: #ff1493; /* deeper pink */
}
.sec_title.mb-5{
    margin-bottom: 1.5rem!important;
}
#paymentSec{
    background-position: 0px -40px;
}
.payment_item img{
    max-width: 1400px;
}
.payment_item_2 img{
    max-width: 1400px;
}
@keyframes paymentItem1 {
    0%{
        left: -800px;
    }
    50%{
        left: 400px;
    }
    100%{
       left: -800px;
    }
}

@keyframes paymentItem2 {
    0%{
        right: -200px;
    }
    50%{
        right: 1000px;
    }
    100%{
        right: -200px;
    }
}
#faq{
    padding: 40px 0px;
    background-position: 0px -454px;
    background-color: #ffe4ec; /* soft pink */
}
.faqAccordian .accordion-item .accordion-button{
    font-size: 16px;
    color: #ff69b4;
}
.faqAccordian .accordion-body{
    font-size: 14px;
    color: #ff85c1;
}
#testimonials{
    padding: 40px 0px;
    background-color: #fff0f6; /* pale pink */
}
.testimonial_item .testimonials_wraper{
    width: 95%;
    padding: 19px 20px;
    background-color: #ffe4ec;
}
.testimonial_item .testimonials_wraper .testimoni_content p{
    font-size: 16px;
    line-height: 24px;
    color: #d63384; /* soft rose */
}
.testimonials .slick-slide:nth-child(odd) .testimonial_item .testimonials_wraper .item_icon::after{
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
    background-color: #ff85c1;
}
.testimonial_item .testimonials_wraper .testimoni_content img{
    margin-bottom: 10px;
    width: 100px;
}
.testimonial_item .testimonials_wraper .item_icon::after{
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
    background-color: #ffb6c1;
}
.testimonial_item .testimonials_wraper .testimoni_content h4{
    font-size: 20px;
    color: #ff1493;
}
.def_animations .def_icon1 {
    top: 120px;
    left: 50px;
    width: 40px;
}
.def_animations .def_icon2 {
    top: 195px;
    width: 60px;
    left: 85px;
}
.def_animations .def_icon3 {
    top: 265px;
    left: 40px;
    width: 50px;
}
.def_animations .def_icon4 {
    top: 90px;
    right: 40px;
    width: 50px;
}
.def_animations .def_icon5 {
    top: 185px;
    width: 50px;
    right: 25px;
}
}

@media only screen and (max-width: 767px) {
    #hero{
        overflow: hidden;
    }
    #hero .banner_content {
        margin-top: 70px;
    }
    #hero .banner_content h1{
        text-align: center;
        font-size: 30px;
        color: #ff1493;
    }
    #hero .banner_content h1 > span.title_top{
        font-size: 20px;
        color: #ff69b4;
    }
    #hero .banner_content p{
        font-size: 14px;
        text-align: center;
        margin: 0;
        color: #d63384;
    }
    #hero .banner_content .btn-hero{
        margin: 0 auto;
        font-size: 14px;
        width: 150px;
        height: 40px;
        background-color: #ff69b4;
        color: white;
    }
    #hero .banner_img{
        margin-top: -70px;
    }
    #hero .banner_img .icon1{
        top: 170px;
        left: 20px;
        width: 40px;
    }
    #hero .banner_img .icon2 {
        top: 240px;
        left: 45px;
        width: 50px;
    }
    #hero .banner_img .icon3 {
        top: 320px;
        left: 6px;
        width: 45px;
    }
    #hero .banner_img .icon4 {
        top: 371px;
        left: 55px;
        width: 43px;
    }
    #hero .banner_img .icon5 {
        top: 446px;
        left: 25px;
        width: 34px;
    }
    #hero .banner_img .icon6 {
        top: 145px;
        left: -90px;
        width: 50px;
    }
    #hero .banner_img .icon7 {
        top: 215px;
        width: 45px;
        left: -40px;
    }
    #hero .banner_img .icon8 {
        top: 290px;
        left: -100px;
        width: 50px;
    }
    #hero .banner_img .icon9 {
        top: 340px;
        left: -40px;
        width: 50px;
    }
    #hero .banner_img .icon10 {
        top: 427px;
        left: -64px;
        width: 50px;
    }
    #login .login_box{
        padding: 35px 15px;
        box-shadow: 0 5px 10px #ffc0cb;
    }
    .login_box .in_group .in_control{
        height: 45px;
        padding-left: 35px;
        font-size: 16px;
    }
    .login_box .in_group .icon{
        font-size: 18px;
        top: 10px;
        left: 14px;
        color: #ff69b4;
    }
    .login_box .btn-signin{
        font-size: 14px;
        height: 40px;
        margin-top: 30px;
        background-color: #ff69b4;
        color: #fff;
    }
    .login_box .in_group{
        margin-bottom: 10px;
    }
    .remember_me {
        margin-top: -70px;
    }
    .remember_me_has_cap {
        margin-top: -149px;
    }   
    .noAuth .stat-wrap{
        margin-bottom: 10px;
    } 
    .forgot_password {
        margin-top: 10px;
        text-align: center;
    }
    .forgot_password a{
        color: #ff1493;
        text-decoration: none;
    }
    .no_account{
        margin-top: 10px;
        text-align: center;
    }
    .no_account a{
        color: #ff1493;
        text-decoration: none;
    }
    
    #whySec{
        margin-top: 0px;
        padding: 40px 0;
        background-color: #fff0f6;
    }
    #whySec .why_title{
        font-size: 25px;
        color: #ff1493;
    }
    #whySec .why_item .why_item_wrap .icon {
        margin: 0 auto;
        margin-top: -75px;
        width: 80px;
        margin-bottom: 10px;
    }

    #whySec .why_item{
        margin-top: 55px;
    }
    #whySec .why_item .why_item_title{
        font-size: 20px;
        color: #ff69b4;
    }
    #whySec .why_item .why_content p{
        font-size: 16px;
        line-height: 1.4;
        color: #d63384;
    }
    #deafultSec{
        padding: 40px 0px;
        background-color: #fff0f6;
    }
    #deafultSec .def_sec_content h2{
        font-size: 25px;
        text-align: center;
        margin-bottom: 10px;
        color: #ff1493;
    }
    #deafultSec .def_sec_content h2 br{
        display: none;
    }
    #deafultSec .def_sec_content p{
        font-size: 16px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 10px;
        color: #d63384;
    }
    #deafultSec .def_sec_content .def_btn_wrap{
        text-align: center;
        margin-bottom: 20px;
    }
    #deafultSec .def_sec_content .def_btn_wrap .def_btn{
        width: 150px;
        height: 40px;
        font-size:14px;
        margin: 0 auto;
        background-color: #ff69b4;
        color: #fff;
    }
    #deafultSec .def_right_img .insc_size{
        max-width: 100%;
    }
    #paymentSec{
        padding: 40px 0px;
        background-color: #ffe4ec;
    }
    .sec_title .top_sm_title{
        font-size: 20px;
        margin-bottom: 10px!important;
        color: #ff69b4;
    }
    .sec_title .title_normal{
        font-size: 25px;
        margin-bottom: 10px;
        color: #ff1493;
    }

    .payment_item img{
       display: none;
    }

    .payment_item_2 img{
       display: none;
    }

    .showMob{
        display: block;
    }
   
    #paymentSec > .container > .row > .mb-5{
        margin-bottom: 1rem!important;
    }
    #paymentSec{
        background-position: 0px 0px;
    }
}
#deafultSec .def_right_img .insc_size{
    max-width: 100%;
}
#paymentSec {
    padding: 40px 0;
    background-color: #ffe4ec; /* light pink background */
}
.sec_title .top_sm_title{
    font-size: 22px;
    margin-bottom: 10px;
    color: #ff69b4; /* hot pink */
}
.sec_title .title_normal{
    font-size: 30px;
    margin-bottom: 30px;
    color: #ff1493; /* deeper pink */
}
.sec_title.mb-5{
    margin-bottom: 1.5rem!important;
}
#paymentSec{
    background-position: 0px -40px;
}
.payment_item img{
    max-width: 1400px;
}
.payment_item_2 img{
    max-width: 1400px;
}
@keyframes paymentItem1 {
    0%{
        left: -800px;
    }
    50%{
        left: 400px;
    }
    100%{
       left: -800px;
    }
}

@keyframes paymentItem2 {
    0%{
        right: -200px;
    }
    50%{
        right: 1000px;
    }
    100%{
        right: -200px;
    }
}
#faq{
    padding: 40px 0px;
    background-position: 0px -454px;
    background-color: #ffe4ec; /* soft pink */
}
.faqAccordian .accordion-item .accordion-button{
    font-size: 16px;
    color: #ff69b4;
}
.faqAccordian .accordion-body{
    font-size: 14px;
    color: #ff85c1;
}
#testimonials{
    padding: 40px 0px;
    background-color: #fff0f6; /* pale pink */
}
.testimonial_item .testimonials_wraper{
    width: 95%;
    padding: 19px 20px;
    background-color: #ffe4ec;
}
.testimonial_item .testimonials_wraper .testimoni_content p{
    font-size: 16px;
    line-height: 24px;
    color: #d63384; /* soft rose */
}
.testimonials .slick-slide:nth-child(odd) .testimonial_item .testimonials_wraper .item_icon::after{
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
    background-color: #ff85c1;
}
.testimonial_item .testimonials_wraper .testimoni_content img{
    margin-bottom: 10px;
    width: 100px;
}
.testimonial_item .testimonials_wraper .item_icon::after{
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
    background-color: #ffb6c1;
}
.testimonial_item .testimonials_wraper .testimoni_content h4{
    font-size: 20px;
    color: #ff1493;
}
.def_animations .def_icon1 {
    top: 120px;
    left: 50px;
    width: 40px;
}
.def_animations .def_icon2 {
    top: 195px;
    width: 60px;
    left: 85px;
}
.def_animations .def_icon3 {
    top: 265px;
    left: 40px;
    width: 50px;
}
.def_animations .def_icon4 {
    top: 90px;
    right: 40px;
    width: 50px;
}
.def_animations .def_icon5 {
    top: 185px;
    width: 50px;
    right: 25px;
}
}

@media only screen and (max-width: 767px) {
    #hero{
        overflow: hidden;
    }
    #hero .banner_content {
        margin-top: 70px;
    }
    #hero .banner_content h1{
        text-align: center;
        font-size: 30px;
        color: #ff1493;
    }
    #hero .banner_content h1 > span.title_top{
        font-size: 20px;
        color: #ff69b4;
    }
    #hero .banner_content p{
        font-size: 14px;
        text-align: center;
        margin: 0;
        color: #d63384;
    }
    #hero .banner_content .btn-hero{
        margin: 0 auto;
        font-size: 14px;
        width: 150px;
        height: 40px;
        background-color: #ff69b4;
        color: white;
    }
    #hero .banner_img{
        margin-top: -70px;
    }
    #hero .banner_img .icon1{
        top: 170px;
        left: 20px;
        width: 40px;
    }
    #hero .banner_img .icon2 {
        top: 240px;
        left: 45px;
        width: 50px;
    }
    #hero .banner_img .icon3 {
        top: 320px;
        left: 6px;
        width: 45px;
    }
    #hero .banner_img .icon4 {
        top: 371px;
        left: 55px;
        width: 43px;
    }
    #hero .banner_img .icon5 {
        top: 446px;
        left: 25px;
        width: 34px;
    }
    #hero .banner_img .icon6 {
        top: 145px;
        left: -90px;
        width: 50px;
    }
    #hero .banner_img .icon7 {
        top: 215px;
        width: 45px;
        left: -40px;
    }
    #hero .banner_img .icon8 {
        top: 290px;
        left: -100px;
        width: 50px;
    }
    #hero .banner_img .icon9 {
        top: 340px;
        left: -40px;
        width: 50px;
    }
    #hero .banner_img .icon10 {
        top: 427px;
        left: -64px;
        width: 50px;
    }
    #login .login_box{
        padding: 35px 15px;
        box-shadow: 0 5px 10px #ffc0cb;
    }
    .login_box .in_group .in_control{
        height: 45px;
        padding-left: 35px;
        font-size: 16px;
    }
    .login_box .in_group .icon{
        font-size: 18px;
        top: 10px;
        left: 14px;
        color: #ff69b4;
    }
    .login_box .btn-signin{
        font-size: 14px;
        height: 40px;
        margin-top: 30px;
        background-color: #ff69b4;
        color: #fff;
    }
    .login_box .in_group{
        margin-bottom: 10px;
    }
    .remember_me {
        margin-top: -70px;
    }
    .remember_me_has_cap {
        margin-top: -149px;
    }   
    .noAuth .stat-wrap{
        margin-bottom: 10px;
    } 
    .forgot_password {
        margin-top: 10px;
        text-align: center;
    }
    .forgot_password a{
        color: #ff1493;
        text-decoration: none;
    }
    .no_account{
        margin-top: 10px;
        text-align: center;
    }
    .no_account a{
        color: #ff1493;
        text-decoration: none;
    }
    
    #whySec{
        margin-top: 0px;
        padding: 40px 0;
        background-color: #fff0f6;
    }
    #whySec .why_title{
        font-size: 25px;
        color: #ff1493;
    }
    #whySec .why_item .why_item_wrap .icon {
        margin: 0 auto;
        margin-top: -75px;
        width: 80px;
        margin-bottom: 10px;
    }

    #whySec .why_item{
        margin-top: 55px;
    }
    #whySec .why_item .why_item_title{
        font-size: 20px;
        color: #ff69b4;
    }
    #whySec .why_item .why_content p{
        font-size: 16px;
        line-height: 1.4;
        color: #d63384;
    }
    #deafultSec{
        padding: 40px 0px;
        background-color: #fff0f6;
    }
    #deafultSec .def_sec_content h2{
        font-size: 25px;
        text-align: center;
        margin-bottom: 10px;
        color: #ff1493;
    }
    #deafultSec .def_sec_content h2 br{
        display: none;
    }
    #deafultSec .def_sec_content p{
        font-size: 16px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 10px;
        color: #d63384;
    }
    #deafultSec .def_sec_content .def_btn_wrap{
        text-align: center;
        margin-bottom: 20px;
    }
    #deafultSec .def_sec_content .def_btn_wrap .def_btn{
        width: 150px;
        height: 40px;
        font-size:14px;
        margin: 0 auto;
        background-color: #ff69b4;
        color: #fff;
    }
    #deafultSec .def_right_img .insc_size{
        max-width: 100%;
    }
    #paymentSec{
        padding: 40px 0px;
        background-color: #ffe4ec;
    }
    .sec_title .top_sm_title{
        font-size: 20px;
        margin-bottom: 10px!important;
        color: #ff69b4;
    }
    .sec_title .title_normal{
        font-size: 25px;
        margin-bottom: 10px;
        color: #ff1493;
    }

    .payment_item img{
       display: none;
    }

    .payment_item_2 img{
       display: none;
    }

    .showMob{
        display: block;
    }
   
    #paymentSec > .container > .row > .mb-5{
        margin-bottom: 1rem!important;
    }
    #paymentSec{
        background-position: 0px 0px;
    }
}

    #faq{
        padding: 40px 0px;
    }
    #faq .sec_title.mb-5{
        margin-bottom: 1rem!important;
    } 
    #faq .sec_title .title_normal{
        font-size: 25px;
        text-align: center;
        margin-bottom: 10px;
    }
    .faqAccordian .accordion-item {
        margin-bottom: 5px;
    }
    .faqAccordian .accordion-item .accordion-button {
        font-size: 14px;
        padding: 8px;
    }
    #faq{
        background-position: 0px -278px;
    }
    .faqAccordian .accordion-item .accordion-body{
        font-size: 14px;
    }
    .faqAccordian .accordion-item .accordion-button::after {
        width: 0.7rem;
        height: 0.7rem;
        background-size: contain;
    }
    #testimonials{
        padding: 40px 0px;
    }
    .testimonial_item .testimonials_wraper{
        width: 95%;
    }
    .testimonial_item .testimonials_wraper .item_icon::after{
        width: 35px;
        height: 35px;
    }
    .testimonials .slick-slide:nth-child(odd) .testimonial_item .testimonials_wraper .item_icon::after{
        width: 35px;
        height: 35px;
    }
    .testimonial_item .testimonials_wraper{
        padding: 20px 15px;
    }
    .testimonial_item .testimonials_wraper .testimoni_content p{
        font-size: 14px;
        line-height: 1.5;
    }
    .testimonial_item .testimonials_wraper .testimoni_content img{
        width: 90px;
        margin-bottom: 10px;
    }
    .testimonial_item .testimonials_wraper .testimoni_content h4{
        font-size: 18px;
    }
    .def_animations .def_icon1 {
        top: 100px;
        left: 50px;
        width: 40px;
    }
    .def_animations .def_icon2 {
        top: 180px;
        left: 45px;
        width: 70px;
    }
    .def_animations .def_icon3 {
        top: 278px;
        left: 30px;
    }
    .def_animations .def_icon4{
        top: 75px;
        right: 20px;
        width: 50px;
    }
    .def_animations .def_icon5 {
        top: 160px;
        right: 20px;
        width: 55px;
    }

    .sig_qna_wrap .qna_cont h4{
        font-size: 18px;
    }
    .sig_qna_wrap .qna_cont .txt{
        font-size: 14px;
    }
    #faqSlider .slick-dots li button:before{
        font-size: 14px;
    }
}


#single_blog_post {
    margin-top: 35px;
}

.post_content {
    border: 2px solid #39139b;
    background: #f7f7f7;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.btn.btn-primary.back_btn {
    margin-bottom: 100px;
    padding: 10px 30px;
}

.benifit_name h4 {
    color: var(--text-primary);
}

.dashboard.nightmode .benifit_name h4{
    color: var(--dark-text-primary);
}

/*
*
*
* Home Design CSS END
*
*/


#howItworks{
    min-height: 750px;
    background: url(https://res.cloudinary.com/grow-follows/image/upload/v1656760174/growfollows_home/How_It_Works_BG_dwkqph.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 0px;
}

#howItworks .how_it_content h1{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 55px;
    line-height: 1.2;
    color: var(--text-black);
}
#howItworks .how_it_content h1 > span{
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: var(--home-hero-top-text);
}
#howItworks .how_it_content .how_btn .btn_how{
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
        color: var(--text-white);
        background: var(--text-primary);
        width: 200px;
        height: 60px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.5s;
    }

#howItworks .how_it_content .how_btn .btn_how:hover{
        background: var(--home-btn-hover);
    }

#howItworks .how_img img{
    animation: float 3s ease infinite;
}

#howItWorksBox{
    padding: 150px 0px;
}

.how_works_btn_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
}
.how_works_btn_wrap .nav-link{
    font-family: 'Poppins';
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--text-white);
    border-radius: 50px;
    padding: 8px;
    min-width: 260px;
    font-size: 20px;
    color: var(--text-black);
    font-weight: bold;
    box-shadow: 0 0 10px #ddd;
    border: 2px solid var(--text-white);
}

.how_works_btn_wrap .nav-link .btn_serial{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    background: var(--bg-secondary);
    color: var(--text-black);
    font-weight: bold;
    border-radius: 50px;
}

.how_works_btn_wrap .nav-link.active{
    background: var(--text-white)!important;
    color: var(--text-black);
    border-color: var(--bg-secondary);
    cursor: pointer;
}

.how_it_works_tab_content{
    margin-top: 45px;
}

.how_item_content h2{
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.how_item_content p{
    font-size: 16px;
    color: var(--text-black);
}
.how_item_content p > strong {
    font-weight: bolder;
    color: var(--text-primary);
}

.how_it_works_tab_content .tab-pane{
    background: var(--text-white);
    min-height: 750px;
    box-shadow: 0 0 20px #ddd;
    border-radius: 25px;
    padding: 30px;
}

.how_item_img{
    text-align: right;
}

.how_item_info{
    background: #f6f7fb;
    border: 2px solid var(--text-primary);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 15px;
}

.info_title h4 {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-black);
}
.info_title h4 > span{
    font-size: 36px;
    color: var(--text-primary);
}

.info_content p{
    font-size: 16px;
    font-weight: normal;
    color: var(--text-black);
}

.noAuth .navbar.navbar-expand-lg.navbar-light.bg-light {
    background: #b3005a !important;
    padding: 15px 0;
}


.noAuth .nav-link {
    font-size: 18px;
    font-weight: 500;
    padding: 0.5rem 1rem!important;
}

.noAuth .nav-link.active{
    font-weight: 800;
}

#signUp {
    overflow: hidden;
}

.sigup_title h1 {
    text-align: center;
    font-weight: 800;
    color: var(--text-black);
    margin-top: 50px;
}


/*
    hOME PAGE DESIGN 
*/
#banner {
    padding: 5rem 0;
    background: url(https://cdn.mypanel.link/hmz1fi/moxku6f6j005qx7d.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}
.sbadge{
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    background: var(--text-white);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 5px #f1f0f0;
}
h1.naHdTi{
    font-size: 45px;
    font-weight: bold;
}
p.naHdTx{
    font-size: 14px;
}
.btn_banner{
    padding: 10px 20px!important;
}
#counter{
    padding: 2rem 0;
    background: #f2f2f2;
}
.counter_item{
    text-align: center;
    padding: 15px;
}
.counter_icon img{
    width: 50px;

}
.counter_icon .item_cart.img-fluid {
    width: 80px;
    margin-bottom: 15px;
}

.counter_icon .item_money.img-fluid {
    width: 60px;
    margin-bottom: 15px;
}
.counter_icon .item_txt.img-fluid {
    width: 70px;
    margin-bottom: 10px;
}
.counter_icon .item_api.img-fluid {
    width: 100px;
    margin-bottom: 5px;
}

.counter_count h4{
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 5px;
}
.counter_count h5{
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 5px;
}

#counter .counter_item .counter_icon img {
    width: 65px;
    height: auto;
}



@media only screen and (max-width: 1280px){
    .how_works_btn_wrap{
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 15px;
    }
    .how_works_btn_wrap .nav-link {
        min-width: 100%;
        width: 100%;
        gap: 10px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    #howItworks{
        padding: 50px 0px;
    }
    #howItworks .how_it_content{
        margin-bottom: 20px;
    }
    #howItworks .how_it_content h1{
        font-size: 35px;
    }
    #howItworks .how_it_content h1 > span{
        font-size: 25px;
    }
    #howItworks .how_it_content .how_btn .btn_how{
        height: 50px;
        font-size: 18px;
    }
    .how_img{
        text-align: center;
        margin-top: 15px;
    }
    .how_img img{
        width: 90%;
    }
    #howItWorksBox {
        padding: 50px 0px;
    }
    .how_works_btn_wrap{
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 5px;
    }
    .how_works_btn_wrap .nav-link {
        min-width: 100%;
        width: 100%;
        gap: 5px;
        font-size: 14px;
    }
    
    .how_works_btn_wrap .nav-link .btn_serial {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    .how_it_works_tab_content .tab-pane{
        padding: 20px;
        min-height: 500px;
    }

    .how_item_content h2 {
        font-size: 28px;
    }
    .how_item_content p {
        font-size: 16px;
    }
    .how_item_info{
        padding: 15px;
        margin-bottom: 10px;
    }
    .info_title h4 {
        font-size: 18px;
    }    
    .info_title h4 > span {
        font-size: 22px;
    }
    .info_content p{
        font-size: 16px;
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 767px){
    #howItworks{
        padding: 70px 0px;
    }
    #howItworks .how_it_content{
        margin-bottom: 15px;
    }
    #howItworks .how_it_content h1{
        font-size: 30px;
        text-align: center;
    }
    #howItworks .how_it_content h1 > span{
        font-size: 20px;
    }
    #howItworks .how_it_content .how_btn .btn_how{
        height: 40px;
        font-size: 16px;
        margin: 0 auto;
    }
    .how_img{
        text-align: center;
        margin-top: 15px;
    }
    .how_img img{
        width: 80%;
    }
    #howItWorksBox {
        padding: 70px 0px;
    }
    .how_works_btn_wrap{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .how_works_btn_wrap .nav-link {
        min-width: 45%;
        width: 100%;
        gap: 5px;
        font-size: 12px;
    }
    
    .how_works_btn_wrap .nav-link .btn_serial {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    .how_works_btn_wrap .nav-link.active{
        font-size: 12px;
        padding: 8px;
    }
    .how_it_works_tab_content .tab-pane{
        padding: 15px;
        min-height: 300px;
    }

    .how_item_content h2 {
        font-size: 24px;
    }
    .how_item_content p {
        font-size: 14px;
    }
    .how_item_info{
        padding: 15px;
        margin-bottom: 10px;
    }
    .info_title h4 {
        font-size: 18px;
    }    
    .info_title h4 > span {
        font-size: 22px;
    }
    .info_content p{
        font-size: 14px;
        margin-bottom: 0;
    }
}

/* Mobile navigation without login */
#navMob{
    transform: translateY(2000px);
    position: fixed;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease-in-out;
}

@media only screen and (max-width:990px) {
    #navMob {
        bottom: 0px;
        z-index: 9999999999;
        width: 100%;
        background: #fff;
        border-radius: 30px 30px 0px 0px;
        box-shadow: 0 0 10px #d3cfcf;
        padding-bottom: 29px;
    }
    #navMob.active {
        transform: translateY(0px);
        opacity: 1;
        pointer-events: auto;
        bottom: 0;
    }
}

.nav_content {
    width: 90%;
    margin: 0 auto;
}

.menu_mobs {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.menu_mobs li a {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.menu_mobs li a.active{
    color: #3a6a92;
}

#navMob .nav_content .btn {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    margin: 0;
}
#cls {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2b608754;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    font-size: 20px;
    color: #557ea1;
    z-index: 999;
}
.btn_icon {
    position: absolute;
    background: #99c6e5;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: inline-block;
    line-height: 30px;
    right: 8px;
    top: 7px;
}

#navMob .nav_content .btn a:first-child{
    background: #e5e5e5;
    color: #232323;
}
#navMob .nav_content .btn a:last-child{
    position: relative;
}
#navMob .nav_content .btn a {
    background: var(--text-primary);
    padding: 10px 0px;
    border-radius: 50px;
    color: #ffff;
    font-weight: bold;
    font-size: 16px;
}

#navbar.shrink {
    top: -73px;
    transition: 0.5s ease-in-out;
}

#navbar.shrink.fixed-top {
    top: 0px;
    background: #fff;
    transition: 0.5s ease-in-out;
}

/* Sevice page modal design */

.serv_modal_close {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--dark-text-primary);
    top: 15px;
    right: 15px;
    border-radius: 50px;
    z-index: 9;
    opacity: 1;
    color: #fff;
    border: none;
    
}

.servicesHead {
    min-height: 250px;
    background: linear-gradient( rgba(221, 221, 221, 5%),rgba(221, 221, 221, 5%)),linear-gradient(rgba(221, 221, 221, 5%),rgba(221, 221, 221, 5%)),url(https://cdn.mypanel.link/770smr/08xz2nr05ora49hs.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    padding-top: 50px;
    border-radius: 20px 20px 0px 0px;
}

#servDescriptionDialog .modal-body{
    padding: 0;
}

#servId {
    font-size: 18px;
    background: var(--text-primary);
    padding: 5px 30px;
    display: inline-block;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
}

#servDescriptionDialog .modal-content {
    border-radius: 20px;
    border: none;
}
#serv_names {
    display: inline-block;
    width: 90%;
    font-size: 18px;
    font-weight: 800;
    color: #232323;
    margin: 0 auto;
    margin-top: 10px;
}

#serv_details {
    width: 85%;
    margin: 0 auto;
    background: #f3f1f1;
    margin-top: -50px;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 0 10px #1e1e1e63;
}

.serv_more_infos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 50px;
    padding-bottom: 30px;
    width: 95%;
    margin: 0 auto;
}
.buyNOwBtn{
    width: 85%;
    margin: 0 auto;  
    padding-bottom: 20px;
}
#buyNow {
    width: 100%;
    background: var(--text-primary);
    display: block;
    padding: 10px 30px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.ser_more_item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.serv_more_icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(#814df7,#361187);
    color: #fff;
    font-size: 35px;
    line-height: 75px;
    border-radius: 50px;
    box-shadow: inset 0 0 10px #dddddd70;
}

.more_infos h5 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: var(--text-black);
}

.more_infos > span {
    font-size: 20px;
    font-weight: 800;
    color: #00ffa3;
}

.dashboard.nightmode .modal-content{
    background: var(--bg-sidebar-night);
}

.dashboard.nightmode #serv_names{
    color: var(--text-white);
}

.dashboard.nightmode #serv_details{
    background: var(--dark-bg-input);
    color: #fff!important;
}

.dashboard.nightmode #buyNow{
    background: var(--dark-text-primary);
}

.dashboard.nightmode .more_infos h5 {
    color: #fff;
}
.dashboard.nightmode  .serv_more_icon{
    background: linear-gradient(#f9446c,#00ffa3);
}
@media (min-width: 576px){
    #servDescriptionDialog {
        max-width: 600px;
    }
}

@media (max-width: 576px){
    #banner{
        background: transparent!important;
    }
    #deafultSec.bg_color_1.has_bg{
        background-size: cover;
    }
    .top__title p{
        width: 100%;
    }
    h2.heading,
    h1.naHdTi{
        font-size: 25px;
        text-align: center;
    }
    .text_center_mob{
        text-align: center;
    }
    p.naHdTx{
        text-align: center;
    }
    .more_infos h5{
        font-size: 13px;
    }
    .more_infos > span{
        font-size: 16px;
    }
    .servicesHead{
        min-height: 200px;
        padding-top: 10px;
    }
    .serv_modal_close{
        width: 30px;
        height: 30px;
    }

    .serv_more_infos{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .serv_more_icon {
        width: 60px;
        line-height: 60px;
        font-size: 20px;
        height: 60px;
    }
    #serv_details{
        font-size: 14px;
    }
    .logo_off_nav {
        width: 150px;
    }
}
#currency_changer5{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#currency_changer5,
#currencyToggler2{
    margin-bottom: 0px!important;
}
#currencyToggler2{
    width: 45px;
    height: 45px;
    background-color: var(--bg-secondary);
    color: var(--bg-sidebar-day);
    font-size: 22px;
    padding: 0px;
    text-align: center;
    border-radius: 50px;
}
#currencyToggler2::after{
    display: none;
}

@media only screen and (max-width: 550px){
        #currencyToggler2{
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 15px;
        }
        .user_settings{
            gap: 5px;
        }
}

#orders-drop {
    position: absolute!important;
    inset: 0px auto auto 0px!important;
    margin: 0px!important;
    transform: translate(0px, 62px)!important;
}

#category-drop {
    position: absolute!important;
    inset: 0px auto auto 0px!important;
    margin: 0px!important;
    transform: translate(0px, 42px)!important;
}

.show#dropdownMenu3,
.show#order-dd{
    box-shadow: 0 0 2px var(--text-primary);
}

@media only screen and (max-width:550px) {
    #order-dd,
    #dropdownMenu3{
        font-size: 12px;
    }
    #orders-drop{
        transform: translate(0px, 50px)!important;
    }
    .line3#orders-drop{
        transform: translate(0px, 69px)!important;
    }
    #orders-drop .dropdown-item{
        font-size: 12px;
    }
    .item_content .serviceLink{
        font-size: 10px;
    }
    .line2#category-drop{
        transform: translate(0px, 50px)!important;
    }
}


.gizli{
    display: none!important;
}

#proFile {
    border-radius: 150px;
    object-fit: cover;
}
.user_top_avatar{
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--dark-bg-input);
    border-radius: 50px;
    object-fit: cover;
}
.user_top_avatar img {
    border-radius: 50px;
    object-fit: cover;
}

.v2_avatar {
    width: 85px;
    height: 85px;
    background: #3a0f9e;
    border-radius: 85px;
    object-fit: cover;
    margin-bottom: 5px;
}

.v2_avatar img {
    width: 85px;
    height: 85px;
    object-fit: cover;
}
.btn_whatsapp {
    background: #25d366;
    padding: 15px 35px;
    border-radius: 50px;
    color: #ffff;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn_whatsapp > i{
    font-size: 25px;
}
.support__btn__wrap {
    text-align: center;
}
.contact__item {
    background: #ffffffa3;
    padding: 50px 30px;
    margin-top: 20px;
    border: 2px solid #ddd;
    border-radius: 20px;
    min-height: 330px;
}

.contact__item__icon {
    text-align: center;
    margin-bottom: 20px;
}

.contact__item__icon img {
    width: 100px;
}

.contact__item__info {
    text-align: center;
}

.contact__item__info h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 5px;
    text-align: center;
}

.contact__item__info h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: var(--text-primary);
}

.contact__item__info h3  > a {
    color: var(--text-primary);
}

/* Drop Dwon Design */

.settings_drop {
    margin: 0;
    padding: 0;
    width: 250px;
    border-radius: 10px;
    border: 1px solid #fb981e;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 0 10px #000;
}

.nightmode .settings_drop{
    border-color: var(--dark-text-primary);
}

.user__menu{
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.user__menu a{
    display: flex;
    background: #f4f4f4;
    padding: 5px;
    border-radius: 5px;
    align-items: center;
    gap: 10px;
    color: #000;
    transition: 0.5s ease;
}

.user__menu a:hover{
    background: var(--primary-gradient);
}
.nightmode .user__menu a{
    background: #f4f4f414;
    color: var(--text-white);
}
.nightmode .user__menu a:hover{
    color: var(--dark-bg-input);
    background: var(--primary-gradient);
}
span.user_menu_icon {
    width: 30px;
    height: 30px;
    background: #dedede;
    color: #21203b;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
}

.nightmode span.user_menu_icon{
    color: var(--dark-text-primary);
    background: #444444;
}
a.logout_btn {
    display: flex;
    background: #5815ed;
    padding: 5px;
    border-radius: 5px;
    align-items: center;
    gap: 10px;
    color: #fff;
    box-shadow: 0 3px 6px #040303;
    justify-content: center;
    min-height: 40px;
}
.nightmode a.logout_btn{
    background: var(--dark-text-primary);
}
@media only screen and (max-width: 550px) {
    .settings_drop {
        width: 300px;
        padding: 5px;
    }
    a.logout_btn {
        font-size: 14px;
        min-height: 30px;
    }
    span.user_menu_icon {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        width: 25px;
        height: 25px;
    }
    
    .user__menu{
        gap: 7px;
        margin-bottom: 5px;
    }
}

/*
*
*   Tech SMM Version 2.0
*   Designed by : Yunus
*   Email: yunus.a.polash@gmail.com
*   Phone/Whatsapp: +8801303260848
*
*/

:root {
    --primary-gradient: linear-gradient(267deg, #ff9ec4 3.42%, #ff4da6 91.65%);
}


.nav--2.bg-nav-notauth{
    background: var(--text-white)!important;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
    min-height: 80px;
}

.nav--2 .nav-item .nav-link{
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-black);
}

.nav--2 .nav-item.btn__sp__nav .nav-link{
    color: var(--text-white);
    border-radius: 50px;
    background: var(--primary-gradient);
    padding: 8px 20px;
    margin: 0px 15px;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.25));
}

.btn.btn-primary.btn-gradient {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    background: #ff1a75; /* vibrant pink */
    padding: 12px 25px;
    border-radius: 50px;
    border: 2px inset #f1f2f6;
    box-shadow: 3px 4px 3px #0c0202;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.25));
}

/* Banner */
#v2-banner {
    min-height: 850px;
    background: linear-gradient(
        135deg,
        rgba(255, 192, 203, 0.4),   /* light transparent pink */
        rgba(255, 182, 193, 0.4),   /* softer pink */
        rgba(255, 182, 193, 0.3),   /* more subtle */
        rgba(255, 192, 203, 0.3)
    );
    background-size: 400% 400%;
    background-position: center;
    animation: softPinkMove 15s ease infinite;
    color: #070303; /* text color */
    backdrop-filter: blur(4px); /* optional glass effect */
}

@keyframes softPinkMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


@keyframes pinkGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


@keyframes bannerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bannerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bannerGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#v2-banner .v2_banner_content{
    padding: 150px 0px;
}

#v2-banner .v2_banner_content h1{
    font-family: 'Poppins', sans-serif;
    font-size: 55px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

#v2-banner .v2_banner_content h4{
    color: #3a4046;
}

#v2-banner .v2_banner_content h4 > span{
    color: #0c0c0b;
}

#v2-banner .banner_image img{
    position: relative;
    bottom: 0px;
    right: -100px;
} 
.banner_animations{
    position: relative;
}
.banner_animations > img{
    position: absolute;
    z-index: 9;
}

.banner_animations .tw_bnn{
    top: 390px;
    left: 60px;
    animation: pulse 1s infinite;
}
.banner_animations .ig_bnn{
    top: 210px;
    left: 0px;
    animation: bounceIn 2s infinite;
}
.banner_animations .fb_bnn{
    top:70px;
    left: 50px;
    animation: tada 2s infinite;
}

.banner_animations .yt_bnn{
    left: 240px;
    top: 70px;
    animation: bounceOut 5s infinite;
}
.banner_animations .tik_bnn{
    top: 230px;
    left: 240px;
    animation: jello 2s infinite;
}
.banner_animations .sp_bnn{
    top: 400px;
    left: 180px;
    animation: swing 2s infinite;
}

#signinSection{
    position: relative;
    z-index: 1;
    height: 220px;
    top: -150px;
}

#signinSection .signin__container {
    background: #ff1a75; /* vibrant pink */
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0px 0px 55px 0px rgba(255, 26, 117, 0.71); /* pink glow */
}

#signinSection .signin__container .signin__inner {
    padding: 1px;
    border: double 1px transparent;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        #ff66b2,  /* bright pink */
        #ff1a75,  /* vibrant pink */
        #e60073,  /* deeper pink */
        #ff3385   /* accent pink */
    );
    background-origin: border-box;
    box-shadow: 2px 3px 3px rgba(255, 26, 117, 0.6); /* pink shadow */
    background-clip: content-box, border-box;
}


.signinForm{
    padding: 25px;
}

.signinForm h3{
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}

.signinForm .signin__access__wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}
.signinForm .signin__access__wrap .signin__username .form-control,
.signinForm .signin__access__wrap .signin__password .form-control{
    height: 60px;
    border-radius: 50px;
    padding: 10px 20px;
    background: #F5F4F2;
    border-color: #F5F4F2;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.18);
}

.signinForm .signin__access__wrap .signin__username .form-control:focus,
.signinForm .signin__access__wrap .signin__password .form-control:focus{
    border-color: #4EDF79;
}

.signinForm .signin__access__wrap .singin__button .btn__signin{
    width: 100%;
    height: 60px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.18);
}

.signinForm .singin__essent{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.signinForm .singin__essent{
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.signinForm .singin__essent p a{
    color: #F99B21;
}

.signinForm .singin__essent .forgotPassword a{
    color: #1CAC44;
}

#CounterSections .counter_item__wrap{
    display: flex;
    gap: 10px;
    align-items: center;
}

.counter_wraper_bg {
    background: #fff;
    padding: 45px 25px;
    box-shadow: 0px 0px 55px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

#CounterSections .counter_item__wrap h4{
    color: #000;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

#CounterSections .counter_item__wrap p{
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

#top__smm{
    padding: 150px 0px;
    padding-bottom: 20px;
}

.section__title{
    color: #000;
    font-family: Poppins;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px;
}

#bestsmmpanel{
    background: linear-gradient(to left, #015590, #80a3bc);
    padding: 150px 0;
    border-radius: 0px 0px 0px 150px;
    overflow: hidden;
}

.best__btn__wrap{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.best__btn__wrap .btn__best.bg__blck{
    background: #000!important;
}

.best__btn__wrap .btn__best.bg__white{
    background: #fff!important;
    color: #000;
}
#bestsmmpanel{
    position: relative;
}
.best_smm_panel > img{
    position: absolute;
    right: 0;
    top: -24px;
}
.best_smm_animations{
    position: relative;
    z-index: 1;
}

.best_smm_animations > img{
    position: absolute;
    border-radius: 50px;
    box-shadow: 0 5px 10px rgba(49, 49, 49, 0.13)
}

.best_smm_animations .tw_bnn{
    left: 296px;
    top: 236px;
    animation: pulse 1s infinite;
}
.best_smm_animations .ig_bnn{
    top: 240px;
    right: -70px;
    animation: bounceIn 2s infinite;
}
.best_smm_animations .fb_bnn{
    top: -50px;
    right: 264px;
    animation: tada 2s infinite;
}
.best_smm_animations .tik_bnn{
    top: 100px;
    right: -150px;
    animation: jello 2s infinite;
}
.best_smm_animations .sp_bnn{
    top: 95px;
    left: 192px;
    animation: swing 2s infinite;
}

.best_smm_animations .yt_bnn{
    top: -60px;
    right: -60px;
    animation: bounceOut 5s infinite;
}
.smmpanel_best_main__image{
    animation: bobs 5s infinite;
}
@keyframes bobs {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}
.bestsmm__bg__animations {
    position: absolute;
    top: 40px;
    right: 30px;
    mix-blend-mode: screen;
}
.best_bg_ring{
    position: absolute;
    bottom: 0px;
}
#howItWorksSection{
    padding: 100px 0px;
}
.how-its-items{
    position: relative;
}
.how-its-items {
    text-align: center;
}
.how-its-items .how-icons {
    width: 100px;
    height: 100px;
background: linear-gradient(to bottom, #ff4081, #cda8b7);
border-radius: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    margin: 0 auto;
    margin-bottom: 20px;
}

.how-its-items h4{
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 125% */
}
.how_icon_up{
    position: absolute;
    right:-100px;
    top: 30px;
}
#faqSection{
    padding: 0px 0px 100px 0px;
}

.roateds{
    animation: roateded 10s infinite;
    transition: 0;
}

@keyframes roateded {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}

.accordion__wraper .accordion-item{
    padding: 1px;
    border: double 1px transparent;
    border-radius: 10px;
    background-image: linear-gradient(white, white), 
                        linear-gradient(to bottom,#F89A20, #4EDF79);
    background-origin: border-box;
    background-clip: content-box, border-box;
    margin-bottom: 25px;
    box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.10);
}

.accordion__wraper .accordion-item button{
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    background: transparent;
    box-shadow: none;
}

#testimonialSection{
    padding: 100px 0px;
}

.testimonial__item__wrap{
    width: 90%;
    margin: 0 auto;
    text-align: center;
}
.sliderBtn{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    border-radius: 50px;
    background: var(--primary-gradient);
    border:none;
    color: var(--text-white);
    z-index: 6;
}
.sliderBtn.slide-prev{
    position: absolute;
    top: 70px;
}
.sliderBtn.slide-next{
    position: absolute;
    top: 70px;
    right: 0;
}

.testimonial__item__wrap .top__icon{
    margin-bottom: 25px;
}

.testimonial__item__wrap .stars{
    color: rgb(255, 167, 3);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial__item__wrap h4{
    font-family: Poppins;
    font-weight: 700;
    color: #000;
    margin-bottom: 0px;
}

.testimonial__item__wrap p{
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

#whyChooseUs {
    padding: 50px 0px;
    background: 
        linear-gradient(120deg, rgba(255,192,203,0.5) -1.05%, rgba(255,182,193,0.5) 100%), 
        url(https://cdn.mypanel.link/hmz1fi/fgo8u5bmc64tlxu0.png), 
        linear-gradient(120deg, rgba(255,182,193,0.3) -1.05%, rgba(255,192,203,0.3) 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    border-radius: 0 150px 0 0;
}

.why__item__wrap{
    background: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0px 4px 33px 0px rgba(0, 0, 0, 0.13);
}

.why__item__wrap .why__item__top{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}


.why__item__wrap .why__item__top h3{
    color: #000;
    font-family: Poppins;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
}
#blogSection{
    padding: 50px 0px;
    background: #ededed;
    border-radius: 0px 0px 0px 150px;
}
.blog__card{
    background: var(--text-white);
    box-shadow: 0px 4px 22px 0px rgb(0 0 0 / 25%);
    height: 100%;
}
.blog__card .blog__image > img{
    width: 100%;
}

.blog__card .blog__content{
    padding: 20px 20px;
}
.blog__card  .blog__date{
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.blog__card  h3{
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.blog__card p{
    font-size: 14px;
    margin-bottom: 10px;
}
.blog__card .btn-sm{
    font-size: 14px;
    padding: 10px 20px;
}
#paymentSection{
    padding: 70px 0;
}
.hr-line{
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
}
.footer__v2{
    padding: 60px 0 20px 0;
    background: #000;
}

.footer__v2 .logo__white{
    margin-bottom: 25px;
}

.footer__v2 .infos__wrap{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.footer__v2 .infos__wrap .infos__icon{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(233deg, #5b94bc 22.58%, #015590 88.75%);
    border-radius: 50px;
    color: var(--text-white);
    font-size: 20px;
}
.footer__v2 .infos__wrap .infos__txt h6{
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
}

.footer__v2 .infos__wrap .infos__txt a{
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
}

.foo__link__wraper h4{
    color: #FFF;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
    margin-top: 0;
}
.foo__link__wraper .foo__menu{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.foo__link__wraper .foo__menu a{
    display: block;
    color: var(--text-white);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.payment__images {
    text-align: center;
    margin-top: 20px;
}

.dashboard .btn-primary.btn-sm {
    font-size: 14px;
    padding: 5px 10px;
}

.currency_change_btn {
    display: flex;
    gap: 5px;
    padding: 0px;
    box-shadow: none;
}

.dashboard.nightmode .currency_change_btn{
    color: var(--text-white);
}

.top__smm__img{
    position: relative;
}

.top__smm__img .img-icon-favs{
    position: absolute;
    top: 50%;  
    left: 50%; 
    transform: translate(-50%, -50%);
}
#cheapest{
    position: relative;
}
.gradient-1,
.gradient-2{
    position: absolute;
    overflow: hidden;
}

.gradient-1 {
    left: -350px;
    top: -458px;
    z-index: -1;
}

.gradient-2 {
    right: 0px;
    z-index: -1;
}

/* Home page Responsive Area */
@media only screen and (max-width:1600px) {
#v2-banner .v2_banner_content h1{
    font-size: 45px;
    color: #d97fae; /* soft pink */
}
p{
    font-size: 16px;
    color: #d97fae; /* soft pink */
}
.singin__essent .signup__wrap p{
    margin-bottom: 0px;
    color: #d97fae; /* soft pink */
}
.signinForm h3{
    font-size: 30px;
    color: #d97fae; /* soft pink */
}
.signinForm .singin__essent .forgotPassword a{
    font-size: 14px;
    color: #ffb3cc; /* lighter pink for links */
}
.signinForm .singin__essent{
    align-items: center;
}
#top__smm{
    padding: 100px 0px;
}
.section__title{
    font-size: 40px;
    line-height: 1.4;
    color: #d97fae; /* soft pink */
}
.mb-5{
    margin-bottom: 2rem!important;
}
.why__item__wrap .why__item__top h3{
    font-size: 28px;
    line-height: 1.3;
    color: #d97fae; /* soft pink */
}
.best_smm_panel > img{
    right: -148px;
}
#bestsmmpanel{
    padding: 150px 0px;
}
.best_smm_animations .tik_bnn {
    top: 79px;
    right: -89px;
}
.best_smm_animations .sp_bnn{
    left: 220px;
}
.best_smm_animations .fb_bnn{
    right: 275px;
}
.best_smm_panel > img{
    top: 22px;
}
@media only screen and (max-width:1400px) {
    #v2-banner .v2_banner_content h1{
        font-size: 40px;
        color: #d97fae; /* soft pink */
    }
    #v2-banner .banner_image img{
        right: -75px;
    }
    .banner_animations .sp_bnn{
        left: 130px;
    }
    .banner_animations .tik_bnn{
        left: 208px;
    }
    .banner_animations .yt_bnn {
        left: 205px;
        top: 57px;
    }
    #CounterSections .counter_item__wrap h4{
        font-size: 24px;
        color: #d97fae; /* soft pink */
    }
    #CounterSections .counter_item__wrap p{
        font-size: 18px;
        color: #d97fae; /* soft pink */
    }
    .section__title{
        font-size: 35px;
        line-height: 1.3;
        color: #d97fae; /* soft pink */
    }
    .best_smm_animations .tw_bnn {
        left: 130px;
    }
    .best_smm_animations .sp_bnn {
        left: 85px;
    }
    .best_smm_animations .fb_bnn {
        right: 310px;
    }
    .best_smm_animations .yt_bnn{
        right: 20px;
    }
    .best_smm_animations .tik_bnn{
        right: -30px;
    }
    .best_smm_animations .ig_bnn {
        top: 230px;
        right: -16px;
    }
    .why__item__wrap .why__item__top h3 {
        font-size: 26px;
        line-height: 1.3;
        color: #d97fae; /* soft pink */
    }
}
@media only screen and (max-width:1200px) {
    #v2-banner .banner_image img{
        bottom: -20px;
        right: -17px;
    }
    .banner_animations .tw_bnn {
        top: 529px;
        left: 19px;
    }
    .banner_animations .ig_bnn {
        top: 295px;
        left: -84px;
    }
    .banner_animations .fb_bnn {
        top: 139px;
        left: -53px;
    }
    .banner_animations .yt_bnn {
        left: 112px;
        top: 131px;
    }
    .banner_animations .tik_bnn {
        top: 314px;
        left: 89px;
    }
    .banner_animations .sp_bnn {
        left: 401px;
    }
    .best_smm_animations .tw_bnn {
        left: 30px;
    }
    .best_smm_animations .sp_bnn {
        left: 17px;
    }  
    .best_smm_animations .yt_bnn {
        right: 65px;
    }
    .best_smm_animations .tik_bnn {
        right: 15px;
    }
    .how_icon_up {
        position: absolute;
        right: -108px;
        top: 29px;
    }
    .accordion__wraper .accordion-item button{
        font-size: 18px;
        color: #d97fae; /* soft pink */
    }
}
@media only screen and (max-width:992px) {
    .banner_image{
        display: none;
    }
    #v2-banner{
        min-height: 600px;
    }
    #v2-banner .v2_banner_content {
        padding: 40px 0px;
    }
    .signinForm{
        padding: 5px 10px;
    }
    .signinForm .signin__access__wrap{
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    #signinSection{
        min-height: 200px;
        height: 200px;
    }
    .navbar-toggler.nav__icons img {
        width: 28px;
    }
}

@media only screen and (max-width:550px) {
    .v2_banner_content{
        text-align: center;
    }
    #v2-banner{
        overflow: hidden;
    }
    #v2-banner .v2_banner_content h1{
        text-align: center;
        font-size: 35px;
        color: #d97fae; /* soft pink */
    }
    #v2-banner .v2_banner_content h4{
        font-size: 18px;
        text-align: center;
        color: #d97fae; /* soft pink */
    }
    #v2-banner .v2_banner_content p{
        text-align: center;
        font-size: 14px;
        color: #d97fae; /* soft pink */
    }
    .banner_image{
        display: block;
    }
    #v2-banner .banner_image img {
        bottom: 145px;
        right: 0;
    }
    .banner_animations .fb_bnn {
        top: -36px;
        left: -84px;
        width: 60px;
    }
    .banner_animations .ig_bnn {
        width: 60px;
        top: 110px;
        left: -60px;
    }
    .banner_animations .tw_bnn {
        top: 290px;
        left: 31px;
        width: 60px;
    }
    .banner_animations .yt_bnn {
        left: 53px;
        top: -44px;
        width: 60px;
    }
    .banner_animations .tik_bnn {
        top: 100px;
        left: 20px;
        width: 60px;
    }
    .banner_animations .sp_bnn {
        left: 78%;
        top: 190px;
        width: 60px;
    }
    .cheapest__content__wrap{
        text-align: center;
    }
    #v2-banner .v2_banner_content{
        padding: 60px 0px 75px 0px;
    }
    #signinSection .signin__container{
        border-radius: 15px;
        padding: 12px;
        background-color: #f8e1f3; /* very subtle pink background */
    }
    .signinForm h3{
        font-size: 28px;
        line-height: 1.3;
        color: #d97fae; /* soft pink */
    }
    .signinForm .signin__access__wrap{
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .signinForm {
        padding: 20px 10px;
    }
    .signinForm .singin__essent{
        flex-direction: column;
        gap: 0;
    }
    #signinSection{
        height: 350px;
    }
    #CounterSections .counter_item__wrap{
        width: 70%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    #CounterSections .counter_item__wrap .count__icon > img{
        width: 70px;
    }
    .section__title{
        text-align: center;
        font-size: 28px;
        line-height: 1.3;
        color: #d97fae; /* soft pink */
    }
    .top__smm p, p, #top__smm{
        text-align: center;
        color: #d97fae; /* soft pink */
    }
    .how_icon_up{
        display: none;
    }
    .cheap_content_wrapers {
        flex-direction: column-reverse;
    }
    .best__btn__wrap{
        flex-direction: column;
    }
    .best_smm_panel > img{
        top: 15px;
        right: -20px;
        position: relative;
    }
    .bestsmm__bg__animations{
        display: none;
    }
    .best_smm_panel > img {
        top: 60px;
    }

    .best_smm_animations .tw_bnn,
    .best_smm_animations .ig_bnn,
    .best_smm_animations .fb_bnn,
    .best_smm_animations .yt_bnn,
    .best_smm_animations .tik_bnn,
    .best_smm_animations .sp_bnn{
        width: 50px;
    }

    .how-its-items h4{
        font-size: 22px;
        line-height: 25px;
        color: #d97fae; /* soft pink */
    }
    .how-its-items{
        margin-bottom: 25px;
    }
    .faq__conetent__wrap{
        text-align: center;
        margin-bottom: 25px;
    }
    .accordion__wraper .accordion-flush .accordion-item .accordion-button{
        font-size: 16px;
        line-height: 1.3;
        color: #d97fae; /* soft pink */
    }
    #whyChooseUs{
        padding: 80px 0px;
        border-radius: 0 80px 0 0;
    }
    .why__item__top .why__icon{
        width: 80px;
    }
    .why__item__wrap .why__item__top h3 {
        font-size: 22px;
        color: #d97fae; /* soft pink */
    }
    .why__item__wrap p{
        text-align: left;
    }
    .sliderBtn.slide-prev,
    .sliderBtn.slide-next{
        position: absolute;
        top: 380px;
    }

    .sliderBtn.slide-next{
        right: 100px;
    }
    .sliderBtn.slide-prev{
        left: 100px;
    }

    #blogSection{
        border-radius: 0px 0px 0px 80px;
    }
}

.user_statistic_wraper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.user_statistic_wraper .statistic__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ff4da6;
    background: linear-gradient(135deg, #ff9ec4 0%, #ff4da6 100%);
    box-shadow: 0 0 10px #ff4da670;
    color: #fff; /* optional: makes text visible on pink gradient */
}


.statistic__item .icon{
    width: 45px;
}

.statistic__item .user__data span{
    font-size: 16px;
    font-weight: normal;
    color: #232323;
}

.statistic__item .user__data h4{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0px;
}

.nightmode .user_statistic_wraper .statistic__item{
    background: #22213b;
    border: 1px solid #56ff83;
    box-shadow: none;
}
.nightmode .statistic__item .user__data h4,
.nightmode .statistic__item .user__data span{
    color: #fff;
}
#service_description{
    display: none;
}
@media only screen and (max-width: 992px) {
    .user_statistic_wraper{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }  
}

@media only screen and (max-width: 550px) {
    .user_statistic_wraper{
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }   
    #blogSection .row .col-lg-4.col-md-4.col-12{
        margin-bottom: 15px;
    }
    .blog__card p{
        text-align: left;
    }
    .foo__link__wraper{
        margin-bottom: 30px;
    }
    .footer__v2 .logo__white{
        width: 170px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .footer__v2 .infos__wrap{
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .foo__link__wraper{
        text-align: center;
    }
    #bestsmmpanel{
        padding-top: 40px;
        padding-bottom: 60px;
        border-radius: 0px 0px 0px 90px;
    }
    .user_statistic_wraper .statistic__item{
        padding: 5px 10px;
    }
    .statistic__item .user__data h4,
    .statistic__item .user__data span {
        font-size: 13px;
    }
    .statistic__item .icon {
        width: 30px;
    }
    .currency_change_btn{
        font-size: 11px;
    }
    .has_currency {
        gap: 2px!important;
    }
    .user_statistic_wraper .statistic__item{
        gap: 5px;
    }
    .btn-sm.btn-primary.join_now_btn {
        font-size: 13px;
        padding: 0px;
        border: none;
        box-shadow: none;
        background: transparent;
        color: #232323;
    }
    .dashboard.nightmode .btn-sm.btn-primary.join_now_btn{
        color: var(--text-white);
    }
    .sidebar_menu_icon{
        padding: 10px;
    }
    .navbar-brand img {
        max-width: 152px;
    }
    #notLogin {
        padding-top: 60px;
    }
    .noAuth .navbar.navbar-expand-lg.navbar-light.bg-light{
    background: #b3005a !important;
      padding: 10px;
    }
    #top__smm{
        overflow: hidden;
    }
    .top__smm__img .img-icon-favs{
        width: 150px;
    }
    #testimonialSection{
        padding: 50px 0px;
    }
    .testimonial__item__wrap{
        padding: 70px 0px;
        padding-top: 20px;
    }
    .gradient-1 {
        left: -188px;
        top: -100px;
        z-index: -1;
    }
    
    .gradient-2 {
        bottom: -150px;
    }
}
/*
NEW CSS CODES
*/

.nightmode .btn_profiles{
    background: var(--primary-gradient);
}


.navbar-toggler.nav__icons{
    border: none;
}

#navMob .nav_content .btn a{
    background: var(--primary-gradient);
}
.dashboard.nightmode #affiliates .item_right,
.dashboard.nightmode #affiliates .item_left{
    color: var(--text-white);
}

.form-control.form-select:focus,
.form-control.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: 98%;
    background-size: 20px 20px;
}

#select2-orderform-category-container .select2-selection__text{
    white-space: nowrap;
}

#select2-orderform-service-container{
    white-space: break-spaces;
}

.select2-container .select2-selection__text{
    white-space: inherit!important;
}

.select2-results__option .badge.badge-secondary{
    background: #232323;
}

.select2-results__option,
.select2-results__options{
    padding: 5px 0px;
    font-size: 15px;
}

.select2-results__option--highlighted{
    background: #f1f2f6;
}

.select2-selection__id.badge,
.select2-selection__id-4.badge{
    background: #232323;
}
.select2-results__option{
    border-bottom: 0.4px solid #ddd;
}


.dashboard.nightmode .select2-results__option.active{
    background: var(--dark-text-primary);
    color: var(--bg-darkmode);
}

.dashboard.nightmode .nav-pills .nav-link.active, 
.dashboard.nightmode .nav-pills .show>.nav-link,
.dashboard.nightmode .btn_ac_benefit{
    background: var(--primary-gradient);
    color: var(--bg-darkmode);
}
.dashboard.nightmode .alert-warning ul li,
.dashboard.nightmode .alert-warning,
.dashboard.nightmode .input-group-btn > button,
.dashboard.nightmode .btn_ser_filter.btn_all,
.dashboard.nightmode #currency_changer .btn.btn-primary.dropdown-toggle,
.dashboard.nightmode .select2-results__option.active > *{
    color: var(--bg-darkmode)!important;
}

.dashboard.nightmode .select2-results__option--highlighted{
    background: #f1f2f63d;
}