/* Inter Font Family */
/* Regular */
/* Black */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

:root {
  --banner-bg: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  --globalbanner-bg: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.49) 0%,
    rgba(0, 0, 0, 0.49) 100%
  );
  --product-bg1: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 56.73%,
    rgba(0, 0, 0, 0.33) 70%
  );
  --product-bg2: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  --hero-accent: #741818;
  --text-light: #fff;
  --muted: #e6e6e6cc;
  --grid-line: #ffffff80;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  color: #0f0f0f;
  background-color: #fff;
  text-align: justify;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

img {
  max-width: 100%;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none !important;
  border: 0;
}

input:focus {
  outline: none;
  background: #e8e8e8;
}

input::-moz-focus-inner {
  border: 0;
  display: none;
  background: #e8e8e8;
}

input::-webkit-focus-inner {
  border: 0;
  display: none;
  background: #e8e8e8;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: #e8e8e8 inset !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: #e8e8e8;
}

::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}

::-moz-placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}

table {
  border-collapse: collapse;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

ul,
li {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0px;
}

form {
  position: relative;
}

.form-control:focus {
  outline: none !important;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  background: transparent !important;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

hr {
  margin: 0;
  padding: 0;
  border-color: #000;
}

ul,
ol {
  margin-bottom: 10px;
}

ul li,
ol li {
  list-style: auto;
  position: relative;
  margin: 0 0 2px 20px;
}

a,
button {
  position: relative;
}

a:hover,
a:focus,
button:hover,
button:focus {
  outline: 0;
  text-decoration: none;
}

input,
textarea,
button {
  border: 0px;
  width: 100%;
}

.container {
  width: 100%;
}

.container_testimonial {
  width: 100%;
}

@media (min-width: 1300px) {
  .container_testimonial {
    max-width: 1749px;
  }
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* ------------------------------------------------------------------
    Template All Variables Defined - Value Change with Your's Need
 -------------------------------------------------------------------- */
.color-para {
  color: #0f0f0f !important;
}

.color-text {
  color: #353233 !important;
}

.color-primary {
  color: #741818 !important;
}

.color-secondary {
  color: #0f0f0f !important;
}

.color-highlight {
  color: #741818 !important;
}

.color-white {
  color: #ffffff !important;
}

.color-lwhite {
  color: #f1f2f8;
}

.color-grey {
  color: #737477 !important;
}

.color-cream {
  color: #74181833 !important;
}

.color-lcream {
  color: #fff5f5 !important;
}

.color-black {
  color: #000 !important;
}

.color-lblack {
  color: #313131 !important;
}

.color-dark {
  color: #1d1d1d !important;
}

.color-lred {
  color: #ff8682 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-lcream {
  background: #fff5f5 !important;
}

.bg-cream {
  background-color: #74181833 !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-primary {
  background-color: #741818 !important;
}

.bg-secondary {
  background-color: #0f0f0f !important;
}

.bg-highlight {
  background-color: #741818 !important;
}

.bg-grey {
  background-color: #737477 !important;
}

.font-italic {
  font-style: italic !important;
}

.w-fit {
  width: fit-content !important;
}

.bg-all {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
}

/* Regular Headings */
h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 94px;
}

h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 74px;
}

h3 {
  font-size: 42px;
  font-weight: 600;
  line-height: 68px;
}

h4 {
  font-size: 32px;
  font-weight: 600;
  line-height: 54px;
}

h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
}

h6 {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

/* Class Headings with !important */
.f-h1 {
  font-size: 64px !important;
  line-height: 94px !important;
}

.f-h2 {
  font-size: 48px !important;
  line-height: 84px !important;
}

.f-h3 {
  font-size: 42px !important;
  line-height: 68px !important;
}

.f-h4 {
  font-size: 36px !important;
  line-height: 54px !important;
}

.f-h5 {
  font-size: 28px !important;
  line-height: 40px !important;
}

.f-h6 {
  font-size: 22px !important;
  line-height: 32px !important;
}

a {
  cursor: pointer;
  line-height: 28px;
  color: unset;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  outline: none !important;
}

a:hover {
  color: unset;
}

p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
}

.fp-14 {
  font-size: 14px;
  line-height: 22px;
  color: #141718;
}

.fp20 {
  margin: 0px;
  font-size: 20px;
  line-height: 28px;
}

.fp-19 {
  margin: 0px;
  font-size: 19px;
  line-height: 28px;
}

.fp-18 {
  margin: 0px;
  font-size: 18px;
  line-height: 28px;
}

.fp-17 {
  margin: 0px;
  font-size: 17px;
  line-height: 28px;
}

.fp-16 {
  margin: 0px;
  font-size: 16px;
  line-height: 28px;
}

.fp-15 {
  margin: 0px;
  font-size: 15px;
  line-height: 28px;
}

.fp-14 {
  margin: 0px;
  font-size: 14px;
  line-height: 28px;
}

.fpw3 {
  font-weight: 300 !important;
}

.fpw4 {
  font-weight: 400 !important;
}

.fpw5 {
  font-weight: 500 !important;
}

.fpw6 {
  font-weight: 600 !important;
}

.fpw7 {
  font-weight: 700 !important;
}

.fpw8 {
  font-weight: 800 !important;
}

.fpw9 {
  font-weight: 900 !important;
}

.coverbg {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
}

.ls {
  letter-spacing: 0.4px !important;
}

.ffm-ks {
  font-family: "Poppins", sans-serif;
}

.lh {
  line-height: 25px !important;
}

.lnh60 {
  line-height: 60px !important;
}

.text-right {
  text-align: right !important;
}

.mx-auto {
  margin: 0 auto;
}

.align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-center:before,
.align-center:after {
  content: none;
}

.align-center-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.align-center-h:before,
.align-center-h:after {
  content: none;
}

.align-center-v {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-center-v:before,
.align-center-v:after {
  content: none;
}

.align-center-v-b {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.align-center-v-b:before,
.align-center-v-b:after {
  content: none;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-content-center:before,
.justify-content-center:after {
  content: none;
}

.eq-height {
  display: -webkit-box;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -o-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.eq-height:before,
.eq-height:after {
  content: none;
}

#special-line {
  display: none;
}

.fa-phone {
  rotate: 90deg;
}

.list-show li {
  list-style: disc;
  margin-left: 15px;
  padding: 5px 0;
}

.b-none {
  border: none !important;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none !important;
  border: 0;
}

input:focus {
  outline: none;
  background: #e8e8e8;
}

input::-moz-focus-inner {
  border: 0;
  display: none;
  background: #e8e8e8;
}

input::-webkit-focus-inner {
  border: 0;
  display: none;
  background: #e8e8e8;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: #e8e8e8 inset !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: #e8e8e8;
}

::-webkit-input-placeholder {
  color: #1c1b1f;
  opacity: 1;
  /* Firefox */
}

::-moz-placeholder {
  color: #1c1b1f;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  color: #1c1b1f;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  color: #1c1b1f;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  color: #1c1b1f;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #1c1b1f;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #1c1b1f;
}

.form-control:focus {
  outline: none !important;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  background: transparent !important;
}

hr {
  border: 1px solid #d9d9d9;
}

/* ------------------------------------------------------------------
 Template Default Button, Input Styles - Value Change with Your's Need
-------------------------------------------------------------------- */
.btnbanner a {
  padding: 10px 22px;
  border-radius: 2px;
  background: #741818;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  transition: 0.3s all;
  display: block;
  width: fit-content;
}

.btnbanner a:hover {
  background: #000;
  color: #fff;
}

.btnprimary a {
  padding: 8px 16px;
  border-radius: 12px;
  background: #741818;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #fff;
  transition: 0.3s all;
  display: block;
  width: fit-content;
}

.btnprimary a:hover {
  background: #000;
  color: #fff;
}

.btnsecondary a {
  padding: 16px 32px;
  border-radius: 12px;
  background: #fff;
  color: #741818;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  transition: 0.3s all;
  display: block;
  width: fit-content;
}

.btnsecondary a:hover {
  background: #000;
  color: #fff;
}

.btnthird a {
  padding: 16px 32px;
  border-radius: 12px;
  background: #fff;
  color: #741818;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  transition: 0.3s all;
  display: block;
  width: fit-content;
}

.btnthird a:hover {
  color: #fff;
  background-color: #741818;
}

.btnshop a {
  display: block;
  padding: 6px;
  font-size: 16px;
  border: 0.5px solid rgba(53, 50, 51, 0.72);
  border-radius: 1.086px;
  text-transform: capitalize;
  text-decoration: none;
  background: transparent;
  color: #525252;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.btnshop a:hover {
  background: #000;
  color: #fff;
}

.btncart a {
  padding: 8px 12px;
  border-radius: 2px;
  background: #667085;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  transition: 0.3s all;
  display: block;
  width: fit-content;
}

.btncart a:hover {
  background: #000;
  color: #fff;
}

.btncontact button {
  padding: 12px 40px;
  border-radius: 8.005px;
  background: #741818;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  line-height: 28.017px;
  /* 175% */
  letter-spacing: -0.4px;
}

.btncontact button:hover {
  background: #741818;
}

/* scroll top animation fixed button css code  */

#scroll__top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 99;
  outline: none;
  background-color: #0f0f0f;
  color: #fff;
  -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#scroll__top:hover {
  background: #741818;
}

#scroll__top.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#scroll__top svg {
  width: 25px;
  line-height: 1;
}

/* global template css code end */

.main__content_wrapper {
  overflow: hidden;
}

/* golbal css code end */

/* login signup etc Pages Css Code  */
.main-login-signup-box {
  padding: 60px 0;
  height: 100%;
  align-content: center;
}

.main-login-signup-box .input-form-box {
  padding: 40px 60px;
  background: #fff;
  border-radius: 10px;
}

.main-login-signup-box .heading-box .login-logo-img {
  margin-bottom: 10px;
}

.main-login-signup-box .form-box {
  padding: 30px 0 10px 0;
}

.main-login-signup-box .form-group {
  position: relative;
  margin-bottom: 30px;
}

.main-login-signup-box .form-group input {
  width: 100%;
  padding: 14px;
  border: 1px solid #79747e;
  border-radius: 4px;
  background: transparent;
}

.main-login-signup-box .form-check-input {
  border-color: #313131 !important;
  width: 18px;
  height: 18px;
}

.main-login-signup-box .form-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #999;
  transition: 0.2s ease all;
  pointer-events: none;
  background: #fff;
  padding: 0 4px;
}

.main-login-signup-box .form-group.focused label,
.main-login-signup-box .form-group input:focus + label,
.main-login-signup-box .form-group input:not(:placeholder-shown) + label {
  top: 0px;
  left: 10px;
  font-size: 14px;
  color: #68191d;
}

.main-login-signup-box .form-group input::placeholder {
  color: #1c1b1f !important;
}

.main-login-signup-box .form-group input:focus {
  outline: none;
  border-color: #68191d;
}

.main-login-signup-box .password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #68191d;
}

.main-login-signup-box .btncontact button {
  margin: 30px 0 25px 0;
  width: 100%;
  padding: 12px;
  background-color: #68191d;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
}

.main-login-signup-box .btncontact button:hover {
  background-color: #5d1313;
}

.main-login-signup-box .login-sideimg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

@media (max-width: 768px) {
  .main-login-signup-box .input-form-box {
    padding: 30px 20px;
  }
}

/* Home page css code  */
main {
  overflow: hidden;
  word-wrap: break-word;
}

/* refund policy css code */

.refund-policy-section {
  text-align: justify;
  margin-bottom: 50px;
}

.refund-policy-heading {
  padding: 50px 0;
}

/* terms conditions */

.terms-conditions-section {
  text-align: justify;
  margin-bottom: 50px;
}

.terms-conditions-heading {
  padding: 50px 0;
}

/*privacy policy css code */

.privacy-policy-section {
  text-align: justify;
  margin-bottom: 50px;
}

.privacy-policy-heading {
  padding: 50px 0;
}

/* Thankyou Page  */

.thankyou-section {
  padding: 80px 0;
}

/* About and about submenu page css code  */

.banner-hero-section {
  height: 600px;
  padding: 100px 0;
  text-align: center;
  color: white;
  align-content: center;
}

.banner-hero-section .banner-para-box .border-line-box {
  width: 135px;
  margin: auto;
  height: 7px;
  border-radius: 27px;
  margin-top: 20px;
  background-color: white;
}

.about-university-section {
  padding: 60px 0;
}

.about-detail-top-box {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #dddddd;
}

.about-heading {
  border-right: 1px solid #c0c0c0;
  width: 38%;
}

.about-desc {
  padding-left: 30px;
  width: 62%;
}

.about-point-detail-box {
  padding: 60px 0 0 0;
}

.about-point-detail-box .side-img-box {
  height: 100%;
  padding: 120px 0;
}

.about-content-block {
  padding-left: 30px;
}

.about-content-block .about-stats-box {
  background-color: #890c25;
  color: #fff;
  padding: 30px 25px 34px 25px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.about-content-block .about-stats-box:last-child {
  margin-bottom: 0;
}

.about-content-block .about-stats-box h3 {
  margin-bottom: 5px;
  font-weight: 400;
}

.about-history-section {
  padding: 60px 0;
}

.about-history-section .about-history-img-box {
  height: 100%;
  padding: 120px 0;
}

.about-stats-bar {
  background: #890c25;
  padding: 40px 0;
  text-align: center;
  color: #fff;
}

.about-stats-bar .stat-item {
  padding: 20px 10px;
}

.about-stats-bar .bbox {
  border-left: 1px solid #af2944;
  border-right: 1px solid #af2944;
}

.mission-section {
  padding: 60px 0;
  background-color: #fff6f6;
  color: #0f0f0f;
}

.mission-details-box {
  padding: 50px 0 0 0;
}

.mission-left-box {
  padding-right: 80px;
  border-right: 1px solid #dddd;
}

.mission-item-one {
  text-align: right;
}

.mission-right-box {
  padding-left: 80px;
}

.mission-box img {
  max-width: 100%;
  margin-top: 15px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.about-image-scale-section {
  padding: 60px 0;
  margin: 0;
}

.about-image-scale-section .items-handle-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.about-image-scale-section .left-item-box {
  position: relative;
  width: 50%;
  min-height: 500px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 55px 20px;
}

.about-image-scale-section .left-item-box .quote-box {
  background: white;
  padding: 12px 25px;
  border-radius: 6px;
  color: #741818;
  font-weight: 500;
  font-size: 22px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 700px;
}

.about-image-scale-section .right-item-box {
  width: 50%;
  background: #1d1d1d;
  color: white;
  padding: 60px;
  display: flex;
  justify-content: center;
  position: relative;
}

.about-image-scale-section .right-item-box .text-detail-box {
  max-width: 500px;
}

.about-image-scale-section .right-item-box .right-item-box a.simple-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 40px;
  display: inline-block;
  font-size: 15px;
  transition: all 0.3s ease;
}

.about-image-scale-section .right-item-box.right-item-box a.simple-link:hover {
  text-decoration: none;
  color: #f0f0f0;
}

/* Privacy policy , Terms & Condition global page css code */

.global-design-content-box {
  padding: 50px 0;
}

/* governance page css code */
.goverenance-top-title {
  border-right: 3px solid #741818;
  width: 38%;
  height: fit-content;
  text-align: left;
}

.faculty-person-section {
  padding: 10px 0 60px 0;
}

.faculty-person-section .faculty-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
}

.faculty-person-section .faculty-card .faculty-img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
  margin-bottom: 15px;
  align-self: center;
}

.faculty-person-section .faculty-card .faculty-title {
  font-weight: 600;
  font-size: 16px;
  color: #af2944;
  margin-bottom: 10px;
}

.faculty-person-section .faculty-card .faculty-desc {
  font-size: 15px;
  line-height: 25px;
  font-weight: 300;
  color: #000000;
  margin-bottom: 15px;
}

/* This ensures the icons always stay at the bottom of the card */
.faculty-person-section .faculty-card .faculty-social {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.faculty-person-section .faculty-card .faculty-social a:hover {
  color: #000;
  transform: translateY(-5px);
}

/* Tour and Application page css code */

.tour-heading-box {
  max-width: 650px;
  background-color: #68191d;
  color: white;
  border-radius: 6px;
  padding: 34px 80px;
  position: relative;
  bottom: -300px;
  text-align: left;
  left: 50px;
}

.tour-form-section {
  padding: 150px 0 60px 0;
}

.tour-form-section .form-heading {
  text-align: center;
  color: #741818;
  font-weight: 500;
  margin: 40px 0;
}

.tour-form-section input,
.tour-form-section textarea,
.tour-form-section select {
  font-size: 16px;
  padding: 20px 20px;
  border: none;
  background-color: #fff;
  width: 100%;
  border-radius: 55px;
  outline: none;
  /* Optional: removes blue outline */
}

/* Fix background disappearing on focus */
.tour-form-section input:focus,
.tour-form-section textarea:focus,
.tour-form-section select {
  background-color: #fff !important;
}

.tour-form-section label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  color: #767676;
}

.tour-form-section .form-group {
  margin-bottom: 35px;
}

.tour-form-section .btn {
  background-color: #000;
  color: white;
  border-radius: 40px;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 40px;
  border: none;
}

.tour-form-section .form-check-input {
  width: 20px !important;
  height: 20px !important;
  margin-right: 10px;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.55);
  background-color: #fff5f5;
  appearance: auto;
  -webkit-appearance: checkbox;
  outline: none;
  box-shadow: none;
}

.tour-form-section .form-check-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: rgba(0, 0, 0, 0.55) !important;
  /* keep original border */
}

.tour-form-section .file-upload-box {
  border: 1px dashed #212121;
  border-radius: 10px;
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  color: #767676;
  font-size: 13px;
  position: relative;
}

.tour-form-section .file-upload-box input[type="file"] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

.tour-submit-btn {
  padding: 25px 40px;
  border-radius: 47px;
  background: #292929;
  color: white;
  width: fit-content;
  margin: auto;
  transition: 0.3s all ease;
}

.tour-submit-btn:hover {
  background-color: #68191d;
}

/* Home page css code and Some Global section css code */

.left-text-banner-section {
  padding: 100px 0;
  color: white;
  min-height: 600px;
  align-content: center;
}

.left-text-banner-section .text-content-box {
  max-width: 900px;
}

.left-text-banner-section .banner-para-box .border-line-box {
  width: 126px;
  height: 7px;
  border-radius: 27px;
  margin-top: 10px;
  background-color: white;
}

.left-text-banner-section .banner-btn-box a {
  margin-top: 35px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 40px;
  background: #fff;
  padding: 21px 44px;
  display: block;
  width: fit-content;
  color: #68191d;
}

.left-text-banner-section .banner-btn-box a:hover {
  background: #68191d;
  color: #fff;
}

.course-short-details-section {
  padding: 40px 0;
}

.course-feature-card {
  border: 0;
  height: 100%;
  padding: 0 50px;
  width: 100%;
  border-right: 1px solid #e0e0e0;
  /* adjust color */
}

/* Remove right border from the last column in the row */
.col-lg-4:nth-child(3n) .course-feature-card {
  border-right: none;
}

.course-feature-icon {
  padding: 30px 0;
}

.course-feature-title {
  color: #0f0f0f;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1rem;
  text-align: center;
  min-height: 50px;
}

.course-feature-image {
  overflow: hidden;
  margin-bottom: 30px;
}

.course-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
}

.course-feature-card:hover .course-feature-image img {
  transform: scale(1.03);
}

.course-feature-text {
  color: #343434;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 144.444% */
  min-height: 75px;
  /* keep heights even across cards */
}

.course-feature-cta {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-weight: 600;
  color: #741818;
  text-decoration: none;
  margin-top: 0.75rem;
}

.course-feature-cta .arrow {
  transition: transform 0.25s ease;
  display: inline-block;
}

.course-feature-cta:hover .arrow {
  transform: translateX(4px);
}

.program-hero {
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
}

.program-hero .hero-left {
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  height: 100%;
}

.program-hero .hero-content {
  padding: 70px 70px 70px 0px;
}

.program-hero .fade-swap {
  opacity: 1;
  transition: opacity 0.35s ease;
}

.program-hero .fade-swap.fading {
  opacity: 0;
}

.program-hero .hero-title {
  color: #fff5f5;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.program-hero .hero-cta {
  margin-top: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: #741818;
  border: 0;
  padding: 24px 27px;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  user-select: none;
}

.program-hero .hero-cta:hover,
.program-hero .hero-cta:focus {
  background: #741818;
  color: #fff;
  text-decoration: none;
}

.program-hero .hero-cta .arrow {
  font-weight: 900;
  transition: transform 0.2s ease;
  display: inline-block;
}

.program-hero .hero-cta:hover .arrow,
.program-hero .hero-cta:focus .arrow {
  transform: translateX(6px);
}

/* Grid styles */
.program-hero .hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    262deg,
    rgba(0, 0, 0, 0) 3.94%,
    rgba(0, 0, 0, 0.66) 83.43%
  );
  padding: 80px 0;
  height: 100%;
}

.program-hero .program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  grid-template-rows: repeat(2, minmax(80px, 1fr));
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1.25 / 1;
  position: relative;
}

.program-hero .program-grid::before,
.program-hero .program-grid::after {
  content: "";
  position: absolute;
  background: #fff;
  z-index: 2;
}

.program-hero .program-grid::before {
  width: 1px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-0.5px);
}

.program-hero .program-grid::after {
  height: 1px;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-0.5px);
}

.program-hero .program-grid .program-tile {
  position: relative;
  z-index: 1;
  background: transparent;
  color: #fff5f5;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  border: none;
  padding: 0.8rem 12px;
  user-select: none;
  overflow: hidden;
  transition:
    background-color 0.25s ease,
    transform 0.05s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.program-hero .program-grid .program-tile:hover,
.program-hero .program-grid .program-tile:focus-visible,
.program-hero .program-grid .program-tile.active {
  background: #7a1515;
}

.program-hero .program-grid .program-tile .arrow {
  display: none;
  transition: transform 0.05s ease;
}

.program-hero .program-grid .program-tile:hover .arrow,
.program-hero .program-grid .program-tile:focus-visible .arrow,
.program-hero .program-grid .program-tile.active .arrow {
  display: block;
}

/* Your provided styles updated and cleaned */

/* .course-filter-section-box {
  padding: 40px 0;
} */

.course-top-filters {
  display: flex;
  gap: 25px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.course-top-filters button {
  border-radius: 40px;
  font-size: 20px;
  font-weight: 500;
  padding: 18px 27px;
  cursor: pointer;
  color: #741818;
  border: 1px solid rgba(116, 24, 24, 0.66);
  background: #fff;
  transition:
    background-color 0.3s,
    color 0.3s;
  width: fit-content;
  white-space: nowrap;
}

.course-top-filters button:hover,
.course-top-filters button.active {
  background: #741818;
  color: white;
}

.container-custom {
  display: flex;
  gap: 50px;
  /* for spacing between side filters and courses container */
  max-width: 1360px;
  margin: 0 auto;
}

.program-filters {
  background: #f0f0f0;
  border-radius: 30px;
  width: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.program-filters button {
  display: block;
  width: 100%;
  border: none;
  text-align: left;
  padding: 30px 25px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.3s,
    font-weight 0.3s;
  color: #0f0f0f;
  background: transparent;
  border-bottom: 1px solid #ddd;
  user-select: none;
}

.program-filters button:last-child {
  border-bottom: none;
}

.program-filters button:hover,
.program-filters button.active {
  color: #741818;
  border-bottom: 1px solid #0f0f0f;
  background: linear-gradient(
    271deg,
    #fff -12.24%,
    rgba(116, 24, 24, 0.8) 205.26%
  );
  font-weight: 500;
}

.courses-container {
  overflow-y: auto;

  max-width: 1250px;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  max-height: 640px;
  scroll-behavior: smooth;
}

/* Scrollbar Styles */
.courses-container::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}

.courses-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.courses-container::-webkit-scrollbar-thumb {
  background-color: #7a1515;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

.courses-container::-webkit-scrollbar-thumb:hover {
  background-color: #a01f1f;
}

/* Firefox */
.courses-container {
  scrollbar-width: thin;
  scrollbar-color: #7a1515 #f1f1f1;
}

.filter-course-card {
  max-width: 320px;
  width: calc(33.333% - 24px);
  border-radius: 15px;
  vertical-align: top;

  user-select: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.filter-course-card img {
  width: 100%;
  object-fit: cover;
}

.filter-course-content {
  padding: 15px 20px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.filter-course-title {
  font-weight: 500;
  color: #0f0f0f;
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.filter-course-details {
  font-size: 16px;
  color: #0f0f0f;
  padding: 15px 0;
  display: flex;
  gap: 16px;
  align-items: center;
}

.filter-course-details i {
  margin-right: 5px;
  font-size: 15px;
  margin-top: -3px;
  vertical-align: middle;
}

.filter-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.filter-enroll-btn {
  border-radius: 40px;
  background: #741818;
  color: #fff5f5;
  font-weight: 500;
  border: none;
  padding: 17px 28px;
  transition: background-color 0.3s ease;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  text-align: center;
  user-select: none;
}

.filter-enroll-btn:hover,
.filter-enroll-btn:focus {
  color: white;
}

.filter-details-link {
  font-size: 0.85rem;
  color: #6b2d2d;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  vertical-align: middle;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-details-link:hover,
.filter-details-link:focus {
  text-decoration: underline;
  outline: none;
}

.main-section-interested-box {
  padding: 50px 0;
  text-align: center;
}

.main-section-interested-box .details-box {
  background: #bde1ff;
  padding: 80px 0;
}

.home-short-blog-box {
  padding: 70px 0;
}

/* Generic card */
.home-short-blog-box .news-card {
  position: relative;
  overflow: hidden;
  background: #000;
  display: block;
  border-radius: 0.5rem;
}

.home-short-blog-box .news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .home-short-blog-box .news-card img {
    transition: none;
  }
}

.home-short-blog-box .news-card:hover img {
  transform: scale(1.03);
}

/* Readability overlay */
.home-short-blog-box .news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.45) 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
}

/* Pill tag */
.home-short-blog-box .tag-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  border: none;
  color: #741818;
  padding: 18px 27px;
  border-radius: 40px;
  background: #fff;
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(72, 72, 72, 0.08);
  white-space: nowrap;
}

/* Title CTA */
.home-short-blog-box .card-link-cta {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.home-short-blog-box .card-link-cta .arrow {
  font-weight: 700;
}

/* Heights (apply to the same element as .news-card) */
.home-short-blog-box .hero-large {
  height: 480px;
}

.home-short-blog-box .small-card {
  height: 380px;
}

.blog-details-section-box {
  padding: 40px 0 10px 0;
}

.blog-card-view-cta {
  margin-top: 50px;
}

.blog-card-view-cta a {
  color: #1b1b1b;
  font-weight: 500;
  font-size: 18px;
  border: none;
  padding: 16px 20px;
  border-radius: 40px;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  /* Increased duration */
  display: inline-flex;
  align-items: center;
}

.blog-card-view-cta a:hover,
.blog-card-view-cta a:focus-visible,
.blog-card-view-cta a.active {
  background: #7a1515;
  color: white;
}

.blog-card-view-cta .arrow {
  display: none;
  margin-left: 8px;
  transition: transform 0.3s ease;
  /* Increased duration */
}

.blog-card-view-cta a:hover .arrow,
.blog-card-view-cta a:focus-visible .arrow,
.blog-card-view-cta a.active .arrow {
  display: inline-block;
  transform: translateX(4px);
}

/* Contact Page css code  */

.contact-banner-section {
  padding: 20px 0;
}

.contact-banner-section .bfirst-box {
  padding: 50px 100px 50px 0px;
}

.contact-banner-section .bfirst-box .banner-cta-box {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 80px;
}

.contact-title-text-box {
  background-image: url("../img/pdiui/contact-ttimg.webp");
  text-align: center;
  padding: 40px 0 80px 0;
  margin-top: 30px;
}

.contact-detail-box {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #fff;
  box-shadow:
    0 100px 80px 0 rgba(0, 0, 0, 0.03),
    0 51.154px 51.419px 0 rgba(0, 0, 0, 0.02),
    0 31.261px 32.722px 0 rgba(0, 0, 0, 0.01),
    0 19.7px 20.341px 0 rgba(0, 0, 0, 0.01),
    0 12.157px 11.878px 0 rgba(0, 0, 0, 0.01),
    0 6.891px 6.096px 0 rgba(0, 0, 0, 0.01),
    0 3.011px 2.286px 0 rgba(0, 0, 0, 0.01);
}

.contact-detail-box .top-fixed-title {
  position: absolute;
  top: -37px;
  margin: auto;
  font-weight: 500;
  width: 100%;
  left: 0;
  text-align: center;
}

.contact-detail-box .top-fixed-title .title-text {
  background-color: white;
  padding: 9.9px 16px;
  font-weight: 500;
  border-radius: 8px 8px 0 0;
}

.contact-detail-box .second-box {
  border-left: 1px solid #797979;
  border-right: 1px solid #797979;
  padding: 30px;
  height: 100%;
}

.contact-detail-box .first-box,
.contact-detail-box .third-box {
  padding: 30px;
}

.contact-detail-box .text-box {
  margin-bottom: 20px;
}

.contact-detail-box .text-box .subtitle {
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-detail-box .text-box .link-text {
  color: #797979;
  font-weight: 400;
}

.contact-detail-box .text-box a:hover {
  text-decoration: underline;
}

/* program page css code */

.form-title-main-section {
  background: #fcafbd;
  text-align: center;
  padding: 100px 0 40px;
  margin-top: 120px;
  position: relative;
}

.form-title-main-section .form-hero-title {
  letter-spacing: 2px;
  font-weight: 900;
  font-size: clamp(3rem, 12vw, 180px);
  /* fluid */
  line-height: 0.9;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  top: -180px;
  /* sits above the pink on large screens */
}

.form-title-main-section .form-hero-sub {
  padding: 30px 0 40px;
  max-width: 760px;
  margin: 0 auto;
}

.form-title-main-section .btn-pill {
  border-radius: 47px;
  background: #0f0f0f;
  padding: 24px 32px;
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border: none;
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  justify-content: center;
  margin: auto;
}

.form-title-main-section .btn-pill:hover {
  background: #741818;
  color: #fff;
}

.form-title-main-section .btn-pill:focus-visible {
  outline: 3px solid #222;
  outline-offset: 2px;
}

.form-title-main-section .visit-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  opacity: 0.9;
}

.form-title-main-section .visit-link:hover {
  text-decoration: underline;
}

/* my account page css code  */

/* Adapted CSS with child selectors for more specific targeting */

.user-profile-section {
  padding-top: 150px;
}

.user-profile-section .profile-pic {
  display: flex;
  gap: 25px;
  align-items: center;
  color: #333;
}

.user-profile-section .profile-pic img {
  width: 120px;
  object-fit: cover;
  border-radius: 100%;
}

.user-profile-section .username-box h5 {
  margin: 0;
  font-weight: 600;
  font-size: 28px;
}

.user-profile-section .username-box p {
  margin-top: 6px;
  font-size: 16px;
  color: #6c7275;
}

.users-profile-page {
  display: flex;
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius: 8px;
  overflow: hidden;
  gap: 50px;
  flex-wrap: wrap;
}

.users-profile-page .user-profile-sidebar {
  width: 320px;
  text-align: left;
  border-right: 1px solid #e2e0db;
}

.users-profile-page .user-profile-sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 22px;
  color: #333;
}

.users-profile-page .user-profile-sidebar-nav li {
  list-style: none;
  cursor: pointer;
  background: #fff;
  padding: 16px 20px;
  margin: 3px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
  border-radius: 6px 0 0 6px;
}

.users-profile-page .user-profile-sidebar-nav li a {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.users-profile-page .user-profile-sidebar-nav li:hover,
.users-profile-page .user-profile-sidebar-nav .active {
  color: #fff;
  background: #781e1e;
  border-radius: 6px 0 0 6px;
}

.user-profile-main-content {
  flex: 1;
  padding: 0 0px;
  min-width: 280px;
}

.user-profile-main-content .editbtn-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.user-profile-main-content .editbtn-box h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  color: #333;
  line-height: 38px;
}

.user-profile-main-content .edit-link {
  color: #6c7275;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.user-profile-main-content .edit-link:hover {
  color: #000;
}

.user-profile-main-content .edit-link i {
  font-size: 20px;
}

.user-profile-main-content .user-profile-address-box {
  color: #000;
  border-radius: 8px;
  margin-top: 15px;
}

.user-profile-main-content .user-profile-info-detail-box {
  margin-bottom: 18px;
}

.user-profile-main-content .user-profile-application-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-bottom: 25px;
}

.user-profile-main-content .users-application-details {
  display: flex;
  gap: 15px;
  align-items: baseline;
  font-weight: 500;
}

.user-profile-main-content .users-application-details .label {
  color: #1d1d1d;
  font-weight: 500;
}

.user-profile-main-content .users-application-details .value {
  font-weight: 400;
  color: #737477;
}

.user-profile-main-content .kv-sep {
  color: #781e1e;
  user-select: none;
}

/* Form Styles */
.user-profile-account-form {
  margin-top: 30px;
  font-size: 18px;
}

.user-profile-account-form h5 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 35px;
  color: #222;
}

.user-profile-account-form .form-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.user-profile-account-form .form-group {
  flex: 1;
  margin-bottom: 30px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.user-profile-account-form .form-group label {
  font-size: 16px;
  font-weight: 400;
  color: #808080;
  margin-bottom: 10px;
}

.user-profile-account-form .form-group input,
.user-profile-account-form .form-group textarea,
.user-profile-account-form .form-group select {
  width: 100%;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #e2e0db;
  background: #fff;
  font-size: 16px;
  color: #333;
  outline: none;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.user-profile-account-form .form-group input:focus,
.user-profile-account-form .form-group select:focus {
  border-color: #781e1e;
  box-shadow: 0 0 6px rgb(104 25 29 / 0.4);
}

.user-profile-btn {
  padding: 12px 20px;
  border-radius: 12px;
  background: #781e1e;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.user-profile-btn:hover {
  background: #781e1e;
}

/* Blog page css code  */

.blog-post-show-box {
  padding: 20px 0;
}

.blog-post-show-box.boxone {
  padding: 60px 0 20px 0;
}

.blog-post-show-box .section-title {
  color: #a61929;
  margin-bottom: 20px;
}

.blog-post-show-box .blog-card {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}

.blog-post-show-box .blog-img-box {
  background: #ccc;
  border-radius: 10px;
  overflow: hidden;
  height: 220px;
  text-align: center;
}

.blog-post-show-box .blog-content {
  padding: 25px 0 10px 0;
}

.blog-post-show-box .blog-meta {
  line-height: 25px;
  font-weight: 400;
}

.blog-post-show-box .blog-title {
  line-height: 55px;
}

.blog-post-show-box .blog-date {
  color: #0f0f0fa3;
}

/* checkout page css code  */

.user-checkout-wrap {
  padding: 70px 0;
}

/* Left Panel */
.user-checkout-wrap .checkout-details-panel {
  overflow: hidden;
  padding: 0 24px 0 0;
}

.user-checkout-wrap .checkout-details-panel .page-title {
  color: #68191d;
  letter-spacing: 1.68px;
  border-bottom: 1px solid #68191d;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.user-checkout-wrap .checkout-details-panel .info-detail-box {
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #68191d;
}

/* .info-detail-box:last-child {
            border-bottom: none;
        } */

.user-checkout-wrap .checkout-details-panel .info-detail-box h5 {
  font-weight: 500;
  margin-bottom: 20px;
}

/* Inline key-value pairs with separators */
.user-checkout-wrap .checkout-details-panel .user-checkout-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-bottom: 20px;
}

.user-checkout-wrap .checkout-details-panel .user-checkout-details {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-weight: 500;
}

.user-checkout-wrap .checkout-details-panel .user-checkout-details .label {
  color: #1d1d1d;
}

.user-checkout-wrap .checkout-details-panel .user-checkout-details .value {
  font-weight: 500;
  color: #737477;
}

.user-checkout-wrap .checkout-details-panel .kv-sep {
  color: #68191d;
  user-select: none;
}

/* Right Panel (Order checkout-summary) */
.user-checkout-wrap .checkout-summary-panel {
  overflow: hidden;
  word-break: break-all;
}

.user-checkout-wrap .checkout-summary-panel .checkout-summary-title {
  text-align: center;
  font-weight: 600;
  color: #68191d;
  margin-bottom: 18px;
}

.user-checkout-wrap .checkout-summary-panel .checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #68191d;
  font-weight: 500;
}

.user-checkout-wrap .checkout-summary-panel .checkout-summary-row small {
  color: #8a8f98;
  font-weight: 500;
}

.user-checkout-wrap .checkout-summary-panel .checkout-summary-row:last-of-type {
  border-bottom: none;
}

.user-checkout-wrap .checkout-summary-panel .order-summary-box {
  padding: 25px 00 0 0;
}

.user-checkout-wrap .checkout-summary-panel .orders-repart-box {
  display: flex;
  gap: 15px;
}

.user-checkout-wrap .checkout-summary-panel .order-details .orders-title {
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 6px;
}

.user-checkout-wrap .checkout-summary-panel .order-details .author {
  color: #242424;
  font-size: 16px;
  margin-bottom: 6px;
}

.user-checkout-wrap .checkout-summary-panel .meta-inline {
  color: #242424;
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  align-items: center;
}

.user-checkout-wrap .checkout-summary-panel .meta-inline .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d9d9d9;
  display: inline-block;
}

/* Pay button */
.user-checkout-wrap .checkout-summary-panel .checkout-btn-pay {
  margin-top: 35px;
  text-align: center;
}

.user-checkout-wrap .checkout-summary-panel .checkout-btn-pay button {
  background: #741818;
  color: #fff5f5;
  font-weight: 800;
  border: none;
  padding: 18px;
  border-radius: 6px;
  width: 100%;
  display: block;
}

.user-checkout-wrap .checkout-summary-panel .checkout-btn-pay .icon-lock {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
  color: #8c1b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.user-checkout-wrap .checkout-summary-panel .checkout-btn-pay:hover button {
  background: #6e1313;
  color: #fff;
}

/* Thumb image */
.user-checkout-wrap .checkout-summary-panel .thumb {
  width: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
}

/* Course Details page css code */

.main-course-detail-section {
  padding: 50px 0;
}

.main-course-detail-section ul li {
  list-style: disc;
  margin-bottom: 5px;
}

/* curriclum css code */

/* ===== Theme (adjust to taste) ===== */
.main-course-detail-section .curriculum-wrap-box {
  overflow: hidden;
  padding: 30px 0;
}

.main-course-detail-section .curriculum-card {
  border: none;
  background: transparent;
}

/* Header row */
.main-course-detail-section .curriculum-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 50px;
}

.main-course-detail-section .curriculum-head h2 {
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.main-course-detail-section .curriculum-meta {
  font-weight: 500;
  font-size: 0.95rem;
}

.main-course-detail-section .curriculum-expand {
  font-weight: 600;
  text-decoration: none;
}

/* Accordion shell */
.main-course-detail-section .curriculum-accordion .accordion-item {
  border: none;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: transparent;
}

.main-course-detail-section .curriculum-accordion .accordion-item ul li {
  margin-left: 0;
  margin: 0;
  background-color: transparent;
}

.main-course-detail-section .curriculum-accordion .accordion-button {
  background: #f1f2f8;
  font-weight: 700;
  color: #333333;
  padding: 0.85rem 1rem;
  box-shadow: none !important;
  font-size: 18px;
}

.main-course-detail-section .curriculum-accordion .accordion-button .sub {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.main-course-detail-section
  .curriculum-accordion
  .accordion-button:not(.collapsed) {
  background: #f1f2f8;
}

.main-course-detail-section .curriculum-accordion .accordion-body {
  padding: 0;

  border-top: 1px solid #e2e0db;
  border-right: 1px solid #e2e0db;
  border-bottom: 1px solid #e2e0db;
}

/* Lesson list */
.main-course-detail-section .curriculum-list {
  margin: 0;
}

.main-course-detail-section .curriculum-list .list-group-item {
  padding: 0.85rem 1rem;
  border: none;
}

.main-course-detail-section .lesson-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #333;
}

.main-course-detail-section .lesson-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  /* truncate safely */
}

.main-course-detail-section .lesson-title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-course-detail-section .lesson-duration {
  font-weight: 500;
  white-space: nowrap;
  margin-left: 0.75rem;
}

/* Icon colors to match screenshot cues */
.main-course-detail-section .icon-danger {
  color: #800000;
}

.main-course-detail-section .icon-muted {
  color: #9aa1ad;
}

/* Optional: hover feedback */
.main-course-detail-section .curriculum-list .list-group-item:hover {
  background: #fafafa;
}

.course-purchase-box .purchase-course-card {
  border-radius: 6px;
  border: 1px solid #e2e0db;
  background: #fff;
  overflow: hidden;
}

.course-purchase-box .purchase-course-card .card-img-top {
  object-fit: cover;
  width: 100%;
  display: block;
}

.course-purchase-box .purchase-course-card .course-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 28px;
}

.course-purchase-box .purchase-course-card .course-purchase-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-purchase-box .purchase-course-card .course-purchase-meta li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  color: #666;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  font-weight: 400;
  margin-left: 0;
}

/* was: .course-purchase-meta .bi { ... } */
.course-purchase-box .purchase-course-card .course-purchase-meta .fa,
.course-purchase-box .purchase-course-card .course-purchase-meta .fas,
.course-purchase-box .purchase-course-card .course-purchase-meta .far {
  color: #741818;
  font-size: 1.1rem;
  width: 1.35rem;
  text-align: center;
  flex: 0 0 1.35rem;
}

.course-purchase-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-purchase-box .purchase-course-card .price-pill {
  border-radius: 6px;
  background: #6f1111;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding: 12px 20px;
  border: none;
}

.course-purchase-box .purchase-course-card .price-pill:hover {
  background: #5c0e0e;
  color: #fff;
}

.course-purchase-box .purchase-course-card .btn-enroll {
  border-radius: 6px;
  background: rgba(116, 24, 24, 0.2);
  color: #741818;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
}

.course-purchase-box .purchase-course-card .btn-enroll:hover {
  background: #e8dede;
  color: #741818;
}

.course-purchase-box .purchase-course-card .course-purchase-card-body {
  padding: 1.25rem 1.25rem 1.15rem;
}

/* Program page css code  */

.about-university-section.top-section {
  padding: 60px 0;
  margin-top: 150px;
}

/* User Profile course history page css code */

.course-history-container {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.course-history-card {
  border-radius: 15px;
  vertical-align: top;
  user-select: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.course-history-card img {
  width: 100%;
  object-fit: cover;
}

.course-history-content {
  padding: 15px 20px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-history-title {
  font-weight: 500;
  color: #0f0f0f;
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.course-history-details {
  font-size: 16px;
  color: #0f0f0f;
  padding: 15px 0 20px 0;
  display: flex;
  gap: 16px;
  align-items: center;
}

.course-history-details i {
  margin-right: 5px;
  font-size: 15px;
  margin-top: -3px;
  vertical-align: middle;
}

.course-histroy-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.course-histroy-enroll-btn {
  border-radius: 40px;
  background: #741818;
  color: #fff5f5;
  font-weight: 500;
  border: none;
  padding: 5px 19px;
  transition: background-color 0.3s ease;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  text-align: center;
  user-select: none;
}

.course-histroy-enroll-btn:hover,
.course-histroy-enroll-btn:focus {
  color: white;
}

.course-histroy-details-link {
  font-size: 0.85rem;
  color: #741818;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.198px;
  /* 212.209% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  vertical-align: middle;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.course-histroy-details-link:hover,
.course-histroy-details-link:focus {
  text-decoration: underline;
  outline: none;
}

/* new css code 15/09/2025 */

.course-short-details-section .owl-carousel .owl-item img {
  display: inline-block;
  width: fit-content;
}

/*404  Error page css code*/

.main-error-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 150px 0;
  justify-content: center;
  text-align: center;
  background-color: #191c1f;
}

.main-error-box h1 {
  color: #e7ebf2;
  font-size: 10.5rem;
  letter-spacing: 0.1em;
  margin: 0.025em 0;
  text-shadow: 0.05em 0.05em 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.main-error-box h1 > span {
  -webkit-animation: spooky 2s alternate infinite linear;
  animation: spooky 2s alternate infinite linear;
  color: #741818;
  display: inline-block;
}

.main-error-box h2 {
  color: #e7ebf2;
  margin-bottom: 0.4em;
}

.main-error-box p {
  color: #ccc;
  margin-top: 0;
}

@-webkit-keyframes spooky {
  from {
    transform: translatey(0.15em) scaley(0.95);
  }

  to {
    transform: translatey(-0.15em);
  }
}

@keyframes spooky {
  from {
    transform: translatey(0.15em) scaley(0.95);
  }

  to {
    transform: translatey(-0.15em);
  }
}
