:root {
  --font-heading: "PT Serif", serif;
  --font-body: "Open Sans", sans-serif;
  --font-sec: "Rajdhani", sans-serif;

  --primary-color: #fe5722; /* Yellow-Gold */
  --secondary-color: #002262; /* Dark Blue */
}

body {
  font-family: var(--font-body);
  color: var(--secondary-color);
}

.section-head h3 {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--secondary-color);
}
.section-head {
  margin-bottom: 40px;
}
.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--primary-color);
}
.custom-hero-section {
  background-image: url("../images/banner/bghg.png"); /* ← Replace with your image */
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  display: flex;
}

.custom-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: rgb(221 221 221 / 75%) !important;
  content: var(--bs-breadcrumb-divider, "/");
}
.custom-content {
  padding: 170px 0 50px;
  text-align: start;
}

.breadcrumb-item a {
  color: #ddd !important;
}

.custom-heading {
  font-size: 45px;
  color: #ffffff;
  font-weight: bold;
}
.border-right {
  border-right: 1px solid;
}

.custom-subtext {
  color: #ddd;
  font-size: 18px;
  margin-bottom: 10px;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
}
.banner {
  background: linear-gradient(to top, #0000007a, #0000009c),
    url(../images/banner/avant-bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  color: white;
}
.form-box {
  background-color: rgb(230, 234, 238);
  /* background-color: rgb(0 0 0 / 59%); */
  padding: 30px;
  backdrop-filter: blur(10px);
  border-radius: 10px;
}
/* Overlay styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Popup styles */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: white;
  padding: 20px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  width: 320px;
  max-width: 90%;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show popup and overlay with animation */
.popup.show,
.popup-overlay.show {
  display: block;
  opacity: 1;
}

.popup.show {
  transform: translate(-50%, -50%) scale(1);
}

/* Close button styling */
.closeBtn {
  margin-top: 15px;
  padding: 6px 12px;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.closeBtn:hover {
  background: #e65500;
}

header .btn {
  text-transform: none;
  line-height: normal;
  letter-spacing: 0.16px;
  background: transparent linear-gradient(90deg, #fd8156 0%, #ffae8d 100%) 0% 0%
    no-repeat padding-box;
  cursor: pointer;
  border-radius: 9px;
  padding: 10px 20px;
  border: none;
  display: inline-flex;
  font-weight: 600;
  align-items: center;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.highlight-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.highlight-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
header span {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
}
.banner-content h1 {
  font-family: var(--font-heading);
  color: #fff;
  line-height: 54px;
  font-style: italic;
  font-size: 43px;
  font-weight: 700;
}
.banner-content h3 {
  font-size: 20px;
  margin: 0 !important;

  font-family: var(--font-body);
  color: var(--primary-color);
}
.banner-content p {
  font-size: 15px;
  font-family: var(--font-body);
  color: #cbcbcb;
  margin-top: 10px !important;
}
.number-block {
  display: flex;
  justify-content: space-between;
}
.line-item {
  display: flex;
  width: 25%;
  padding-left: 20px;
  align-items: center;
  border-right: 2px solid #ddd;
}
.line-item p {
  padding-left: 10px;
  font-style: italic;
  font-size: 15px;
  font-family: var(--font-heading);
  margin: 0;
  font-weight: 700;
}
.line-item:last-child {
  border: none;
}
.statistics-block {
  background: #e6eaee;
  display: flex;
  align-items: center;
  padding: 30px 0;
}
.ranking {
  padding-top: 60px;
  padding-bottom: 60px;
}
.ranking-head h3 {
  margin-bottom: 20px;
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--secondary-color);
}
.owl-nav {
  position: absolute !important;
  top: 42% !important;
  left: -43px !important;
  right: -43px !important;
  width: auto !important;
  transform: translateY(-50%) !important;
  display: flex !important
;
  justify-content: space-between !important;
  padding: 0 10px !important;
  pointer-events: none !important;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background-color: #ffffff !important;
  color: #333 !important;
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  font-size: 22px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: auto !important;
  transition: 0.3s ease !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background-color: #f0f0f0 !important;
  border-color: #999 !important;
}

.top-image {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 200px;
}

.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: 5%;
}
.ranking-box {
  background: #e6eaee;
  /* padding: 20px 15px 40px; */
  text-align: center;
  object-fit: cover;
  /* height: 220px; */
}
.ranking-box h4 {
  font-size: 15px;
  text-align: center;
  padding-top: 20px;
}
.lead {
  font-size: 1rem !important;
  font-weight: 300;
}
.our-course .tab-content {
  margin-top: 30px;
}
.our-course {
  background: #042e55;
  padding: 50px 0;
}
.our-course h3 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}
.our-course .nav-tabs {
  /* width: 83%; */
  border-radius: 4px;
  padding: 0px 0px;
  background: #ffffff00;
  border: none;
  gap: 14px;
}
.section-padding {
  padding: 31px 0 !important;
  position: relative;
}
.hoty{
  flex-wrap: wrap !important;
  align-content: center !important;
}
.hoty h5 strong {
  font-size: 20px !important;
  font-weight: 700;
  margin-right: 10px;
  color: var(--primary-color);
}

.hoty h3 strong {
  font-size: 20px !important;
  margin-right: 10px;

  font-weight: 700;
  color: var(--primary-color);
}

.our-course .nav-tabs .nav-link {
  font-weight: 700;
  color: #1c1c1c;
  border-radius: 30px;
  width: 200px;
  font-size: 18px;
  background-color: #fff;
  font-family: var(--font-heading);
}
.our-course .nav-tabs .nav-item.show .nav-link,
.our-course .nav-tabs .nav-link.active {
  border: none;
  border-bottom: 4px solid #fe5722 !important;
  border-radius: 30px;
  color: #ffffff;
  background: #fe5722;
  outline: none;
}
.our-course .text-div {
  transition: 0.5s all;
}
.our-course .text-div:hover {
  transform: translateY(-10px);
  border-radius: 0;
  cursor: pointer;
}
.swiper-backface-hidden .swiper-slide {
  margin-top: 10px;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.our-course .nav-tabs .nav-link:focus,
.our-course .nav-tabs .nav-link:hover {
  outline: none;
  isolation: isolate;
  /* border: none; */
  border-color: transparent;
}
.course-box .text-div {
  padding: 15px 25px 20px;
  border-radius: 5px;
  height: 100%;
  min-height: 364px;
  display: flex;
  background: #f7f7f7;
  flex-direction: column;
}
.text-div .institute {
  padding: 0;
  height: auto;
  font-weight: normal;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;

  line-height: 18px;
  color: #000000;
}
.text-div .heading span {
  font-size: 18px;
}
.heading .layout {
  position: relative;
}
.heading .layout img {
  position: absolute;
  top: 4px;
}
.text-div .heading span {
  padding-top: 0px;
  padding-left: 20px;
  text-transform: uppercase;
  color: #fe5722;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.text-div .heading span {
  font-size: 18px;
}
.smu-courses {
  display: flex;
  flex-direction: column;
}
.text-div .heading svg {
  width: 24px;
  margin: 0 10px 0 0;
}
.layout {
  display: flex;
}
.text-div .heading {
  margin: 0;
  display: flex;
  background: #fee8da;
  height: 37px;
  border-radius: 2px;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  height: 84px !important;
  justify-content: center;
}

.text-div .title-learn {
  align-items: flex-start;
  padding: 23px 0 26px;
  gap: 5px;
  justify-content: space-between;
}
.text-div .title-learn .title {
  font-size: 12px;
  letter-spacing: 0.8px;
  color: #000000;
  padding: 0;
  padding-top: 8px;
  font-weight: 700;
  min-height: 18px;
  flex: 0 0 auto;
  text-transform: uppercase;
  width: calc(50% - 5px);
  text-align: left;
}
.text-div .title-learn .learning {
  font-size: 10px;
  color: #155d8f;
  font-weight: bold;
  background: #daf0ff;
  padding: 10px 8px;
  border-radius: 2px;
}
.pricing {
  border-bottom: 0;
  padding: 0px 0 12px 0px;
}
.pricing span {
  font-weight: bold;
  font-size: 12px;
  font-family: var(--font-heading);
  color: #000000;
}
.text-div .enroll-know .primaryBtn {
  padding: 8px;
  width: 40%;
  justify-content: center;
  border: none;
  border-radius: 17px;
  background: #fe5722;
}
.primaryBtn {
  cursor: pointer;
  background: transparent
    linear-gradient(90deg, #ff6600 0%, #ff5204 0%, #ff270d 100%) 0% 0% no-repeat
    padding-box;
  border-radius: 2px;
  padding: 15px 25px;
  display: inline-flex;
  font-weight: 600;
  align-items: center;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.text-div .enroll-know .knowMore {
  font-weight: bold;
  color: #000000;
  font-size: 14px;
}
.knowMore {
  font-size: 12px;
  text-decoration: underline;
  line-height: 20px;
  letter-spacing: 0.12px;
  color: #343634;
}
.text-div .enroll-know {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: 28px;
}
.pricing i {
  font-size: 17px;
}
.benifits-box {
  background: linear-gradient(0, #d3f4ff 0%, #ffffff 100%);
  border-radius: 10px;
  padding: 32px;
  border: 1px solid #b9ddff;
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
}
.benefits-list {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.scholarship-sect {
  margin: 50px 0;
}
.scholarship-container {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}
.extra {
  padding: 74px 60px !important;
}
.scholarship-item {
  text-align: center;
}
.scholarship-item img {
  width: 40px;
  height: auto;
  margin-bottom: 1rem;
}
.scholarship-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.scholarship-item p {
  font-size: 14px;
  color: #6c757d;
}
.callback-btn {
  text-align: center;
  margin-top: 2rem;
}
.apply-btn {
  background-color: #000;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}
.apply-btn:hover {
  background-color: #ff270d;
}
.advantages {
  padding: 50px 0;
}

.section-title {
  font-size: 35px;
  font-weight: 600;
  text-align: start;
  color: #3b3b3b;
  margin-bottom: 2rem;
}
.section-title span {
  color: var(--primary-color);
  font-weight: 600;
}
.testimonial-section .section-title {
  color: var(--secondary-color);
}
.advantages .section-title {
  color: var(--secondary-color);
}
.advantage-item {
  min-height: 420px;
  text-align: start;
  border-radius: 5px;
  padding: 20px 20px;
  background: #f7f7f7;
}
.advantage-item img {
  width: 30px;
  margin: 0px;
  margin-bottom: 20px;
}
.advantage-item h3 {
  font-size: 21px;
  font-weight: 600;
  color: #000;
  line-height: 27px;
  letter-spacing: 0.16px;
  padding-bottom: 7px;
  min-height: 23px;
}
.advantage-item p {
  font-size: 15px;
  line-height: 22px;

  color: #555;
}
.advantage-item ul {
  padding: 0;
  list-style: none;
}
.advantage-item ul li {
  padding-top: 6px;
  font-weight: 400;
  font-size: 13px;
}

.truncate {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limits to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.5em; /* Adjust for your font */
}

.name-course {
  display: flex;
  justify-content: space-between;
}
.name-course .name h6 {
  margin: 0;
  color: #414141;
  font-size: 14px;
}
.name-course .name p {
  text-transform: uppercase;
  margin: 0;
  font-size: 12px;
}
.content-wrap {
    min-height: 205px;
    padding: 20px;
    background-color: #fee8da;
}
.img-wrap img {
  height: 172px;
  object-fit: cover;
}
.course-owl .item {
  border-radius: 5px;
  overflow: hidden;
}
.testimonial-section {
  padding: 50px 0;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1252px !important;
  }
}

.left-section {
  color: rgb(0, 0, 0);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.left-section h3 {
  font-size: 35px;
  color: var(--secondary-color);
  font-weight: 700;
  margin: 0;
}
.left-section .ss {
  font-size: 20px;
  color: var(--primary-color);
  font-family: var(--font-body);
}

label {
  font-size: 12px;
  display: inline-block;
}
.form-section {
  background: #fff;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.1607843137);
}
.form-control {
  background: #ffffff !important;
  padding: 10px 15px;
  border: 1px solid #f7f7f7;
  border-radius: 2px;
  width: 100%;
  color: #b5b1b1;
  font-size: 12px;
  line-height: 17px;
  border: 1px solid #f7f7f7 !important;
  font-size: 14px !important;
  color: #343634;
}
.form-select {
  background: #efefef !important;
  padding: 10px 15px;
  border: 1px solid #f7f7f7;
  border-radius: 2px;
  width: 100%;
  color: #b5b1b1;
  font-size: 12px;
  line-height: 17px;
  border: 1px solid #f7f7f7 !important;
  font-size: 14px !important;
  color: #343634;
}

.banner-content h6 {
  font-size: 35px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: #00ccff;
  text-transform: uppercase;
}
.bgg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(78 78 78) !important;
}
.ranking-box img{
  border-radius: 10px;
}
.btnform {
  background: #000;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  transition: transform 0.2s;
  color: #fff;
}
.btnform:hover {
  transform: translateY(-2px);
  background: #ff270d;
}
.intl-tel-input {
  width: 100%;
}

.enroll-section {
  padding: 50px 0px;
  background: #efefef;
}
.cta-section p {
  color: #292929;
}
.hotel .why-choose-list {
  background: none !important;
  border-radius: 5px;
  box-shadow: none !important;
  display: flex;
  padding: 15px 20px;
  margin-top: 20px;
  flex-direction: column;
  min-height: auto !important;
  gap: 15px;
}
.cta-section {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 20px 0 !important;
  color: #fff;
  overflow: hidden;
}

.hospitality-section {
  padding: 20px 0 0 !important;
  background-color: #fff;
}
.hospitality-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 10px;
}
.content-card {
  margin-top: 30px;
  border: none;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}
header {
  background: #fff;
}
.content-card .card-body {
  padding: 30px;
  background-color: #f8f9fa;
}
.content-card h3,
h5 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--secondary-color) !important;
  margin-bottom: 5px !important;
  font-family: var(--font-body) !important;
  font-style: normal !important;
}
.content-card p,
.content-card ul {
  font-size: 1rem;
  color: #333;
}
.pricing-card {
  border: none;
  border-radius: 10px;
  border: 1px solid #ddd;
  overflow: hidden;
}
.pricing-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.pricing-card .card-header {
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 15px;
}
.pricing-card .card-body {
  padding: 20px;
  text-align: center;
}
.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.cta-section .carer-hjead {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: start;
  color: #000000;
}

.cta-section .sec-par {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #252525;
  max-width: 500px;
}

.apply-btn,
.action-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apply-btn {
  color: #fff;
  background-color: var(--primary-color);
}

.apply-btn:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.why-choose-section {
  padding: 30px 0;
  position: relative;
}

.why-choose-section .carer-hjead {
  font-size: 30px;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: left;
  margin-bottom: 2rem;
  text-transform: capitalize;
}
.why-choose-section .carer-hjead span {
  color: var(--primary-color);
}
.why-choose-section img {
  border-radius: 10px;
}
.why-choose-list {
  background: #f8f9fa;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  display: flex;
  padding: 15px 20px;
  margin-top: 20px;
  flex-direction: column;
  min-height: 475px;

  gap: 15px;
}

.why-choose-item {
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-item i {
  font-size: 19px;
  color: #fff;
  margin-right: 20px;
  background: var(--secondary-color);
  display: flex;
  width: 40px;
  border-radius: 30px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-choose-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  flex: 1;
}

.why-choose-section .img-fluid {
  max-height: 550px;
  object-fit: cover;
  width: 100%;
  border-radius: 15px;
}
.statistics-block {
  background: #e6eaee;
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.number-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.line-item {
  display: flex;
  width: 25%;
  padding-left: 20px;
  align-items: center;
  border-right: 2px solid #ddd;
  box-sizing: border-box;
}

/* LAST ITEM का border-right हटाना अगर ज़रूरत हो तो */
.line-item:last-child {
  border-right: none;
}

.line-item p {
  padding-left: 10px;
  font-style: italic;
  font-size: 15px;
  font-family: var(--font-heading);
  margin: 0;
  font-weight: 700;
}
header {
  position: sticky;
  top: 0;
  z-index: 999; /* ताकि यह सभी चीज़ों से ऊपर रहे */
  background: #fff; /* ज़रूरी है अगर background transparent हो */
}
.cousre-tile {
  font-size: 20px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
}
.form-box .btn {
  background-color: var(--primary-color);
  border: none;
}
.top-bar {
  background-color: #ffcab9;
  color: #000;
  font-family: var(--font-heading);
}
.top-bar marquee {
  font-size: 14px;
  padding-top: 3px;
  font-family: var(--font-body);
}
/* Social Icons Styling */
.social-icons a {
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  background-color: #f0f0f0;
  margin-right: 8px;
  transition: background-color 0.3s ease;
}

/* Individual Icon Colors */
.social-icons a .fa-facebook-f {
  color: #1877f2; /* Facebook Blue */
}
.social-icons a .fa-twitter {
  color: #1da1f2; /* Twitter Blue */
}
.social-icons a .fa-instagram {
  color: #e1306c; /* Instagram Pink */
}
.social-icons a .fa-linkedin-in {
  color: #0a66c2; /* LinkedIn Blue */
}

/* Hover Effect for Background Only */
.social-icons a:hover {
  background-color: #e0e0e0; /* Subtle gray fade effect */
}
#contact,
#careers,
#curriculum,
#program,
#enroll {
  padding: 50px 0 !important;
}
.text-primary {
  color: var(--primary-color) !important;
}
.btn-enroll {
  background: var(--primary-color);
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: 0.5s all;
}
.content-card .card-body {
  padding: 30px;
  align-items: center !important;
  display: flex !important
;
  background-color: #f8f9fa;
}
.btn-enroll:hover {
  background: var(--secondary-color);
  color: #fff;
}
.content-card .card-body {
  height: 100% !important;
  padding: 30px;
  background-color: #f8f9fa;
}
.content-card img {
  width: 100%;
  overflow: hidden;
  height: 100% !important;
  object-fit: cover;
}
@media (max-width: 769px) {
    .about-content h4{
    display: none;
}
.course .about-image{
    display: none;
}
  #contact,
  #careers,
  #program,
  #enroll {
    padding: 17px 0 !important;
  }
  #curriculum {
    padding: 10px 0 !important;
  }

  #curriculum .nav-tabs {
    justify-content: space-around !important;
    border-bottom: 2px solid var(--primary-color);
  }
  .feature-card {
    padding: 10px !important;
  }
  .carer-hjead {
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 800;
    text-align: center;
    color: #000;
    margin-bottom: 20px !important;
  }
  .highlight-card {
    background: #ebebeb !important;
  }
  #program h2,
  #curriculum h2,
  #careers h2,
  #contact h2 {
    font-family: var(--font-heading);
    font-size: 22px !important
;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600 !important;
  }
  .career-card.fade-in.visible img {
    display: none;
  }
  #careers p {
    margin-bottom: 10px !important;
  }
  .career-card .card-body {
    padding: 0 !important;
    text-align: center;
  }
  header .btn {
    text-transform: none;
    line-height: normal;
    letter-spacing: 0.16px;
    background: transparent linear-gradient(90deg, #fd8156 0%, #ffae8d 100%) 0%
      0% no-repeat padding-box;
    cursor: pointer;
    border-radius: 9px;
    padding: 7px 15px;
    border: none;
    display: inline-flex;
    font-weight: 600;
    align-items: center;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
  }

  .sec-par {
    font-size: 13px;
    color: #171717;
    margin: 0 0 19px !important;
    font-weight: 600;
}
.why-choose-item i {
    font-size: 12px;
    color: #fff;
    margin-right: 5px;
    background: var(--secondary-color);
    display: flex
;
    width: 30px;
    border-radius: 30px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.curriculum-card p {
    font-size: 13px !important;
    font-weight: 500;
    line-height: 22px;
    color: #555;
}
p {
    font-size: 13px !important;
    margin-top: 0;
    margin-bottom: 1rem;
}
.pricing-card ul{
  padding: 0 0 0 10px;
}
.card-body .d-flex.justify-content-between{
  align-items: center;
}
.tab-content li {
    padding: 5px 0 !important;
    font-size: 14px !important;
}
.tab-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem !important
;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.highlight-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    text-align: center;
}
.feature-icon {
    font-size: 29px !important;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background:#fff !important;
}
.pricing-card h3 {
    font-size: 20px !important;
    font-weight: 700;
    color: var(--secondary-color);
}
.pricing-card ul li{
  font-size: 14px !important;
}
.content-card p, .content-card ul {
    font-size: 13px !important;
    color: #333;
}
.why-choose-list {
    background: #f8f9fa;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    display: flex
;
    padding: 15px 20px;
    margin-top: 20px;
    flex-direction: column;
    min-height: 475px;
    gap: 8px;
}
    .why-choose-item span {
        font-size: 13px;
        font-weight: 600;
        color: #333;
        line-height: 1.5;
        flex: 1;
    }
  .social-icons a {
    font-size: 18px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin-right: 8px;
    transition: background-color 0.3s ease;
  }
  .cousre-tile {
    font-size: 15px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
  }
  .benifits-box {
    padding: 22px;
  }

  .owl-theme .owl-nav {
    display: none !important;
  }
  .form-box {
    position: absolute;
    left: 10px;
    color: #000;
    background: #e6eaee;
    right: 10px;
  }
  .form-control {
    background: #ffffff !important;
  }
  .banner-content h1 {
    line-height: 28px;
    font-size: 20px;
  }
  .banner-content h6 {
    font-size: 26px;
    margin: 0;
  }
  .banner-content p {
    font-size: 12px;

    margin-top: 4px !important;
  }
  .banner-content h3 {
    font-size: 18px;
    margin: 0 !important;
    font-family: var(--font-body);
    color: var(--primary-color);
  }
  .ranking {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .logo img {
    width: 60px;
  }
  .banner {
    background: linear-gradient(to right, #00000096, #000000cc),
      url(../images/banner/avant-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    color: white;
  }
  .statistics-block {
    background: #e6eaee;
    display: flex
;
    align-items: center;
    border-radius: 10px;
    margin: 0 20px;
    padding: 30px 0;
}
  .global-impact-sect-home {
    margin-top: 478px;
  }
  .line-item {
    width: 50%;
    margin-bottom: 20px;
  }
  .line-item:nth-of-type(2) {
    border-right: none;
  }
  .line-item svg {
    width: 30px;
    height: 30px;
    vertical-align: middle;
  }
  .ranking-head h3 {
    margin-bottom: 6px;
    font-size: 20px;
  }
  .line-item p {
    padding-left: 10px;
    font-style: italic;
    font-size: 13px;
    font-family: var(--font-heading);
    margin: 0;
    font-weight: 500;
  }
  .our-course .nav-tabs .nav-link {
    width: 170px;
    font-size: 16px;
  }
  .our-course .nav-tabs {
    justify-content: center;
    gap: 14px;
  }
      .our-course {
        background: #042e55;
        padding: 20px 0;
    }
  .our-course h3 {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
  }
  .bgg-dark p {
        font-size: 15px !important;
    }
  .scholarship-item {
    margin-bottom: 50px;
    text-align: center;
  }
  .extra {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    padding: 74px 20px 0 !important;
  }
  .scholarship-sect {
    margin: 50px 12px 20px;
  }
  .advantage-item {
    min-height: 290px;
    text-align: start;
    border-radius: 5px;
    padding: 20px 20px;
    background: #f7f7f7;
  }
  .section-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: #3b3b3b;
    margin-bottom: 2rem;
  }
  .advantages .section-title {
    color: var(--secondary-color);
  }
  .testimonial-section {
    padding: 20px 0;
  }
  .advantages {
    padding: 0;
  }
  .scholarship-item {
    margin-bottom: 50px;
    text-align: center;
  }
  .section-padding {
    overflow: hidden;
    padding: 20px 0;
  }
  .section-padding.cta-section {
    padding: 15px 0 0 !important;
  }
  .cta-section .carer-hjead {
    font-size: 2rem;
    font-weight: 700;
    text-align: start;
  }
  .cta-section .sec-par {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  .apply-btn,
  .action-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .cta-section .carer-hjead {
    font-size: 20px !important;
    font-weight: 700;
    line-height: 22px !important;
    margin: 0;
    text-align: start;
  }
  .hospitality-section {
    padding: 25px 0 !important;
    background-color: #fff;
  }
  .hospitality-section h2 {
    font-size: 20px !important;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 10px;
  }
  .advantage-item h3 {
    font-size: 16px;
    font-weight: 600;
  }
  .content-card img {
    width: 100%;
    overflow: hidden;
    height: 250px !important;
    object-fit: cover;
  }
  .content-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
  }
  .content-card .card-body {
    padding: 20px 10px !important;
    background-color: #f8f9fa;
  }
  .content-card h3 {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px !important;
  }
  #curriculum h2 {
    text-align: center !important;
    font-size: 20px !important;
  }
  .btn-enroll {
    background-color: var(--primary-color) !important;
    color: #fff;
  }
  .curriculum img {
    display: none;
  }
  .cta-section .text-end {
    text-align: start !important;
  }
  .why-choose-section img {
    display: none;
    width: 100%;
    border-radius: 10px;
  }
  .why-choose-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    flex: 1;
  }
  .enroll-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .why-choose-section .carer-hjead {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 2rem;
    text-transform: capitalize;
  }
  .section-head h3 {
    font-size: 39px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--secondary-color);
  }
  .hero-section {
    padding: 95px 0 22px;
    text-align: start;
  }
  .cta-section p {
    font-size: 0.8rem;
  }
  .custom-heading {
        font-size: 19px !important;
        color: #ffffff;
        font-weight: bold;
        margin: 0;
    }
  .text-primary {
    color: var(--primary-color) !important;
  }
  .curriculum-card {
    background: #fff;

    padding: 10px 28px !important;
    margin: 0px;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  }
  .Course-overview h2 {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 20px !important;
  }
  .left-section {
    color: rgb(0, 0, 0);
    padding: 0 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .left-section h3 {
    font-size: 25px;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 0;
  }
      .custom-content {
        padding: 90px 20px 8px;
        text-align: start;
    }
    .breadcrumb-item{
      font-size: 14px !important;
      color: #ddd !important;
    }
  .custom-subtext {
    color: #ddd;
    font-size: 13px;
    margin-bottom: 0px;
  }
  .custom-hero-section {
    background-image: url(../images/banner/bghg.png);
    background-size: cover;
    background-position: center;
    height: 100%;
    position: relative;
    display: flex;
  }
  .Course-overview p {
    font-size: 0.8rem;
    color: #282828;
  }
  .section-head h3 {
    font-size: 20px !important;
    text-transform: capitalize;
    font-weight: 700;
  }
  .section-padding .section-title {
    font-size: 20px;
    text-align: center !important;
  }
  .section-padding .text-start {
    text-align: center !important;
  }
  .section-padding {
    overflow: hidden;
    padding: 20px 0 !important;
  }

  .learn-section p {
    text-align: start !important;
  }
  .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .why-choose-section h2 {
    text-align: center !important;
    margin-bottom: 10px !important;
  }
  .text-center.mb-5 {
    margin-bottom: 10px !important;
  }
  .learn-section {
    padding: 20px 0 !important;
  }
  .carrer h2 {
    font-size: 30px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
  }
  .learn-section h2 {
    margin-bottom: 10px !important;
  }
     .course-overview-section h2 {
        text-align: center !important;
        margin: 0 0 10px !important;
        font-size: 20px !important;
    }
  .feature-card {
    margin-bottom: 20px !important;
  }

  .detail h2 {
    font-size: 30px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
  }
      h2 {
        font-size: 20px !important;
        font-weight: 600 !important;
        margin-bottom: 10px !important;
    }
  .about-section {
    padding: 8px 0 !important;
    background: #fff;
  }
  .curriculum-section h2 {
    font-size: 25px !important;
  }
  .curriculum-section p {
    text-align: start !important;
  }
  .curriculum-section {
    background: linear-gradient(180deg, #fff, #e6f0ff);
    padding: 20px 0;
  }
  .Course-o img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  .Course-overview img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  .career-card {
    background: white;
    border-radius: 0 !important;
    width: 100% !important;
    margin-bottom: 20px !important;
    height: 100% !important;
    padding: 20px;
    text-align: center;
    transition: transform 0.5s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .why-choose-list {
    min-height: auto;
  }
}

@media (min-width: 770px) and (max-width: 992px) {
   
  .line-item p {
    padding-left: 10px;
    font-style: italic;
    font-size: 12px;
    font-family: var(--font-heading);
    margin: 0;
    font-weight: 700;
  }
  label {
    font-size: 11px;
    display: inline-block;
  }
  .form-label {
    font-size: 12px;
    margin-bottom: 0.5rem;
  }
  .form-box {
   color: #000;
    background: #e6eaee;
    padding: 10px;
    backdrop-filter: blur(10px);
    border-radius: 10px;
  }
  .banner-content p {
    font-size: 14px;
    font-family: var(--font-body);
    color: #cbcbcb;
    margin-top: 10px !important;
  }
  .banner-content h3 {
    font-size: 18px;
    margin: 0 !important;
    font-family: var(--font-body);
    color: var(--primary-color);
  }
  .banner-content h1 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 36px;
    font-style: italic;
    font-size: 29px;
    font-weight: 700;
  }
  .banner-content h6 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: #00ccff;
    text-transform: uppercase;
  }
  .text-div .enroll-know .primaryBtn {
    padding: 6px;
    width: 45%;
    justify-content: center;
    border: none;
    border-radius: 17px;
    font-size: 12px;
    background: #fe5722;
  }
  .why-choose-item i {
    font-size: 11px;
    color: #fff;
    margin-right: 20px;
    background: var(--secondary-color);
    display: flex;
    width: 31px;
    border-radius: 30px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .why-choose-item span {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    flex: 1;
  }
  .why-choose-section .carer-hjead {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 2rem;
    text-transform: capitalize;
  }
}




/* ================================= privacy policy page ==================================*/

.privacy-policy-hero{
  background-image: url("../images/banner/privacy-policy-banner.webp"); /* ← Replace with your image */
  background-size: cover;
  height: 100%;
  background-position: center;
  position: relative;
  display: flex;
}




.duration-fee h3{
  font-size: 16px !important;
}
.duration-fee strong{
  font-size: 16px !important;
}
.duration-fee h5{
  font-size: 16px !important;
}
