* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #f0f0f0;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #cb6d1b;
}

*::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 10px;
}

@font-face {
  font-family: title-font;
  src: url(Poppins/Poppins-Bold.ttf);
}

@font-face {
  font-family: sub-title-font;
  src: url(Poppins/Poppins-Medium.ttf);
}

@font-face {
  font-family: body-font;
  src: url(Poppins/Poppins-Regular.ttf);
}

:root {
  --primary-color: #D49C2C;
  --light-primary-color: #e9bb5d;
  --secondary-color: #282B2E;
  --body-color: #000;
  --sub-body-color: #444;
  --sub-body-color2: #383838;
  --link-color: #328ab3;
  --text-color: #7c7c7c;
  --white-color: #fff;
  --bg-white: var(--white-color);
  --text-white: var(--white-color);
  --bg-color: #f8f8f8;
  --bg-color2: #e7e7e7;
  --bg-color3: #fcfcfc;
  --light-border-color: #e2e2e2;
  --close-color: #f00;
  --active-color: #090;
  --active-color2: #98cd99;
  --sub-text-color: #d7353a;
  --client-bg-color: #0a1628;
  --service-bg-color: #FFFFFF1A;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: title-font;
  margin: 0px;
  padding: 0px;
}

p {
  margin: 0px;
  padding: 0px;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: body-font;
  font-size: 15px;
  color: var(--body-color);
}

a {
  text-decoration: none;
  color: inherit;
}

/*------text field--------------------------------------------------------------------------------------------*/
.text_field_title {
  font-size: 12px;
  font-family: sub-title-font;
  color: var(--sub-body-color);
  margin-bottom: -10px;
  margin-top: 10px;
}

.text_field_container {
  position: relative;
  min-height: 60px;
}

.text_field_container .placeholder {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 30px;
  color: #999;
  pointer-events: none;
  background: transparent;
  z-index: 100;
  min-height: calc(100% - 30px);
  width: calc(80% - 30px);
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

.text_field_container .placeholder span {
  color: var(--secondary-color);
}

.text_field_container .text_field {
  min-width: 100%;
  width: calc(100% - 60px);
  min-height: 60px;
  border: var(--light-border-color) 1px solid;
  background: var(--white-color);
  padding: 0px 30px;
  font-size: 15px;
  border-radius: 5px;
  font-family: body-font;
  box-sizing: border-box;
  color: var(--body-color);
  -webkit-text-fill-color: var(--body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none !important;
}

.text_field_container .text_field:focus {
  background: var(--white-color);
  border: var(--primary-color) 1px solid;
}

.text_field_container .password-toggle {
  position: absolute;
  top: 32px;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}

.text_field_container .select_text_field {
  width: 100%;
}

.text_field_container:has(.select_text_field) {
  min-height: unset;
  height: 60px;
}



.text_field_container .issue {
  background: var(--white-color);
  border: var(--close-color) 1px solid;
}

.text_field_container .issueText {
  margin-top: 1px;
  color: var(--close-color);
  font-family: body-font;
  font-size: 10px;
  font-style: italic;
}

.text_field_container .placeholder span {
  color: var(--close-color);
}

.text_field_container .text_field:focus+.placeholder,
.text_field_container .text_field:not(:placeholder-shown)+.placeholder {
  min-height: auto;
  top: 20%;
  font-size: 11px;
  background: none;
}

.text_field_container .searchPanel {
  height: auto;
  overflow: auto;
  background: var(--white-color);
  border: var(--light-border-color) 1px solid;
  position: relative;
  z-index: 1000;
  border-radius: 5px;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.text_field_container .searchPanel .searchTxt {
  min-width: calc(100% - 20px);
  height: 40px;
  border: none;
  border-bottom: var(--light-border-color) 1px solid;
  background: var(--bg-color);
  padding: 0px 10px;
  font-size: 12px;
  box-sizing: border-box;
  font-family: body-font;
  color: var(--body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none !important;
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

.text_field_container .searchPanel ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 50px;
  max-height: 250px;
  overflow: auto;
}

.text_field_container .searchPanel ul li {
  list-style: none;
  padding: 20px;
  min-height: 10px;
  cursor: pointer;
  background: rgba(156, 156, 156, 0.1);
  transition: all 0.2s ease-in 0.2s;
  color: #444;
}

.text_field_container .searchPanel ul li:hover {
  color: var(--primary-color);
  padding-left: 30px;
  background: rgba(226, 226, 226, 0.5);
}









.text_area_container {
  width: 100%;
  position: relative;
}

.text_area_container .placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  color: #999;
  pointer-events: none;
  background: transparent;
  z-index: 100;
  font-size: 13px;
  transition: all 0.2s ease-in-out;
}

.text_area_container .text_area {
  min-width: 100%;
  width: calc(100% - 60px);
  min-height: 30px;
  border: var(--light-border-color) 1px solid;
  background: var(--white-color);
  padding: 25px 30px;
  font-size: 15px;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: body-font;
  color: var(--body-color);
  -webkit-text-fill-color: var(--body-color);
  outline: none;
  resize: vertical;
}

.text_area_container .text_area:focus {
  background: var(--white-color);
  border: var(--primary-color) 1px solid;
}

.text_area_container .issue {
  background: var(--white-color);
  border: var(--close-color) 1px solid;
}

.text_area_container .issueText {
  margin-top: 1px;
  color: var(--close-color);
  font-family: body-font;
  font-size: 10px;
  font-style: italic;
}

.text_area_container .placeholder span {
  color: var(--close-color);
}

.text_area_container .text_area:focus+.placeholder,
.text_area_container .text_area:not(:placeholder-shown)+.placeholder {
  top: 20%;
  font-size: 11px;
  color: #666;
}

/*--------------------------------------------------------------------------------------------------*/
#get-more-div {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  -webkit-backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  z-index: 900;
  display: none;
}

#get-form-more-div {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  -webkit-backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  z-index: 900;
  display: none;
}

#get-more-div-secondary {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  z-index: 950;
  display: none;
}

.alert-loading-div {
  min-height: 50px;
  padding: 0px 20px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 106, 53, 0.2);
  border: rgba(0, 106, 53, 1) 1px solid;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.ajax-loader {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 10px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 700;
}

.ajax-loader img {
  width: 100%;
  object-fit: cover;
}

/* Modal Layout */
/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px) brightness(0.8) contrast(1.2);
  -webkit-backdrop-filter: blur(5px) brightness(0.8) contrast(1.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-overlay .modal-box {
  width: calc(90% - 80px);
  max-width: 400px;
  background: var(--white-color);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.modal-overlay .modal-box .modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--white-color);
}

.modal-overlay .modal-box .bg-warning {
  background-color: var(--secondary-color);
}

.modal-overlay .modal-box .bg-success {
  background-color: var(--active-color);
}

.modal-overlay .modal-box .bg-danger {
  background-color: var(--close-color);
}

.modal-overlay .modal-box .bg-info {
  background-color: var(--link-color);
}

.modal-overlay .modal-box h3 {
  font-size: 25px;
  font-family: sub-title-font;
  color: var(--sub-body-color2);
}

.modal-overlay .modal-box p {
  font-size: 14px;
  color: var(--text-color);
  font-family: body-font;
}

.modal-overlay .modal-box .btn-div {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.modal-overlay .modal-box .btn-div .btn {
  border: none;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 30px;
  font-family: sub-title-font;
  font-size: 18px;
  color: var(--white-color);
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color));
  background-size: 100%;
  background-position: left;
  transition: background-position 0.4s ease-in-out, transform 0.2s ease-in-out;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.modal-overlay .modal-box .btn-div .btn:hover {
  background-size: 200% 100%;
  background-position: right;
  transform: scale(1.05);
  /* subtle hover grow */
}

.modal-overlay .modal-box .btn-div .false-btn {
  background: linear-gradient(90deg, #faf5e5, #fff);
  color: var(--body-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

@media all and (max-width: 400px) {
  .modal-overlay .modal-box .btn-div {
    flex-direction: column;
  }

  .modal-overlay .modal-box .btn-div .btn {
    width: 100%;
  }
}


/*----click acion alert----------------------------------------------------------------------------------------------*/
.all-alert-back-div {
  position: fixed;
  z-index: 2000;
  height: 1px;
  top: 0px;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.all-alert-back-div .success-alert-div,
.all-alert-back-div .failed-alert-div {
  margin-top: 100px;
  min-height: 50px;
  font-size: 14px;
  color: #FFF;
  cursor: pointer;
  background: #006a35;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.all-alert-back-div .success-alert-div .icon,
.all-alert-back-div .failed-alert-div .icon {
  width: 50px;
  border-radius: 5px 0px 0px 5px;
  background: #00ca65;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.all-alert-back-div .success-alert-div .text,
.all-alert-back-div .failed-alert-div .text {
  width: calc(100% - 70px);
  padding-right: 10px;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sub-title-font;
}

.all-alert-back-div .failed-alert-div {
  background: #6a0000;
}

.all-alert-back-div .failed-alert-div .icon {
  background: #ca0000;
}

.all-alert-back-div .failed-alert-div .text {
  color: #FFF;
}

/*-------form alert div-------------------------------------------------------------------------------------------*/
.alert {
  width: calc(100% - 42px);
  border: rgba(231, 107, 46, 0.4) 1px solid;
  background: rgba(231, 107, 46, 0.05);
  padding: 10px 20px 10px 20px;
  font-size: 12px;
  line-height: 18px;
  color: #7f8c8d;
  border-radius: 5px;
  font-family: body-font;
  color: var(--text-color);
}

.alert span {
  color: var(--secondary-color);
  cursor: pointer;
  font-size: 12px;
  font-family: sub-title-font;
}

.alert span i {
  font-size: 10px;
}

@media all and (max-width: 450px) {
  .alert span {
    font-size: 11px;
  }
}

.alert .alert-list-div {
  width: calc(100% - 10px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 0px;
}

.alert .alert-list-div .alert-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 5px 0px;
  border-bottom: #b6b6b6 1px dashed;
  font-size: 11px;
}

.alert .alert-list-div .alert-list span {
  font-family: body-font;
  font-size: 12px;
}

.alert .alert-details {
  font-family: body-font;
  font-size: 13px;
  line-height: 25px;
}

@media all and (max-width: 470px) {
  .alert .alert-list-div .alert-list span {
    font-size: 12px;
  }

  .alert .alert-list-div .alert-list {
    font-size: 12px;
  }
}

.alert .alert-title {
  color: var(--primary-color);
  font-size: 13px;
  margin-bottom: 10px;
}

.alert-success {
  border: rgba(46, 204, 113, 0.4) 1px solid;
  background: rgba(46, 204, 113, 0.05);
}

.alert-failed {
  border: rgba(231, 76, 60, 0.4) 1px solid;
  background: rgba(231, 76, 60, 0.05);
}

.alert .btn-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.alert .btn-container .btn {
  height: 30px;
  padding: 0px 15px;
  border: none;
  border-radius: 15px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: sub-title-font;
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
}

.alert .btn-container .btn i {
  font-size: 10px;
}

.alert .btn-container .btn:hover {
  background: var(--secondary-color);
}





.successful-div {
  min-height: 300px;
  width: 400px;
  min-width: 350px;
  background: var(--white-color);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.successful-div .success-in {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.successful-div .success-in .gif {
  width: 90px;
  height: 90px;
  overflow: hidden;
}

.successful-div .success-in .gif img {
  width: 100%;
  object-fit: cover;
}

.successful-div .success-in h3 {
  color: var(--sub-body-color);
  font-size: 18px;
  margin: 0px;
  padding: 0px;
  font-family: sub-title-font;
}

.successful-div .success-in .btn {
  width: 100%;
  height: 50px;
  color: var(--white-color);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 15px;
  font-family: sub-title-font;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color));
  background-size: 100%;
  background-position: left;
  transition: background-position 0.4s ease-in-out, transform 0.2s ease-in-out;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.successful-div .success-in .btn:hover {
  background: var(--primary-color);
  transform: scale(1.05);
  /* subtle hover grow */
}

@media all and (max-width:450px) {
  .successful-div {
    width: 94%;
    min-width: 200px;
  }

  .successful-div .success-in {
    padding: 20px;
  }

  .successful-div .success-in h3 {
    font-size: 15px;
  }
}



/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.false-notification-div {
  padding: 50px;
  width: calc(100% - 100px);
  background: #f8f8f8;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--secondary-color);
  font-size: 20px;
}

.false-notification-div .offline-icon {
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 80px;
  color: var(--sub-body-color);
}


.false-notification-div .btn {
  border: none;
  height: 50px;
  font-family: sub-title-font;
  font-size: 12px;
  padding: 0px 25px;
  border-radius: 100px;
  margin-top: 10px;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.2s ease-in 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
  background-size: 100%;
  background-position: left;
  transition: background-position 0.4s ease-in-out, transform 0.2s ease-in-out;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.false-notification-div .btn:hover {
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color));
  background-size: 200% 100%;
  background-position: right;
  transform: scale(1.05);
}

.false-notification-div .btn:hover {
  background: var(--secondary-color);
}


.content-loading-div {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-loading-div img {
  width: 50px;
  height: 50px;
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */

.sidenavdiv {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  -webkit-backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  z-index: 600;
  margin-left: -100%;
}

.sidenavdiv .sidenavdiv-in {
  width: calc(100% - 252px);
  height: 100%;
  right: 0px;
  position: absolute;
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.live-help-div {
  position: fixed;
  width: 60px;
  height: 80px;
  left: 20px;
  bottom: 20px;
  font-size: 10px;
  color: var(--white-color);
  text-shadow: #000 1px 1px;
  font-weight: bold;
  text-align: center;
  line-height: 15px;
  cursor: pointer;
  transition: all 0.2s ease-in 0.2s;
  z-index: 300;
}

.live-help-div:hover {
  -moz-transform: scale(1.1) translate(1px, 0px);
  -webkit-transform: scale(1.1) translate(1px, 0px);
}

.live-help-div .pix-div {
  width: 56px;
  height: 56px;
  padding: 2px;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.4);
  background: var(--white-color);
}

.live-help-div .pix-div img {
  width: 100%;
}

#live-chat-div {
  width: 250px;
  height: 100%;
  overflow: auto;
  position: fixed;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .9);
  padding-top: 20px;
  margin-left: -100%;
}

#live-chat-div .top-div .logo-div {
  width: 140px;
  margin: auto;
  overflow: hidden;
  border-radius: 8px;
}

#live-chat-div .top-div .logo-div img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

#live-chat-div .div {
  display: flex;
  margin: 5px 0px 5px 0px;
  padding: 5px 5px 5px 20px;
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
  cursor: pointer;
}


#live-chat-div .div .div-in{
  display: flex;
  justify-content: center;
  align-items: center;
}

#live-chat-div .div .text {
  min-height: 30px;
  margin: 5px;
  float: left;
  background: #FFF;
  box-shadow: 0px 0px 2px 1px rgba(204, 204, 204, .6);
  color: #000;
  line-height: 30px;
  padding: 0px 10px 0px 10px;
  border-radius: 10px;
}

#live-chat-div .div .social-div {
  height: 32px;
  width: 40px;
  font-size: 24px;
  padding-top: 8px;
  text-align: center;
  color: #FFF;
  float: left;
  border-radius: 100%;
}

#live-chat-div .div:hover {
  padding-left: 15px;
  background: rgba(255, 255, 255, .3);
}


/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
#back2Top {
  width: 40px;
  height: 40px;
  padding-top: 20px;
  position: fixed;
  z-index: 999;
  bottom: 100px;
  right: 4%;
  border: var(--primary-color) 2px solid;
  background: var(--white-color);
  color: var(--secondary-color);
  display: none;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  border-radius: 100px;
  -moz-transition: all 0.2s ease-in 0.2s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}


#back2Top:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */


/*------Media Link--------------------------------------------------------------------------------------------*/
.media-link-div {
  position: fixed;
  height: auto;
  width: 50px;
  right: 0px;
  top: calc(50% - 100px);
  z-index: 500;
}

.media-link-div li {
  list-style: none;
  width: 50px;
  font-size: 20px;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -moz-transition: all 0.2s ease-in 0.2s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
  cursor: pointer;
  float: right;
}

.media-link-div li:hover {
  padding-right: 5px;
}

@media all and (max-width:670px) {
  .media-link-div {
    display: none;
  }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.index-menu-back-div {
  width: 250px;
  height: 100%;
  overflow: auto;
  position: fixed;
  background: #ffffffe6;
  backdrop-filter: blur(10px);
  z-index: 950;
  margin-left: -100%;
}

.index-menu-back-div .top-div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 65px;
  background: var(--bg-white);
  padding: 2px 0px;
  position: fixed;
  z-index: 100;
}

.index-menu-back-div .top-div .logo-div {
  width: 140px;
  overflow: hidden;
  border-radius: 8px;
}

.index-menu-back-div .top-div .logo-div img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.index-menu-back-div .div-in .div {
  border-bottom: #ccc 1px solid;
  cursor: pointer;
  transition: all 0.2s ease-in 0.2s;
}

.index-menu-back-div .div-in .div:hover {
  background: #f9f9ff;
}

.index-menu-back-div .div-in {
  margin-top: 70px;
}

.index-menu-back-div .div-in .div li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0px 10px 15px;
  font-size: 14px;
  color: var(--sub-body-color);
  height: 30px;
  line-height: 30px;
  list-style: none;
  cursor: pointer;
}

.index-menu-back-div .div-in .div #active-li {
  background: #f9f9ff;
}

.index-menu-back-div .div-in .div li i {
  color: var(--primary-color);
  font-size: 15px;
}

.index-menu-back-div .div-in .div li #side-expand {
  color: var(--primary-color);
}

.index-menu-back-div .div-in .div .sub-li {
  width: calc(90% - 10px);
  padding: 0px 5px;
  margin: auto;
  margin-bottom: 5px;
  display: none;
}

.index-menu-back-div .div-in .div .sub-li li {
  height: auto;
  line-height: 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease-in 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.index-menu-back-div .div-in .div .sub-li li:hover {
  background: rgba(204, 204, 204, 0.2);
}

.index-menu-back-div .div-in .div .sub-li #active-li {
  background: rgba(204, 204, 204, 0.2);
}

.index-menu-back-div .div-in .div .sub-li li .exam-header {
  width: calc(100% - 10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index-menu-back-div .div-in .div li .related-links {
  width: calc(100% - 10px);
  padding: 0px;
  display: none;

}

.index-menu-back-div .div-in .div li .related-links li {
  font-size: 12px;
  color: #555;
}

.index-menu-back-div .div-in .div li .related-links li a {
  text-decoration: none;
  color: var(--sub-body-color);
}


.index-menu-back-div .div-in .div .student-li {
  background: var(--secondary-color);
  color: var(--white-color);
}

.index-menu-back-div .div-in .div .training-li {
  background: var(--primary-color);
  color: var(--white-color);
}

.index-menu-back-div .div-in .div .training-li i {
  color: var(--white-color);
  font-size: 13px;
}

.index-menu-back-div .div-in .div .student-li i {
  color: var(--white-color);
  font-size: 13px;
}





.btn-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 25px;
}

/* IN BLOG PAGE */
.btn-wrapper.no-gap {
  gap: 0px;
}

.btn-wrapper .btn {
  border: none;
  height: 45px;
  width: 100%;
  max-width: 100%;
  padding: 0px 20px 0px 20px;
  border-radius: 25px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
  font-family: sub-title-font;
  background-color: var(--light-primary-color);
  border: 1px solid var(--light-primary-color);
  transition: 0.3s ease-in;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}


.btn-wrapper .btn.contact-btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.btn-wrapper .btn.contact-btn:hover {
  background-color: var(--light-primary-color);
  color: var(--secondary-color);
}

.btn-wrapper .btn.contact-btn .icon-wrapper {
  background-color: var(--primary-color);
}

.btn-wrapper .btn.contact-btn:hover .icon-wrapper {
  background-color: var(--secondary-color);
}

.btn-wrapper .btn .icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--white-color);
  display: flex;
  margin-right: -22px;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.btn-wrapper .btn .icon-wrapper i {
  position: absolute;
  font-size: 18px;
}

.btn-wrapper .btn .hover-icon {
  opacity: 0;
}

.btn-wrapper .btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}


.btn-wrapper .btn:hover .icon-wrapper {
  background: var(--primary-color);
}

.btn-wrapper .btn:hover .default-icon {
  opacity: 0;
}

.btn-wrapper .btn:hover .hover-icon {
  opacity: 1;
}

.btn-wrapper .btn .icon-wrapper img{
  width: 100%;
}










/* Social Media Color CSS */
.tel-cl {
  background: #008040;
  color: var(--white-color);
}

.whtap-cl {
  background: #25D366;
  color: var(--white-color);
}

.mail-cl {
  background: #F5F5F5;
  color: var(--close-color);
}

.ig-cl {
  background-image: linear-gradient(to right, #03F, #F0F);
  color: var(--white-color);
}

.face-cl {
  background: #007AFF;
  color: var(--white-color);
}
.linke-cl {
  background: #0a66c2;
  color: var(--white-color);
}

/* Social Media Color CSS */




.rotating-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #fff;
  animation: spin 15s linear infinite;
  z-index: 100;
}

.mission-vission-value-circle-animation, .what-we-supply-circle-animation {
  height: 350px;
  width: 350px;
}


.circle-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.circle-text text {
  fill: var(--secondary-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Outer Ring */

.rotating-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed #d4a017;
  border-radius: 50%;
}

/* Center Circle */
.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}


.mission-vission-value-center-circle, .what-we-supply-center-circle {
  width: 200px;
  height: 200px;
}


.center-circle img {
  width: 100%;
}

/* Gold Dots */

.center-circle::before,
.center-circle::after {
  content: "";
  position: absolute;

  width: 10px;
  height: 10px;

  background: #d4a017;
  border-radius: 50%;

  top: 50%;
  transform: translateY(-50%);
}

.center-circle::before {
  left: -35px;
}

.center-circle::after {
  right: -35px;
}

.center-circle.mission-vission-value-center-circle::before, .center-circle.what-we-supply-center-circle::before {
  left: -80px;
}

.center-circle.mission-vission-value-center-circle::after, .center-circle.what-we-supply-center-circle::after {
  right: -80px;
}



/* Animation */

@keyframes spin {

  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }

}



.trusted-clients {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  padding: 5px 20px 5px 0px;
  border-radius: 100px;
  width: max-content;
  font-family: sub-title-font;
}

/* Google Logo */
.trusted-clients .google-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: var(--primary-color) 1px solid;
  object-fit: cover;
  background: #594723;
  padding: 5px;
}

.trusted-clients .google-icon img {
  width: 100%;
}

.trusted-clients .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trusted-clients .content .stars {
  font-size: 17px;
  color: var(--light-primary-color);
}

.trusted-clients .content .text {
  font-size: 12px;
  margin-top: 4px;
}

.trusted-clients .black-text {
  color: var(--secondary-color);
}

.trusted-clients .content .text strong {
  font-weight: 700;
}