* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  background-color: #fff;
}
.close_popup {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 10px 20px;
    font-size: 30px;
    cursor: pointer;
    border: 1px solid #333;
    color: #333;
}
:root {
  --primary_color: #FBB800;
  --secondary_color: #28A9E0;
  --dark: #323232;
}

a {
  text-decoration: none !important;
  color: #fff !important;
}

a:hover {
  color: none !important;
}
.splash_logo {
  background-color: var(--primary_color);
}
.pink {
    color: #ED217C !important;
}
.xx b{color:#28A9E0;}
/* header{
    position: fixed; 
}
header{
    width: 100%;
} */
.sidebar {
  width: 220px;
  background-color: #fff;
  height: 100vh;
  border-right: 1px solid #e0e0e0;
  position: fixed;
  top: 80px;
}

.sidebar.hidden {
  margin-left: -250px;
  /* Or use display: none; but this is smoother */
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
  .sidebar {
    margin-left: -250px;
  }

  .sidebar.show {
    margin-left: 0;
    z-index: 1;
  }

  .main-content {
    margin-left: 0 !important;
  }
}

.sidebar .logo img {
  width: 100%;
}

.topbar {
  z-index: 100;
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
}

.topbar .admin {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.topbar .admin span {
  color: #fff;
}

.sidebar .nav-link {
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

.sidebar .nav-link:hover {
  color: #d89e00 !important;
  background-color: #f9f9f9;
  border-radius: 6px;
}

.sidebar .nav-link.active {
  background-color: var(--primary_color);
  color: white !important;
  border-radius: 6px;
}

/* .sidebar .nav-item .collapse .nav-item{
  padding: 10px 2px;
}
.sidebar .nav-item .collapse .nav-item .nav-link-menu{
  color: #666666;
  font-weight: 400;
  font-size: 14px;
} */

.sidebar .logo img {
  width: 100%;
}

.logo h5 {
  margin: 0;
}

.main-content {
  margin-block-end: 0;
  margin-block-start: 8rem;
  margin-inline-start: 16rem;
  transition: all 50ms ease;
  margin-right: 10px;
}
.main-content {
  transition: all 0.3s ease;
  margin-left: 250px;
}
.sidebar.hidden~.main-content {
  margin-left: 0;
}
@media screen and (max-width:768px) {
  .main-content {
    margin-block-start: 120px;
    margin-inline-start: 0px;
    margin-right: 0;
  }
}
.info-card {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #FBB800;
}

.info-card h4 {
  font-size: 30px;
  font-weight: bold;
}

.info-card .image {
  padding: 12px;
  background-color: rgba(251, 184, 0, 0.1);
  border-radius: 50px;
}

.info-card .icon {
  background-color: rgba(251, 184, 0, 0.1);
  padding: 14px;
  border-radius: 50%;
}


/*--login section--*/
.topbar.login-section {
  padding: 140px;
  position: relative;
  z-index: 1;
}

.topbar.login-section .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.login-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  margin-top: 100px;
  position: relative;
  z-index: 10;
  /* higher than topbar */
  margin-top: -100px;
  /* adjust as needed to overlap */
}

.login-box {
  background-color: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  /* width: 540px; */
}

.login-box h2 {
  text-align: center;
  margin-bottom: 30px;
}

.login-box label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

.login-box input[type="text"],
.login-box input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
}

.remember-me {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 20px;
}

.remember-me input {
  margin-right: 5px;
  accent-color: #f4b000;
}

.login-box button {
  background-color: #f4b000;
  color: white;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.login-box button:hover {
  background-color: #d89e00;
}

#loader {
  position: absolute;
  left: 0;
  right: 0;
  /* background: #fff; */
  /* padding: 40px; */
  /* width: fit-content; */
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  scale: 10;
}

#loader img {
  display: inline-block;
}

.spinner {
  width: 8px;
  height: 8px;
  border: 1px solid var(--primary_color);
  border-top: 1px solid #fff;
  border-radius: 100%;
  position: absolute;
  top: 10;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 4s infinite, pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* By default, hide sidebar on small screens */
/* @media (max-width: 767.98px) {
  #sidebar {
    display: none;
    position: fixed;
    left: 0;
    width: 220px;
    background: #fff;
    z-index: 1;
    border-right: 1px solid #ddd;
  }

  #sidebar.active {
    display: block;
  }
} */




/* breadcrumb */
.breadcrumb {
  margin-bottom: 0 !important;
}

.breadcrumb a {
  text-decoration: none;
  color: #151515 !important;
  font-weight: 700 !important;

}

.breadcrumb a:hover {
  text-decoration: underline !important;
}

.breadcrumb .breadcrumb-item.active {
  color: var(--primary_color) !important;
  font-weight: 700 !important;

}

/* common styles */
input {
  border: 1px solid #EEEEF1 !important;
  border-radius: 8px !important;
  padding: 8px 10px !important;
}

#image_uploads {
  width: 100%;
}

input:focus {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

.dropdown-input {
  cursor: pointer !important;
}

.form-label {
  margin-bottom: 2px !important;
}

.btn.btn-viewall {
  float: right;
  background-color: var(--primary_color);
  color: white !important;
  font-size: 14px;
  border: none;
  padding: 8px 14px;
}

.btn.btn-viewall:hover {
  background-color: #d89e00;
}

.btn.btn-add {
  float: right;
  background-color: var(--primary_color);
  color: white !important;
  font-size: 14px !important;
  border: none;
  /* width: 200px !important; */
  padding: 14px 10px;
}

.btn.btn-add:hover {
  background-color: #d89e00;
}

.btn.btn-add-new {
  float: right;
  background-color: var(--primary_color) !important;
  color: white !important;
  font-size: 14px !important;
  border: none;
  padding: 8px 14px !important;
  font-style: normal !important;
}

.btn.btn-add-new:hover {
  background-color: #d89e00 !important;
}

@media (min-width: 992px) {
  .search-filter-btn {
    margin-top: -67px;
  }
}

.table-btn-add-new {
  float: right;
  border: 1px solid var(--primary_color) !important;
  color: var(--primary_color) !important;
  font-size: 14px !important;
  border: none;
  padding: 8px 14px !important;
  font-style: normal !important;
}

.table-btn-add-new:hover {
  background-color: #d89e00 !important;
  color: #fff !important;
}

.title-text {
  font-size: 30px;
  font-weight: 800;
}

/* table styles */
.table-container {
  overflow-x: auto;
  max-width: 1000px;
}

table.view_table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: auto !important;
}

@media (max-width: 768px) {
  table.view_table {
    width: 1000px;
    border-collapse: collapse;
    border-radius: 14px;
    /* overflow: auto; */
  }
}

table.view_table th {
  background-color: #fff !important;
  text-align: left;
  padding: 10px;
}

table.view_table td {
  padding: 10px;
  vertical-align: middle;
}

table.view_table tr:nth-child(odd) {
  background-color: #f1f1f1;
}

/* .sticky-col {
      position: sticky;
      right: 0;
      background: white;
      z-index: 2;
      width: 140px;
    } */
.table_icons a {
  margin-right: 4px;
  cursor: pointer;
  /* background-color: #2a2a2a; */
  padding: 6px;
}

/* First column width */
.col-slno {
  width: 70px;
  text-align: center;
}

.table-container .dataTables_length label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
}

.table-container .dataTables_length label select {
  margin: 0 4px;
}

@media (max-width: 992px) {
  .table-container .dataTables_length label {
    margin-bottom: 16px;
  }
}

.table-container .dnwld_btn {
  margin-right: 8px;
}


.table-container .dataTables_paginate .pagination {
  float: right;
}

@media (max-width: 992px) {
  .table-container .dataTables_paginate .pagination {
    float: left;
  }

  .table-container .dataTables_paginate {
    margin-top: 14px;
  }
}

.table-container .dataTables_paginate .pagination .page-item.active .page-link {
  background-color: var(--primary_color);
  border: none;
}


/* Modal */
/* .modal {
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-dialog {
  position: relative;
}

.modal-content {
  position: absolute;
  top: 0;
  right: -460px;
} */


.modal .modal-title {
  font-size: 32px;
  color: var(--secondary_color);
  font-weight: bold;
}

.modal .modal-header .btn-close {
  padding: 14px;
  border-radius: 50px;
  background-color: #F4F4F4;
}


.modal .modal-body .input-field {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  gap: 8px;
}

.modal .modal-body .input-field label {
  font-size: 20px;
  font-weight: bold;
}


.modal .modal-body .input-field .word-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.modal .modal-body .input-field .word-row input {
  width: 80%;
  margin-top: 0;
}

@media screen and (max-width:499px) {
  .modal .modal-body .input-field .word-row input {
    width: 60%;
    margin-top: 0;
  }
}


.modal .modal-body .input-field .add-btn {
  padding: 10px 20px !important;
  font-weight: 500;
  color: #fff !important;
  background: linear-gradient(#0DC0F6, #426CEA);
  border: none !important;
  border-radius: 50px !important;
}

.modal .modal-body .tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.modal .modal-body .tag {
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--secondary_color);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  border: 1px solid #dfdfdf;
  font-weight: 600;
}

.modal .modal-body .tag button {
  background: none;
  border: none;
}



.modal .modal-footer .add-btn {
  padding: 10px 20px !important;
  font-weight: 500;
  color: #fff !important;
  background: linear-gradient(#0DC0F6, #426CEA);
  border: none !important;
  border-radius: 50px !important;
}

/*--segementation failure modal--*/
#failureModal h1 {
  font-size: 70px;
  font-weight: bolder;
  color: #28A9E0;
  margin-top: 16px;
  margin-bottom: 0;
}

#failureModal p {
  font-size: 24px;
  font-weight: bolder;
  color: #000;
  margin-top: 16px;
  margin-bottom: 0;
}

#failureModal .modal-footer {
  border: none;
}

#failureModal .add-btn {
  background: none;
  border: 1px solid #CED4DA !important;
  width: 100%;
  color: #343A40 !important;
  border-radius: 8PX !important;
}

/*--segementation success modal--*/
#successModal h2 {
  font-size: 24px;
  font-weight: bolder;
  color: #000;
  margin-top: 16px;
  margin-bottom: 0;
}

#successModal p {
  font-size: 16px;
  font-weight: 500;
  color: #8f8f8f;
  margin-top: 10px;
  margin-bottom: 0;
}


/*  organization add */
.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  /* space for the icon */
  padding: 14px 10px;
  margin-bottom: 10px;
  border: 1px solid #EEEEF1 !important;
  border-radius: 8px !important;
  padding: 14px 10px !important;
}

.custom-select-wrapper::after {
  content: "\f078";
  /* Font Awesome caret-down */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
}

.title h3 {
  font-size: 18px;
  font-weight: 800;
}

.organization-add .form input {
  margin-bottom: 10px;
  font-size: 12px;
}

.organization-add .logo-upload-box {
  flex-direction: column;
  height: 146px;
  border: 1px solid #EEEEF1 !important;
  border-radius: 8px !important;
  padding: 14px 10px !important;
  gap: 8px;
  background-color: #fff;
}

.organization-add .logo-upload-box:hover {
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px !important;

}

.organization-add .logo-upload-box span {
  color: #9C9BAB;
}

.organization-add .logo-upload-box .span-info {
  font-size: 10px;
  color: #666;
}


.dropdown {
  cursor: pointer;
}

.dropdown-menu {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px !important;
  border-radius: 20px !important;

}

.dropdown-menu.show {
  border: 1px solid #ced4da;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.custom-select-wrapper {
  cursor: pointer;
}


.is-invalid {
  border-color: #dc3545 !important;
  background-color: #f8d7da !important;
  background-image: none !important;
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: 0;
}

/* organization-view */
.organization-view .card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid #EEEEF1;
  border-radius: 8px;
}

.organization-view .card-title p {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin-top: 6px;
}







/*employee add form tab content css */
.employee-tab-bar {
  display: flex;
  flex-wrap: nowrap !important;
  /* width: 1000px !important; */
  overflow-x: auto !important;
  gap: 2px;
}

.employee-tab-bar .nav-link {
  background-color: #F1F1F1 !important;
  color: #B0B0B0 !important;
  font-size: 14px !important;
  font-weight: 500;
}

.employee-tab-bar .nav-link.active {
  background-color: var(--primary_color) !important;
  color: #fff !important;
  font-weight: 600;

}




#employeeForm .profile-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#employeeForm .profile-image .edit_profile_btn {
  background-color: #F9F9F9;
  color: var(--primary_color) !important;
  font-size: 14px;
  border: none;
  padding: 8px 14px;
  margin-top: 20px;
}



/* profile detail css */
.profile-image-section {
  background-color: #F4F4F4;
  border: 1px solid #DCDCDC;
  padding: 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-image-section .image img {
  width: 80px;
}

.profile-image-section h4 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.profile-image-section p {
  margin-bottom: 0;
}

.employee_detail .title h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #F1F1F1;
}

ul.employee-info {
  list-style: none;
  padding: 0;
  margin: auto;
  /* max-width: 900px; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  background: #fff;
  /* border-radius: 12px; */
  /* box-shadow: 0 0 10px rgba(0,0,0,0.05); */
  padding: 20px;
}

ul.employee-info li {
  display: flex;
  flex-direction: column;
}

ul.employee-info .label {
  font-size: 12px;
  color: #888;
  margin-bottom: 3px;
}

ul.employee-info .value {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}



.detail-section {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.detail-section h4 {
  font-size: 30px;
  font-weight: 700;
}

.detail-section p {
  /* margin-bottom: 0; */
  margin-bottom: 4px;
  font-size: 14px;
}

.detail-section .btn-add-new i {
  margin-left: 4px;
}


.left-box {
  /* max-width: 50%; */
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.left-box h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.left-box ul {
  list-style: none;
  padding: 0;
}

.left-box li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.left-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4b9dff;
  font-weight: bold;
}

.left-box small {
  display: block;
  color: #555;
  margin-top: 4px;
}

.right-box {
  /* text-align: center; */
}

.login-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.login-box h3 {
  color: #008cff;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 800;
}

.login-box input[type="tel"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 16px;
}

.login-box button {
  width: 100%;
  padding: 12px;
  /* background: linear-gradient(to right, #0094ff, #006bff); */
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}

/* .how-to-use {
  display: inline-block;
  padding: 8px 16px;
  background: #e7f3ff;
  color: #0075ff;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid #28A9E0;
} */

.logo {
  /* display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      justify-content: center; */
  padding: 20px 0;
}

.logo img {
  height: 80px;
}

.logo h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 600;
}
.bottom-imgs {
    position: fixed;
    bottom: 0;
}

/* @media (max-width: 576px) {
  .bottom-imgs {
    position: sticky;
    bottom: 0;
  }
} */

.bottom-imgs .img-1 {
  /* width: 80px; */
/*  //position: absolute;
  left: 0;*/
  width: 100%;
/*  bottom: 0;*/
}

    .bottom-imgs .img-2 {
        /* width: 80px; */
        /*  position: absolute;
  left: 0;*/
        width: 300px;
        position: fixed;
        bottom: 0px;
    }



.login_btn {
  background: linear-gradient(#0DC0F6, #426CEA);
}

.verification-container {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.verification-container .verification .otp-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.verification-container .verification .otp-inputs input {
  width: 80px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 20px;
  /* Remove number input arrows */
  -moz-appearance: textfield;
}

.verification-container .verification .otp-inputs input::-webkit-outer-spin-button,
.otp-inputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}





/* header */
.header .custom-navbar {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  margin: 20px;
  position: relative;
}

.header .custom-navbar .nav-link {
  color: #151515;
}

@media (max-width: 992px) {
  .header .custom-navbar {
    padding: 10px 14px;
  }
}

.header .custom-navbar .navbar-toggler {
  background: linear-gradient(#0DC0F6, #426CEA);
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50px;
}

.header .custom-navbar .navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-image: url(/images/menu_icon.svg);
}

@media (max-width: 992px) {

  /* Initial collapsed state */
  .navbar-collapse {
    max-height: 0;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.4s ease, max-height 0.4s ease;
  }
}

@media (min-width: 992px) {
  .close-btn {
    display: none;
  }

}

/* Expanded state when .show is applied by Bootstrap */
.navbar-collapse.show {
  max-height: 500px;
  /* or any large value */
  transform: translateX(0);
}

.header .custom-navbar .navbar-collapse.show {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 14px;
    padding: 24px;
    width: 100%;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 9;
}

.header .navbar-nav .nav-link {
  color: #151515 !important;
  font-weight: 500;
  margin: 0 10px;
}

.header .navbar-nav .nav-link:hover {
  color: #007bff;
}

.header .btn-signout {
  border-radius: 50px;
  padding: 10px 20px !important;
  font-weight: 500;
  color: #fff !important;
  background: linear-gradient(#0DC0F6, #426CEA);
  border: none !important;
  border-radius: 50px !important;
}

.header .navbar-logo {
  height: 50px;
  margin-right: 8px;
}

@media (max-width: 576px) {
  .header .navbar-logo {
    height: 38px;
    margin-right: 8px;
  }
}






section {
  padding: 20px 0;
}


/* subscription message */

.subscription_message .subscription_card {
  background-color: #F6DBDB;
  color: #CB0000;
  padding: 20px;
  border: 1px solid #CB0000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  flex-wrap: wrap;
}

.subscription_message .subscription_card .left {
  display: flex;
  align-items: center;
}

.subscription_message .subscription_card .left h3 {
  font-size: 18px;
  color: #CB0000;
}

@media (max-width: 576px) {
  .subscription_message .subscription_card .left h3 {
    font-size: 14px;
    color: #CB0000;
  }
}

.subscription_message .subscription_card .right .subscribe_btn {
  border-radius: 50px;
  padding: 6px 20px !important;
  font-weight: 500;
  color: #fff !important;
  background: linear-gradient(#0DC0F6, #426CEA);
  border: none !important;
  border-radius: 50px !important;
  width: 180px;
}

@media (max-width: 576px) {
  .subscription_message .subscription_card .right .subscribe_btn {
    margin-top: 14px;
  }
}





/* subscription_1 message */

.subscription_message_1 .subscription_card {
  background-color: #FFF7DE;
  color: #C39407;
  padding: 20px;
  border: 1px solid #C39407;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  flex-wrap: wrap;
}

.subscription_message_1 .subscription_card .left {
  display: flex;
  align-items: center;
}

.subscription_message_1 .subscription_card .left h3 {
  font-size: 18px;
  color: #C39407;
}

@media (max-width: 576px) {
  .subscription_message_1 .subscription_card .left h3 {
    font-size: 14px;
    color: #C39407;
  }
}

.subscription_message_1 .subscription_card .right .subscribe_btn {
  border-radius: 50px;
  padding: 6px 20px !important;
  font-weight: 500;
  color: #fff !important;
  background: linear-gradient(#0DC0F6, #426CEA);
  border: none !important;
  border-radius: 50px !important;
  width: 180px;
}

@media (max-width: 576px) {
  .subscription_message_1 .subscription_card .right .subscribe_btn {
    margin-top: 14px;
  }
}








/* heading-section */
.heading-section .title-1 {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  line-height: normal;
}

.heading-section .title-2 {
  font-size: 60px;
  font-weight: 900;
  text-align: center;
  color: var(--secondary_color);
  line-height: normal;
}

@media (max-width: 768px) {
  .heading-section .title-1 {
    font-size: 24px;
  }

  .heading-section .title-2 {
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  .heading-section .title-2 {
    font-size: 40px;
  }
}

.section-container {
  background-color: white;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-container {
    border-radius: 20px;
  }
}

/* talking-books-section */

.talking-books-section {
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 40px;
}
.heading-section{
    margin: 0 40px;
}
@media (max-width: 768px) {
    .heading-section {
        margin: 20px;
    }
}
@media (max-width: 768px) {
    .talking-books-section {
    padding: 10px;
    margin: 20px;
  }
}

/* .talking-books-section .container{
  margin: 0;
  margin-left: auto;
  margin-right: auto;
} */
.title-section .heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.title-section .heading .text h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}

@media (max-width: 576px) {
  .title-section .heading .text h2 {
    font-size: 34px;
  }
}

.title-section .heading .text h2 span {
  color: var(--secondary_color);
}

.title-section .heading .text p {
  color: #888888;
  margin-bottom: 0;
}



.talking-books-section .points {
  background-color: var(--secondary_color);
  padding: 14px;
  max-width: 100px;
  border-radius: 10px;
  float: right;
}

.talking-books-section .points h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.talking-books-section .points p {
  margin-bottom: 0;
  color: #fff;
}


@media (max-width: 576px) {
  .talking-books-section .heading .image img {
    width: 50px;
  }

  .talking-books-section .heading .text h2 {
    font-size: 24px;
  }

  .talking-books-section .points {
    float: left;
    margin-top: 14px;
  }
}



.talking-books-section nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px 0;
}

.talking-books-section .nav-tabs {
  border: none;
  padding: 14px 0;
  gap: 14px;
}

.talking-books-section .nav-tabs .nav-link {
  background-color: #fff;
  padding: 10px 14px;
  border-radius: 50px;
  border: none;
  color: #151515;
}

.talking-books-section .nav-tabs .nav-link.active {
  background-color: var(--secondary_color);
  padding: 10px 14px;
  border-radius: 50px;
  border: none;
  color: #fff;
}

.talking-books-section input {
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.talking-books-section .search-bar {
  border: 1px solid #EEEEF1 !important;
  border-radius: 50px !important;
  padding: 8px 10px !important;
}

.talking-books-section .search-bar .input-group-text {
  border: none;
}




.talking-books-section .card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.talking-books-section .card-body {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 19, 26, 1), rgba(26, 19, 26, 0));
  padding: 20px 10px;
}

.talking-books-section .card-body .card-text {
  font-size: 12px;
}

@media (max-width: 420px) {
  .talking-books-section .card-body .card-text {
    font-size: 10px;
  }
}

.talking-books-section .card-body .default_btn {
  margin-top: 10px;
}
.option-box .form-check-label {
    padding-left: 5px;
}
.default_btn {
  border-radius: 50px;
  padding: 14px 20px !important;
  font-weight: 500;
  color: #fff !important;
  background: linear-gradient(#0DC0F6, #426CEA);
  border: none !important;
  border-radius: 12px !important;
}

.view_btn {
  border-radius: 50px;
  padding: 10px 20px !important;
  font-weight: 500;
  color: var(--secondary_color) !important;
  background: none !important;
  border: 1px solid var(--secondary_color) !important;
  border-radius: 50px !important;
  float: right;
  display: flex;
  align-items: center;
}



/* Book-section */

/* @media (max-width: 768px) {
  .book-section {
    padding: 10px;
  }
} */

.book-section .bottom-section {
  padding: 20px 24px;
}

@media (max-width: 576px) {
  .book-section .bottom-section {
    padding: 10px;
  }
}

.book-section .title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.book-section .title-section .close {
  padding: 14px;
  border-radius: 50px;
  background-color: #F4F4F4;
  float: right;
}

.book-section .title-section .close i {
  display: inline;
  width: 40px;
  height: 40px;
}

.book-section .book-title {
  background-color: #FFC22B;
  padding: 10px 14px;
  display: flex;
  align-items: center;
}

.book-section .book-title .name {
  color: #fff;
}

.book-section .bottom-section .result {
  padding: 10px 20px;
  background-color: #EEFAFF;
  border-radius: 15px;
  margin: 14px 0;
  align-items: center;
  border: 1px solid var(--secondary_color);
}

@media (max-width: 576px) {
  .book-section .bottom-section .result {
    border-radius: 20px;
  }
}

.book-section .bottom-section .result .cards_mal {
  display: flex;
  align-items: center;
  gap: 14px;
  border: none;
  background-color: #fff;
  border-radius: 20px;
  padding: 14px 10px;
  max-width: 180px;
  margin: 14px 0;

}

@media (max-width: 768px) {
  .book-section .bottom-section .result .cards_mal {
    max-width: none;
    justify-content: center;
  }
}

.book-section .bottom-section .result .cards_mal .text p {
  font-size: 12px;
  color: #404040;
  font-weight: 700;
  margin: 0;
}

.book-section .bottom-section .result .cards_mal .text h4 {
  font-size: 22px;
  color: #FF0090;
  font-weight: 900;
  margin: 0;
}

.book-section .bottom-section .result .cards_mal .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(#0DC0F6, #426CEA);
}

.book-section .bottom-section .result .main-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.book-section .bottom-section .result .main-text h4 {
  font-size: 28px;
  color: #151515;
  font-weight: 900;
  margin: 0;
}

.book-section .bottom-section .result .main-text .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(#0DC0F6, #426CEA);
}

.book-section .bottom-section .result .cards_hin {
  display: flex;
  align-items: center;
  gap: 14px;
  border: none;
  background-color: #fff;
  border-radius: 20px;
  padding: 14px 10px;
  max-width: 180px;
  float: right;
  margin: 14px 0;
}

@media (max-width: 768px) {
  .book-section .bottom-section .result .cards_hin {
    max-width: none;
    justify-content: center;
    float: none;
  }
}

.book-section .bottom-section .result .cards_hin .text p {
  font-size: 12px;
  color: #404040;
  font-weight: 700;
  margin: 0;
}

.book-section .bottom-section .result .cards_hin .text h4 {
  font-size: 22px;
  color: #E50707;
  font-weight: 900;
  margin: 0;
}

.book-section .bottom-section .result .cards_hin .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(#0DC0F6, #426CEA);
}




.book-section .bottom-section .book-detail {
  border: 1px solid var(--secondary_color);
  border-radius: 20px;
  padding: 20px;
  margin: 14px 0;
}

.book-section .bottom-section .book-detail .title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;

}

.book-section .bottom-section .book-detail .title h5 {
  font-size: 32px;
  font-weight: 900;
  margin: 0;
}

@media (max-width: 576px) {
  .book-section .bottom-section .book-detail .title h5 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
  }
}

.book-section .bottom-section .book-detail .title .converts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.book-section .bottom-section .book-detail .title .converts p {
  margin: 0;
}

.book-section .bottom-section .book-detail .title .converts .eng {
  background-color: #28A9E0;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #7FD5FA;
  color: #fff;
}

.book-section .bottom-section .book-detail .title .converts .mal {
  background-color: #A4CD39;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #C5E66D;
  color: #fff;
}

.book-section .bottom-section .book-detail .title .converts .hin {
  background-color: #ED217C;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #FA86BA;
  color: #fff;
}


/* test-card-section */

.test-card-section {
  margin: 20px;
}

.test-card-section .test-card {
  border: 1px solid #2cace2;
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.test-card-section .test-card img {
  width: 50px;
}

.test-card-section .test-card h6 {
  color: #2cace2;
  font-weight: 600;
  margin-bottom: 2px;
}

.test-card-section .test-card p {
  margin-bottom: 0;
  color: #6c757d;
  font-size: 14px;
}

@media (max-width: 992px) {
  .book-section .bottom-section .test-card-section .test-card .default_btn {
    margin-top: 14px;
  }
}



.test-section .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background-color: #fff;
  /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
  border-radius: 12px;
}

.test-section .title h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.test-section .title p {
  margin: 0;
  font-weight: 700;
}






option-box {
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s;
    cursor: pointer;
}

.option-box:hover {
  border-color: #0d6efd;
}

.form-check-input:checked~.option-label {
  color: #0d6efd;
}

.option-label {
  width: 100%;
  cursor: pointer;
  margin-bottom: 0;
}

.form-check-input {
  margin-left: auto;
}




/* subscription-page-section */

.subscription-section {
  padding: 20px;
}

@media (max-width:768px) {
  .subscription-section {
    padding: 10px;
  }
}

.subscription-section .title {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.subscription-section .title p {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary_color);
  text-align: center;
  margin: 0;
}

.subscription-section .title h4 {
  font-size: 30px;
  font-weight: 900;
  color: #151515;
  text-align: center;
  margin: 0;
}


.subscription-section .plan-general-awareness-section {
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 24px 0;
  margin-bottom: 20px;

}

.subscription-section .plan-general-awareness-section .top {
  background-color: #6883FE;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscription-section .plan-general-awareness-section .top h4 {
  color: #fff;
  font-weight: 700;
}

.subscription-section .plan-general-awareness-section .bottom {
  padding: 20px;
}


/* subscription-cards design */

.subscription-section .subscription-card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0;
}

.subscription-section .subscription-card .top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}

.subscription-section .subscription-card .top h6 {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

/* subscription-cards basic plan */
.subscription-section .subscription-card.basic .top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  background-color: rgba(40, 169, 224, 0.1);
}

.subscription-section .subscription-card.basic .top h6 {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary_color);
}

/* subscription-cards pro plan */
.subscription-section .subscription-card.pro .top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  background-color: rgba(253, 75, 15, 0.1);
  overflow: hidden;
  position: relative;
}

.subscription-section .subscription-card.pro .top h6 {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #FD4B0F;
}

.subscription-section .subscription-card.pro .top span {
  background: linear-gradient(to right, rgba(248, 72, 72, 1), rgba(179, 7, 7, 1));
  font-size: 8px;
  padding: 4px 20px;
  color: #fff;
  position: absolute;
  right: -20;
  top: 10;
  transform: rotate(40deg);
  /* Rotates the element 30 degrees counterclockwise */
}


/* subscription-cards advanced plan */
.subscription-section .subscription-card.advanced .top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  background-color: rgba(19, 204, 40, 0.1);
}

.subscription-section .subscription-card.advanced .top h6 {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #13CC28;
}


.subscription-section .subscription-card .bottom {
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subscription-section .subscription-card .bottom .plan {
  padding: 10px 0;
}

.subscription-section .subscription-card .bottom .plan h2 {
  font-size: 34px;
  font-weight: 900;
}

.subscription-section .subscription-card .bottom .plan p {
  color: #AAAAAA;
}

.subscription-section .subscription-card .bottom .info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.subscription-section .subscription-card .bottom .info h6 {
  margin: 0;
}

.subscription-section .subscription-card .bottom .default_btn {
  width: 100%;
  text-align: center;
  border-radius: 10px !important;
}




/* subscription-section books section */

.subscription-section .plan-books-section {
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 24px 0;
  margin-bottom: 20px;

}

.subscription-section .plan-books-section .top {
  background-color: #FFC22B;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscription-section .plan-books-section .top h4 {
  color: #fff;
  font-weight: 700;
}

.subscription-section .plan-books-section .bottom {
  padding: 20px;
}





/* subscription-section word-games-section section */

.subscription-section .plan-word-games-section {
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 24px 0;
  margin-bottom: 20px;

}

.subscription-section .plan-word-games-section .top {
  background-color: #FF8341;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscription-section .plan-word-games-section .top h4 {
  color: #fff;
  font-weight: 700;
}

.subscription-section .plan-word-games-section .bottom {
  padding: 20px;
}



/* subscription-section video-classes-section section */

.subscription-section .plan-video-classes-section {
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 24px 0;
  margin-bottom: 20px;

}

.subscription-section .plan-video-classes-section .top {
  background-color: #50CEFE;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscription-section .plan-video-classes-section .top h4 {
  color: #fff;
  font-weight: 700;
}

.subscription-section .plan-video-classes-section .bottom {
  padding: 20px;
}






/* Footer section starts */

.footer-section {
  padding: 24px 0 0 0;
  background-color: #E2F6FF;
}

.footer-section ul li {
  list-style: none;
}

.footer-section .footer-top {
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #DFDAD1;
  padding: 30px 0;
}

@media (max-width:768px) {
  .footer-section .footer-top {
    justify-content: center;
  }
}

.footer-section .footer-top .footer-logo img {
  height: 60px;
}

.footer-section .footer-top .social-icons {
  margin-top: 20px;
}

.footer-section .footer-top .social-icons ul {
  display: flex;
  align-items: center;
  padding: 0;
}

.footer-section .footer-top .social-icons ul .social-icon {
  padding: 14px;
  background: linear-gradient(#0DC0F6, #426CEA);
  border-radius: 50px;
  width: 40px;
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
}



.footer-section .footer-menu-list {
  padding: 20px 0;
}

.footer-section .footer-menu-list ul h4 {
  font-size: 22px;
  font-weight: 800;
}

.footer-section .footer-menu-list ul li {
  padding: 4px 0;
}

.footer-section .footer-menu-list ul li a {
  color: #151515 !important;
  font-weight: 500;
}

.footer-section .contact_info {
  padding: 20px 0;
}

.footer-section .contact_info ul h4 {
  font-size: 22px;
  font-weight: 800;
}

.footer-section .contact_info ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  color: #4F4F4F;
}

.footer-section .contact_info ul li a {
  color: #4F4F4F !important;
}

.footer-bottom {
  padding: 10px 0;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p a {
  color: var(--secondary_color) !important;
}

/* Footer section ends */






/* general-awareness-section section starts */
.general-awareness-section {
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 40px;
}

@media (max-width: 768px) {
  .general-awareness-section {
    padding: 10px;
    margin: 20px;
  }
}

.general-awareness-section .points {
  background-color: var(--secondary_color);
  padding: 14px;
  max-width: 100px;
  border-radius: 10px;
  float: right;
}

.general-awareness-section .points h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.general-awareness-section .points p {
  margin-bottom: 0;
  color: #fff;
}


@media (max-width: 576px) {
  .general-awareness-section .heading .image img {
    width: 50px;
  }

  .general-awareness-section .heading .text h2 {
    font-size: 24px;
  }

  .general-awareness-section .points {
    float: left;
    margin-top: 14px;
  }
}



.general-awareness-section .card {
  padding: 20px;
  position: relative;
}

.general-awareness-section .card.physics {
  background: linear-gradient(rgba(185, 3, 209, 1), rgba(145, 2, 164, 1));
}

.general-awareness-section .card.physics .bg-image {
  position: absolute;
  right: 0;
  bottom: 0;
}

.general-awareness-section .card.chemistry {
  background: linear-gradient(rgba(51, 216, 29, 1), rgba(2, 141, 2, 1));
}

.general-awareness-section .card.chemistry .bg-image {
  position: absolute;
  right: 0;
  bottom: 0;
}

.general-awareness-section .card.maths {
  background: linear-gradient(rgba(235, 182, 45, 1), rgba(201, 152, 18, 1));
}

.general-awareness-section .card.maths .bg-image {
  position: absolute;
  right: 0;
  bottom: 0;
}

.general-awareness-section .card .card-title {
  padding: 10px 0;
  color: #fff;
}

.general-awareness-section .card .default_btn {
  width: fit-content;
}

/* general-awareness-section section ends */





/* word-games-section section starts */
.word-games-section {
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 40px;
}

@media (max-width: 768px) {
  .word-games-section {
    padding: 10px;
    margin: 20px;
  }
}

.word-games-section .points {
  background-color: var(--secondary_color);
  padding: 14px;
  max-width: 100px;
  border-radius: 10px;
  float: right;
}

.word-games-section .points h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.word-games-section .points p {
  margin-bottom: 0;
  color: #fff;
}


@media (max-width: 576px) {
  .word-games-section .heading .image img {
    width: 50px;
  }

  .word-games-section .heading .text h2 {
    font-size: 24px;
  }

  .word-games-section .points {
    float: left;
    margin-top: 14px;
  }
}

.word-games-section .card {
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  border: none;
}

.word-games-section .card .card-top img {
  width: 100%;
}

.word-games-section .card .card-bottom {
  padding: 14px 14px 30px 14px;
}

    .word-games-section .card .card-bottom h4 {
        font-size: 22px;
        font-weight: 700;
        margin: 0;
        margin-bottom: 26px;
    }

.word-games-section .card .card-bottom p {
  margin-bottom: 20px;
}

.word-games-section .card .card-bottom .default_btn {
  margin: 10px 0 !important;
}

.word-games-section .card.word-game-one .card-bottom {
  background-color: #212E7A;
}

    .word-games-section .card.word-game-two .card-bottom {
        background-color: #E943DE;
    }

.word-games-section .card.word-game-three .card-bottom {
  background-color: #5B9F21;
}






/* word-gamvideo-classes-section starts */
.video-classes-section {
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 40px;
}

@media (max-width: 768px) {
  .video-classes-section {
    padding: 10px;
    margin: 20px;
  }
}

.video-classes-section .points {
  background-color: var(--secondary_color);
  padding: 14px;
  max-width: 100px;
  border-radius: 10px;
  float: right;
}

.video-classes-section .points h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.video-classes-section .points p {
  margin-bottom: 0;
  color: #fff;
}


@media (max-width: 576px) {
  .video-classes-section .heading .image img {
    width: 50px;
  }

  .video-classes-section .heading .text h2 {
    font-size: 24px;
  }

  .video-classes-section .points {
    float: left;
    margin-top: 14px;
  }
}

.video-classes-section .card {
  position: relative;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

.video-classes-section .card .card-bottom {
  padding: 14px 14px 30px 14px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.video-classes-section .card.word-game-one .card-bottom {
  background: linear-gradient(rgba(36, 186, 96, 0.1), rgba(36, 186, 96, 1));
}

.video-classes-section .card.word-game-two .card-bottom {
  background: linear-gradient(rgba(186, 111, 36, 0.1), rgba(186, 111, 36, 1));
}

.video-classes-section .card.word-game-three .card-bottom {
  background: linear-gradient(rgba(186, 36, 134, 0.1), rgba(186, 36, 134, 1));
}

.video-classes-section .card .card-bottom h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.video-classes-section .card .card-bottom p {
  margin-bottom: 20px;
}

.video-classes-section .card .card-bottom .default_btn {
  margin: 10px 0 !important;
}








/* general_awareness_test-section 22-07-2025 */


.general_awareness_test-section {
  background: linear-gradient(to bottom, rgba(15, 204, 15, 0.1), rgba(22, 92, 122, 0.1));
  box-shadow: none;
  border: 1px solid var(--secondary_color);
}

.general_awareness_test-section .title h4 {
  margin: 0;
  font-size: 48px;
  font-weight: 800;
}

@media screen and (max-width: 576px) {
  .general_awareness_test-section .title h4 {
    font-size: 32px;
  }
}

.general_awareness_test-section .title p {
  margin: 0;
  font-weight: 700;
}

.general_awareness_test-section .result {
  background-color: #fff !important;
  border-radius: 16px !important;
}

.general_awareness_test-section .question-section {
  border: 1px solid #DCDCDC;
  border-radius: 20px;
  padding: 20px;
  margin: 14px 0;
  background-color: #fff;
}

@media screen and (max-width: 576px) {
  .general_awareness_test-section .question-section {
    padding: 10px;
  }
}

.general_awareness_test-section .question-section .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 576px) {
  .general_awareness_test-section .question-section .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.general_awareness_test-section .question-section .title p {
  color: #888888;
}

.general_awareness_test-section .question-section .title .converts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.general_awareness_test-section .question-section .title .converts a.eng {
  color: #28A9E0 !important;
  font-weight: 700;
}

.general_awareness_test-section .question-section .title .converts a.mal {
  color: #A4CD39 !important;
  font-weight: 700;
}

.general_awareness_test-section .question-section .title .converts a.hin {
  color: #ED217C !important;
  font-weight: 700;
}

.general_awareness_test-section .question .option-box {
    padding: 14px 8px;
    border: 1px solid #b4b4b4;
    width: 100%;
    border-radius: 14px;
}

.option-box:hover {
    background-color: #f9f9f9;
}

/* Highlight selected option */
.option-box:has(input:checked) {
    background-color: #0FCC0F;
    color: #332e2e;
}

.general_awareness_test-section .question-section .question .option-box .form-check {
  display: flex;
  align-items: center;
  width: 100%;
/*  justify-content: space-between;*/
}

.form-check-input[type=radio] {
  border-radius: 50%;
  height: 22px;
  border-radius: 40px !important;
  border: none !important;
}

.form-check-input:checked[type=radio] {
    /* --bs-form-check-bg-image: url(/images/radio-enabled.svg) !important; */
    border: 1px solid #f8f9fa !important;
}

.form-check-input[type=radio] {
    /* --bs-form-check-bg-image: url(/images/radio-enabled.svg) !important; */
    border: 1px solid #f8f9fa !important;
}

.form-check-input:checked {
  background-color: transparent !important;
  border-color: none !important;
}







/* how-to-use-section 23-07-2025 */

.how-to-use {
  background-color: var(--secondary_color);
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  margin: 40px;
  color: #FFF;
  position: relative;
}

@media screen and (max-width: 576px) {
  .how-to-use {
    padding: 20px;
    margin: 20px;
  }
}

.how-to-use::after {
  content: "";
  position: absolute;
  top: -40;
  left: -40;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
  border-radius: 50%;
}

.how-to-use .text h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}

.how-to-use .text p {
  color: #fff;
  margin-bottom: 0;
}

@media screen and (max-width: 576px) {
  .how-to-use .text h2 {
    font-size: 28px;
  }

  .how-to-use .text p {
    font-size: 14px;
    margin-bottom: 24px;
  }

}

.how-to-use .video {
  border-radius: 20px;
  overflow: hidden;
}

.how-to-use .video iframe {
  width: 100%;
  height: 100%;
}





.discover_books {
  background: linear-gradient(to right, rgba(255, 239, 186, 1), rgba(255, 255, 255, 1));
  box-shadow: none;
  border-radius: 20px;
  padding: 20px;
  margin: 40px;
}

@media screen and (max-width: 576px) {
  .discover_books {
    margin: 20px;
  }
}

.discover_books .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.discover_books .text h2 {
  color: #151515;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 4px;
}



.discover_books .text p {
  color: #888888;
  margin-bottom: 0 !important;
}

.discover_books .image {
  float: right;
}

@media screen and (max-width: 576px) {
  .discover_books .image {
    float: none;
    margin-bottom: 10px;
  }

}

/* why-choose-section starts */
.why-choose-section {
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 40px;
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 10px;
    margin: 20px;
  }
}

.why-choose-section .title {
  font-size: 30px;
  font-weight: 800;
  color: #151515;
  margin-bottom: 20px;
}

.why-choose-section ul {
  margin: 0;
  padding: 0;
}

.why-choose-section ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
}

.why-choose-section ul li .text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

@media screen and (max-width: 576px) {
  .why-choose-section ul li .text h3 {
    font-size: 16px;
  }
}

.why-choose-section ul li .text p {
  font-size: 12px;
  color: #888888;
}

/* why-choose-section ends */



/* profile-dropdown starts */
.profile-dropdown {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

@media screen and (max-width: 576px) {
  .profile-dropdown {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 991px) {
  .profile-dropdown {
    position: absolute;
    top: 20px;
    right: 30px;
    padding-right: 20px;
  }
}

.profile-dropdown .nav-link {
  color: #151515 !important;
  font-weight: 800 !important;
}

.profile-dropdown .dropdown-menu {
  overflow: hidden;
  border-radius: 10px;
  padding: 10px;
  cursor: progress;
}

.profile-dropdown .dropdown-menu li a {
  color: #151515 !important;
  border-radius: 20px;
}

.profile-dropdown .dropdown-menu li a.btn-signout {
  color: #fff !important;
  margin-top: 14px;
  width: 100%;
}

/* profile-dropdown starts */


/* talking-books starts card-top-section css */
.talking-books-section .card .card-top {
  position: absolute;
  top: 20px;
  right: 20px;
}

.talking-books-section .card .card-top div {
  border-radius: 20px;
  padding: 8px 14px;
  color: #fff;
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 4px;
}

.talking-books-section .card .card-top div.free {
  background-color: rgba(40, 169, 224, 0.1);
  border: 1px solid #28A9E0;
}

.talking-books-section .card .card-top div.premium {
  background-color: #F89523;
}


/* game section starts card-top-section css */
.game-section {
  padding: 30px;
  margin: 40px;
}

@media screen and (max-width:576px) {
  .game-section {
    padding: 16px;
    margin: 20px;
  }
}

.game-section .container-fluid {
  padding: 0px;
}

.game-section .title-section {
  /*padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border-radius: 20px;*/
}

@media screen and (max-width:576px) {
  .game-section .title-section {
    padding: 10px;
  }
}

.game-section .nav-tabs .nav-link.active {
  background-color: var(--secondary_color);
  padding: 10px 14px;
  border-radius: 15px;
  border: none;
  color: #fff;
}

.game-section .nav-tabs .nav-link {
  background-color: #fff;
  padding: 10px 14px;
  border-radius: 50px;
  border: none;
  color: #151515;
}

.game-section .title-section .text h2 {
  font-size: 24px;
  margin-bottom: 0;
}

@media screen and (max-width:425px) {
  .game-section .title-section .text h2 {
    font-size: 20px;
  }
}

.game-section .title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width:576px) {
  .game-section .title-section {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
  }
}

.game-section .title-section .right .subscribe_btn {
  border-radius: 50px;
  padding: 10px 20px !important;
  font-weight: 500;
  color: #fff !important;
  background: linear-gradient(#0DC0F6, #426CEA);
  border: none !important;
  border-radius: 50px !important;
  margin-top: 0 !important;
}

@media (max-width: 576px) {
  .game-section .title-section .right .subscribe_btn {
    margin-top: 14px !important;
    padding: 6px 20px;
  }
}

.game-section .card {
  border: none;
}


.game-section .nav-tabs {
  border: none;
  margin-top: 20px;
}

.game-section .tab-content {
  margin-top: 20px;
}

.game-section .card {
  /*background: rgba(40, 169, 224, 0.1);
  padding: 24px 20px;*/
  border-radius: 20px;
}

.game-section .card .chapter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-section .card .chapter .title h2 {
  font-size: 20px;
  color: #28A9E0;
}



/* select game section starts */
.game-list {
  padding: 20px;
  margin: 40px;
}

@media screen and (max-width:576px) {
  .game-list {
    padding: 16px;
    margin: 20px;
  }
}

.game-list .row {
  gap: 20px;
}

.game-list .col-12 {
  padding: 0;
}

.game-list p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
}

@media screen and (max-width:576px) {
  .game-list p {
    font-size: 18px;
  }
}

.game-list .heading {
  margin-top: 10px;
}

.game-list h2 {
  font-size: 36px;
  color: #fff;
  font-weight: bolder;
  margin-bottom: 0;
}

@media screen and (max-width:576px) {
  .game-list h2 {
    font-size: 24px;
  }
}

.game-list .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.game-list .segmentation {
    background: linear-gradient(to right, #42D23E, #1BB316);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    width: 100%;
/*    justify-content: space-between;*/
/*    flex-direction: column;*/
    border-bottom: 4px solid #7DE079;
    align-items: center;
    gap: 14px;
}

@media screen and (max-width:576px) {
  .game-list .segmentation {
    padding: 20px;
  }
}

.game-list .visual-memory {
    background: linear-gradient(to right, #D3399D, #A10A6C);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    width: 100%;
    /*  justify-content: space-between;
  flex-direction: column;*/
    border-bottom: 4px solid #F18CCE;
    align-items: center;
    gap: 14px;
}

@media screen and (max-width:576px) {
  .game-list .visual-memory {
    border-radius: 20px;
  }
}


.game-list .reading {
    background: linear-gradient(to right, #FF8341, #E64C3C);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    width: 100%;
    /*  justify-content: space-between;
  flex-direction: column;*/
    border-bottom: 4px solid #FA9585;
    align-items: center;
    gap: 14px;
}

@media screen and (max-width:576px) {
  .game-list .reading {
    border-radius: 20px;
  }
}

/* segmentation play section starts */

.segmentation-top .top-section {
  display: flex;
  align-items: center;
}

.segmentation-top .top-section .container-fluid {
  background: none !important;
}

.segmentation-top .top-section .btn {
  display: flex;
  align-items: center;
}

.segmentation-top .top-section .btn i {
  padding: 20px;
  border: 1px solid #151515;
  border-radius: 10px;
}

.segmentation-top .top-section .game-title {
  background: linear-gradient(to right, #42D23E, #1BB316);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 6px 30px;
  border-radius: 10px;
  gap: 0px;
  border-bottom: 4px solid #7DE079;
}

@media screen and (max-width:992px) {
  .segmentation-top .top-section .game-title {
    padding: 20px;
  }
}

.segmentation-top .top-section .game-title p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.segmentation-top .top-section .game-title h2 {
  color: #fff;
  font-weight: bolder;
  font-size: 30px;
}

@media screen and (max-width:992px) {
  .segmentation-top .top-section .game-title h2 {
    color: #fff;
    font-weight: bolder;
    font-size: 26px;
  }
}

.segmentation-top .top-section .chapter-title {
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  float: right;
}

@media screen and (max-width:768px) {
  .segmentation-top .top-section .chapter-title {
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    float: none;
    margin-top: 10px;
    width: fit-content;
  }
}

.segmentation-top .top-section .chapter-title span {
  display: flex;
  align-items: center;
  color: #888888;
  font-weight: 400;
  gap: 4px;
}

.segmentation-top .top-section .chapter-title p {
  margin-bottom: 0;
  color: #000;
  font-weight: bold;
}

.segmentation-bottom {
  padding: 20px 24px;
  margin: 40px;
}

@media screen and (max-width:576px) {
  .segmentation-bottom {
    padding: 16px;
    margin: 20px;
  }
}

.segmentation-bottom .container-fluid {
  padding: 0;
}

.segmentation-bottom .game-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width:576px) {
  .segmentation-bottom .game-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
  }
}

.segmentation-bottom .game-top .left .new-word {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #28A9E0;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #bef1ff;
}

.segmentation-bottom .game-top .left .new-word h2 {
  font-size: 20px;
  font-weight: bold;
  color: #28A9E0;
  margin-bottom: 0;
}

.segmentation-bottom .game-top .left .new-word i {
  background: linear-gradient(#0DC0F6, #426CEA);
  padding: 12px;
  border-radius: 50px;
}

.segmentation-bottom .game-top .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.segmentation-bottom .game-top .right .replay,
.show-word {
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.segmentation-bottom .game-top .right .replay h2 {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 0;
}

.segmentation-bottom .game-top .right .show-word h2 {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 0;
}

.segmentation-bottom .label p {
  text-align: center;
  font-size: 20px;
  color: #404040;
  margin-top: 14px;
}

@media screen and (max-width:576px) {
  .segmentation-bottom .label p {
    font-size: 18px;
  }
}

.segmentation-bottom .row.result {
  padding: 10px 20px;
  background-color: #EEFAFF;
  border-radius: 80px;
  margin: 14px 0;
  align-items: center;
  border: 1px solid var(--secondary_color);
}

.segmentation-bottom .row.result .game-word {
  display: block;
  align-items: center;
  justify-self: center;
  flex-direction: column;
  gap: 14px;
}

.segmentation-bottom .row.result .game-word h2 {
  color: #28A9E0;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 28px;
}

@media screen and (max-width:576px) {
  .segmentation-bottom .row.result .game-word h2 {
    font-size: 24px;
  }
}

.segmentation-bottom .row.result .game-word .btn {
    color: #49c108 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 19px;
    border: 1px solid #49c108;
    background: #e4ffc9;
    border-radius: 10px;
}

.segmentation-bottom .letters {
  margin: 14px 0;
  border-radius: 24px;
}

.segmentation-bottom .letters .first-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  margin: 10px 0;
}

.segmentation-bottom .letters ul li {
  list-style: none;
  margin-top: 50px;
}

@media screen and (max-width:576px) {
  .segmentation-bottom .letters ul li {
    margin-top: 10px;
  }
}

.segmentation-bottom .letters .first-block li a {
  list-style: none;
  background: #704FE6;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #CED4DA;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width:576px) {
  .segmentation-bottom .letters .first-block li {
    padding: 16px;
    font-size: 16px;
  }
}

.segmentation-bottom .letters .second-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 10px 0;
}

.segmentation-bottom .letters .second-block li a {
  list-style: none;
  background: #A4CD39;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #CED4DA;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width:576px) {
  .segmentation-bottom .letters .second-block li {
    padding: 16px;
    font-size: 16px;
  }
}

.segmentation-bottom .letters .third-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 10px 0;
}

.segmentation-bottom .letters .third-block li a {
  list-style: none;
  background: #BA1FA9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #CED4DA;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width:576px) {
  .segmentation-bottom .letters .third-block li {
    padding: 16px;
    font-size: 16px;
  }
}

.segmentation-bottom .letters .fourth-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 10px 0;
}

.segmentation-bottom .letters .fourth-block li a {
  list-style: none;
  background: #C39407;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #CED4DA;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width:576px) {
  .segmentation-bottom .letters .fourth-block li {
    padding: 16px;
    font-size: 16px;
  }
}

.segmentation-bottom .letters {
  padding: 20px;
  border: 1px solid #28A9E0;
}




/* visual memory play section starts */

.visual-memory-top .top-section {
  display: flex;
  align-items: center;
}

.visual-memory-top .top-section .container-fluid {
  background: none !important;
}

.visual-memory-top .top-section .btn {
  display: flex;
  align-items: center;
}

.visual-memory-top .top-section .btn i {
  padding: 20px;
  border: 1px solid #151515;
  border-radius: 10px;
}

.visual-memory-top .top-section .game-title {
  background: linear-gradient(to right, #D3399D, #A10A6C);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 6px 30px;
  border-radius: 10px;
  gap: 0px;
  border-bottom: 4px solid #F18CCE;
}

@media screen and (max-width:992px) {
  .visual-memory-top .top-section .game-title {
    padding: 20px;
  }
}

.visual-memory-top .top-section .game-title p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.visual-memory-top .top-section .game-title h2 {
  color: #fff;
  font-weight: bolder;
  font-size: 30px;
}

@media screen and (max-width:992px) {
  .visual-memory-top .top-section .game-title h2 {
    color: #fff;
    font-weight: bolder;
    font-size: 26px;
  }
}

.visual-memory-top .top-section .chapter-title {
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  float: right;
}

@media screen and (max-width:768px) {
  .visual-memory-top .top-section .chapter-title {
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    float: none;
    margin-top: 10px;
    width: fit-content;
  }
}

.visual-memory-top .top-section .chapter-title span {
  display: flex;
  align-items: center;
  color: #888888;
  font-weight: 400;
  gap: 4px;
}

.visual-memory-top .top-section .chapter-title p {
  margin-bottom: 0;
  color: #000;
  font-weight: bold;
}

.visual-memory-bottom {
  padding: 20px 24px;
  margin: 20px;
}

@media screen and (max-width:576px) {
  .visual-memory-bottom {
    padding: 16px;
    margin: 20px;
  }
}

.visual-memory-bottom .container-fluid {
  padding: 0;
}

.visual-memory-bottom .game-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width:576px) {
    .visual-memory-bottom .game-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
}

.visual-memory-bottom .game-top .left .new-word {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #28A9E0;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #bef1ff;
}

.visual-memory-bottom .game-top .left .new-word h2 {
  font-size: 20px;
  font-weight: bold;
  color: #28A9E0;
  margin-bottom: 0;
}

.visual-memory-bottom .game-top .left .new-word i {
  background: linear-gradient(#0DC0F6, #426CEA);
  padding: 12px;
  border-radius: 50px;
}

.visual-memory-bottom .game-top .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.visual-memory-bottom .game-top .right .replay,
.show-word {
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.visual-memory-bottom .game-top .right .replay h2 {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 0;
}

.visual-memory-bottom .game-top .right .show-word h2 {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 0;
}

.visual-memory-bottom .label p {
  text-align: center;
  font-size: 20px;
  color: #404040;
  margin-top: 14px;
  margin-bottom: 0;
}

@media screen and (max-width:576px) {
  .visual-memory-bottom .label p {
    font-size: 18px;
  }
}

.visual-memory-bottom .words .item {
  background-color: #28A9E0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  border: 3px solid #74D4FD;
  margin-top: 24px;
}

/*.visual-memory-bottom .words .col-lg-3:nth-child(4) .item {
  background-color: #25CB3E;
  border-color: #7EE08D;
}*/


.visual-memory-bottom .words .item h2 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}


/* reading play section starts */

.reading-top .top-section {
  display: flex;
  align-items: center;
}

.reading-top .top-section .container-fluid {
  background: none !important;
}

.reading-top .top-section .btn {
  display: flex;
  align-items: center;
}

.reading-top .top-section .btn i {
  padding: 20px;
  border: 1px solid #151515;
  border-radius: 10px;
}

.reading-top .top-section .game-title {
  background: linear-gradient(to right, #FF8341, #E64C3C);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 30px;
  border-radius: 10px;
  gap: 10px;
  border-bottom: 4px solid #FA9585;
}


@media screen and (max-width:992px) {
  .reading-top .top-section .game-title {
    padding: 20px;
  }
}

.reading-top .top-section .game-title p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.reading-top .top-section .game-title h2 {
  color: #fff;
  font-weight: bolder;
  font-size: 30px;
}

@media screen and (max-width:992px) {
  .reading-top .top-section .game-title h2 {
    color: #fff;
    font-weight: bolder;
    font-size: 26px;
  }
}

.reading-top .top-section .chapter-title {
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  float: right;
}

@media screen and (max-width:768px) {
  .reading-top .top-section .chapter-title {
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    float: none;
    margin-top: 10px;
    width: fit-content;
  }
}

.reading-top .top-section .chapter-title span {
  display: flex;
  align-items: center;
  color: #888888;
  font-weight: 400;
  gap: 4px;
}

.reading-top .top-section .chapter-title p {
  margin-bottom: 0;
  color: #000;
  font-weight: bold;
}

.reading-bottom {
  padding: 20px 24px;
  margin: 40px;
}

@media screen and (max-width:576px) {
  .reading-bottom {
    padding: 16px;
    margin: 20px;
  }
}

.reading-bottom .container-fluid {
  padding: 0;
}

.reading-bottom .game-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width:576px) {
  .reading-bottom .game-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
  }
}

.reading-bottom .game-top .left .new-word {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #28A9E0;
  padding: 10px 20px;
  border-radius: 50px;
}

.reading-bottom .game-top .left .new-word h2 {
  font-size: 20px;
  font-weight: bold;
  color: #28A9E0;
  margin-bottom: 0;
}

.reading-bottom .game-top .left .new-word i {
  background: linear-gradient(#0DC0F6, #426CEA);
  padding: 12px;
  border-radius: 50px;
}

.reading-bottom .game-top .right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reading-bottom .game-top .right .word h2 {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(180deg, #0DC0F6, #426CEA);
  /* gradient colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 0;
}

@media screen and (max-width:576px) {
  .reading-bottom .game-top .right .word h2 {
    font-size: 20px;
  }
}

.reading-bottom .segment-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.reading-bottom .segment-btn .btn {
  color: #fff !important;
  background: linear-gradient(180deg, #0DC0F6, #426CEA);
  font-size: 16px;
  font-weight: bold;
  padding: 6px 30px;
  border: 1px solid #28A9E0;
  border-radius: 50px;
}

.reading-bottom .row.letters ul {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.reading-bottom .row.letters ul li {
  list-style: none;
  padding: 6px 20px;
  border-radius: 8px;
  max-width: 100px;
  font-size: 28px;
  font-weight: bold;
}

@media screen and (max-width:576px) {
  .reading-bottom .row.letters ul li {
    font-size: 24px;
  }

}

.reading-bottom .row.letters ul li:nth-child(1) {
  background-color: #28A9E0;
}

.reading-bottom .row.letters ul li:nth-child(2) {
  background-color: #704FE6;
}

.reading-bottom .row.letters ul li:nth-child(3) {
  background-color: #FFC02E;
}

.reading-bottom .row.letters ul li:nth-child(4) {
  background-color: #0B9432;
}

.reading-bottom .row.letters ul li:nth-child(5) {
  background-color: #F84848;
}

/* game detail starts */

.game-detail {
  padding: 30px;
  margin: 40px;
}

@media screen and (max-width:576px) {
  .game-detail {
    padding: 16px;
    margin: 20px;
  }
}

.game-detail .title-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 23px;
  background-color: #EEFAFF;
  border-radius: 20px;
  margin: 14px 0;
  border: 1px solid var(--secondary_color);
}

.game-detail .title-section h2 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bolder;
  color: #28A9E0;
}

.game-detail .word-list {
  margin-top: 30px;
}

.game-detail .word-list ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 0;
}

.game-detail .word-list li {
  list-style: none;
}

.game-detail .word-list .tag {
  background: #F4F4F4;
  padding: 10px;
  border-radius: 50px;
  color: #000;
  font-size: 16px;
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-detail .word-list .tag img {
  margin-left: 4px;
}

.game-detail .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

@media screen and (max-width:576px) {
  .game-detail .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }
}

.game-detail .buttons .add-word {
  background: linear-gradient(180deg, #0DC0F6, #426CEA);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  max-width: 185px;
}

@media screen and (max-width:576px) {
  .game-detail .buttons .add-word {
    font-size: 14px;
    width: 100%;
  }
}

.game-detail .buttons .play-game {
  background: linear-gradient(180deg, #B81818, #E35D03);
  color: #fff;
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
  font-size: 20px;
  max-width: 185px;


}

@media screen and (max-width:576px) {
  .game-detail .buttons .play-game {
    font-size: 14px;
    width: 100%;
  }
}


.page-wrapper {
    width: 80%;
}
@media screen and (max-width:1024px) {
    .page-wrapper {
        width: 100%;
    }
}


.error-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* semi-transparent black */
    z-index: 9998; /* just below the popup */
}
.error-toast {
    position: fixed;
    top: 40%;
    left: 40%;
    min-width: 240px;
    max-width: 320px;
    background: #fff;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    color: #111;
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 6px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    z-index: 9999;
    transform-origin: center;
    opacity: 0;
}

    /* Icon */
    .error-toast .icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(231,76,60,0.12);
        border-radius: 6px;
        color: #e74c3c;
        font-weight: 700;
        font-size: 18px;
    }

    /* text */
    .error-toast .msg {
        flex: 1 1 auto;
        font-size: 14px;
        line-height: 1.2;
        user-select: none;
    }

    /* small close button */
    .error-toast .close {
        margin-left: 8px;
        cursor: pointer;
        background: transparent;
        border: none;
        color: #888;
        font-size: 16px;
        padding: 2px;
    }

table.dataTable {
    width: 100% !important;
    white-space: nowrap !important;
}
.dataTables_scrollBody {
    overflow-x: auto !important;
}


/* animations */
@keyframes toastIn {
    0% {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }

    60% {
        opacity: 1;
        transform: translateY(0) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* gentle shake for attention */
@keyframes shakeX {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}

/* apply when showing */
.error-toast.show {
    animation: toastIn 260ms ease forwards, shakeX 380ms ease 80ms;
}

/* fade out */
.error-toast.hide {
    transition: opacity 220ms ease, transform 220ms ease;
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
}

@media screen and (max-width:576px) {
    .word-box {
        justify-content: start !important;
    }
}

.hover-word:hover {
    background-color: #28A9E0;
    border-radius: 3px;
}

#loader {
    display: none;
    text-align: center;
    padding: 10px;
    z-index: 99;
}
#bg1 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffffd1;
    width: 100%;
    height: 100%;
    z-index: 9;
}

#loader img {
   /* width: 14px;*/
}
#modalWord {
    color: #0DC0F6 !important;
    font-size:30px;
    font-weight: bold;
}
.box1 {
    width: 200px;
    padding: 10px;
    border-radius: 10px;
    background-color: #e8e8e8;
    margin: 0 auto;
    margin-bottom: 8px;
}
.show-word {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
   
    user-select: none;


}
.kb-key {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent; /* remove tap highlight on Android */
}
