:root {
  --light: #ffffff;
  --peach-yellow: #ffe8a3;
  --pastel-blue: #6bb0ff;
  --beige: #f6edda;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  font-family: "Sacramento-del", Sans-serif;
}
a {
  text-decoration: none;
  color: var(--light);
}
textarea {
  resize: vertical;
}
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 80px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.fade-in-up {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: all 0.8s ease-out;
}
.fade-in-up.visible {
  animation: fadeInUp 0.8s ease-out forwards;
}
.fade-in-up[data-delay] {
  animation-delay: var(--delay, 0s);
}
@keyframes fadeInLeft {
  from {
    transform: translate3d(-80px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    transform: translate3d(80px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: all 0.8s ease-out;
}

/* Left Animation */
.fade-in-left {
  transform: translate3d(-40px, 0, 0);
}
.fade-in-left.visible {
  animation: fadeInLeft 0.8s ease-out forwards;
}
.fade-in-left[data-delay] {
  animation-delay: var(--delay, 0s);
}

/* Right Animation */
.fade-in-right {
  transform: translate3d(40px, 0, 0);
}
.fade-in-right.visible {
  animation: fadeInRight 0.8s ease-out forwards;
}
.fade-in-right[data-delay] {
  animation-delay: var(--delay, 0s);
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid rgba(190, 186, 186, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  height: 100px;
}
/* Fixed Book Now Button */
.book-now-fixed {
  position: fixed;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 9999;
  background-color: #27314e;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px 4px 0 0;
  box-shadow: -2px 2px 8px rgba(0,0,0,0.3);
  transition: right 0.3s ease, background-color 0.3s ease;
  white-space: nowrap;
}
.book-now-fixed:hover {
  right: -35px;
  background-color: #27314a;
  color: #fff;
}
.sticky-header {
  position: fixed;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}
.sticky-header .nav-item a {
  color: black !important;
}
.sticky-header .nav-item a:hover {
  color: #fff !important;
}
.sticky-header .menu-toggle {
  color: #000 !important;
}
#header-placeholder {
  height: 100px;
}
nav ul {
  list-style: none;
  display: flex;
  padding-left: 220px;
  color: var(--light);
  gap: 8px;
}
.nav-item a {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  padding: 7px 12px;
  transition: 0.2s ease;
}
.nav-item a:hover {
  background-color: #27314e;
  border-radius: 20px;
  padding: 7px 12px;
  color: #fff;
}
.nav-item a.active {
  background-color: #000;
  border-radius: 20px;
  padding: 7px 12px;
  color: #fff !important;
}
nav img {
  width: auto;
  height: 109px;
}
nav .rb {
  width: auto;
  height: 40px;
}
.secondary-header .menu-toggle {
  color: #000 !important;
}
.secondary-header .nav-item a {
  color: black !important;
}
.secondary-header .nav-item a:hover {
  background-color: #bdbfc1;
  color: black !important;
}
.secondary-header .nav-item a.active {
  background-color: #000000;
  border-radius: 20px;
  padding: 7px 12px;
  color: var(--light) !important;
}

.branding-img {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 32px;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  position: absolute;
  left: 15px;
  color: #fff;
  transition: 0.3s;
}
.menu-toggle.active i::before {
  content: "\f00d";
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  nav {
    padding: 0 20px;
    justify-content: space-between;
  }
  nav ul {
    display: flex !important;
    padding-left: 0;
  }

  .nav-item a {
    padding: 0;
    margin-right: 10px;
  }
  nav img {
    max-height: 80px;
  }
  nav .rb {
    max-height: 30px;
  }
  .secondary-header .nav-item a {
    padding: 0;
    margin-right: 10px;
  }
  .secondary-header nav img {
    max-height: 80px;
  }
  .secondary-header nav .rb {
    max-height: 30px;
  }
  nav.secondary-header.sticky-header {
    padding: 0 20px;
  }
  .EnqBtn {
    top: 30% !important;
    transform: translateY(-50%) !important;
  }
}
@media screen and (min-width: 1025px) {
  .menu-toggle {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 15px 20px;
    display: none;
    gap: 30px;
    z-index: 999;
  }

  nav ul.show {
    display: flex;
    font-family: "Jost";
  }

  .nav-item a {
    color: #000;
    font-size: 16px;
    padding: 10px;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
    color: #000;
  }

  .branding-img {
    padding-right: 0;
    padding-left: 50px;
    align-items: center;
    padding-top: 10px;
  }

  nav img {
    height: 80px;
  }

  nav .rb {
    height: 30px;
  }
}

@media (max-width: 480px) {
  nav .branding-img {
    padding-left: 50px;
    display: flex;
    align-items: center;
    padding-top: 15px;
  }
  nav .branding-img img {
    height: 70px;
  }
  .branding-img .rb {
    height: 25px;
  }
  .sticky-header .branding-img .rb {
    padding-left: 20px;
    height: 40px;
  }
  .nav-item a {
    color: #222;
    font-size: 18px;
    padding: 18px;
  }
}
/* ── Dropdown nav ── */
.has-dropdown { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 190px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  padding: 8px 0;
  z-index: 1100;
  list-style: none;
  flex-direction: column;
  gap: 0;
  border-top: 3px solid #27314e;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.dd-open .nav-dropdown { display: flex; }

.nav-item.has-dropdown .nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333 !important;
  white-space: nowrap;
  background: none !important;
  border-radius: 0 !important;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.nav-item.has-dropdown .nav-dropdown li a:hover {
  background: #27314e !important;
  color: #fff !important;
  padding-left: 26px;
}

.sticky-header .nav-item.has-dropdown .nav-dropdown li a,
.secondary-header .nav-item.has-dropdown .nav-dropdown li a {
  color: #333 !important;
  background: none !important;
}

.sticky-header .nav-item.has-dropdown .nav-dropdown li a:hover,
.secondary-header .nav-item.has-dropdown .nav-dropdown li a:hover {
  background: #27314e !important;
  color: #fff !important;
}

.dd-arrow {
  font-size: 9px;
  margin-left: 5px;
  transition: transform 0.2s;
  display: inline-block;
}

.has-dropdown:hover .dd-arrow,
.has-dropdown.dd-open .dd-arrow { transform: rotate(180deg); }

@media screen and (max-width: 1024px) {
  .has-dropdown { width: 100%; }

  .nav-dropdown {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #27314e;
    background: #f8f9fa;
    padding: 4px 0 4px 12px;
    margin-top: 6px;
  }

  .has-dropdown.dd-open .nav-dropdown { display: flex; }

  .nav-item.has-dropdown .nav-dropdown li a {
    padding: 8px 12px;
    font-size: 14px;
  }

  .nav-item.has-dropdown .nav-dropdown li a:hover { padding-left: 16px; }

  .has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* main page content */
.main {
  position: relative;
  width: 100%;
  min-height: 100vh;
}
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  z-index: 0;
  overflow: hidden;
}
.video-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
@media (min-aspect-ratio: 16/9) {
  .video-background iframe {
    height: 56.25vw;
  }
}
.hero-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  padding: 0px 20px;
  color: var(--light);
  font-family: "Sacramento-del", Sans-serif;
  z-index: 2;
}
.hero-content h2 {
  color: #ffffff;
  font-family: "Sacramento-del", Sans-serif;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: "Jost";
  font-size: 45px;
  color: #ffffff;
  line-height: 0.94em;
  letter-spacing: -2.2px;
  word-spacing: 0em;
  font-weight: 400;
  margin-bottom: 20px;
}
.hero-content p {
  color: #ffffffde;
  font-size: 23px;
  line-height: 1.4em;
  letter-spacing: 0px;
  font-family: "Jost";
  font-size: 23px;
  margin-bottom: 20px;
}
.btn-like {
  display: inline-block;
  font-size: 19px;
  font-weight: 500;
  text-transform: none;
  line-height: 2em;
  letter-spacing: -0.6px;
  word-spacing: 0.1em;
  color: #ffffff;
  background-color: #44444496;
  border: 1px solid #ffffff70;
  border-radius: 44px;
  box-shadow: 7px 16px 21px 0px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.5s,
    background-color 0.5s,
    color 0.5s;
  padding: 25px 50px;
}

.btn-like:hover {
  transform: scale(1.1);
  background-color: var(--peach-yellow);
  color: #000000;
}

.hero-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}
.hero-logos img {
  height: 40px;
  width: auto;
}
.u-shaped {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  bottom: 60px;
  z-index: 1;
}
.u-shaped svg {
  fill: #fff;
  width: calc(100% + 1.3px);
  height: 500px;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .u-shaped {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .main {
    min-height: 90vh;
  }
  .hero-content {
    padding: 0px 20px;
    width: 100%;
  }
  .hero-content h2 {
    font-size: 22px;
    line-height: 1em;
  }
  .hero-content h1 {
    font-size: 45px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .btn-like {
    margin-top: 30px;
    font-size: 16px;
    padding: 20px 30px;
  }
  .hero-logos {
    padding: 30px;
    justify-content: center;
    margin-top: 30px;
  }
  .hero-logos img {
    width: 80px;
  }
  .u-shaped {
    display: none;
  }
  .video-background {
    height: 78vh;
  }
  .video-background iframe {
    width: 177vh;
  }
}
@media (max-width: 410px) {
  .main {
    min-height: 100vh;
  }
  .hero-content {
    height: 75vh;
    padding-top: 20px;
  }
  .hero-content h2 {
    padding-top: 20px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .hero-content .btn-like {
    margin-top: 20px;
    font-size: 14px;
  }
  .hero-logos {
    padding: 0px;
    row-gap: 15px;
  }
  .hero-logos img {
    width: 70px;
  }
  .u-shaped {
    display: none;
  }
}
/* about-section */
.about {
  position: relative;
  display: flex;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 0px;
  background-color: var(--light);
  border-radius: 10px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 100px;
  column-gap: 50px;
  padding: 10px 20px;
}
.row > .about-1,
.about-2,
.about-3,
.about-4 {
  flex: 1;
  min-width: 520px;
}
/* Extra bottom space so the exp-year badge (bottom: -30px) is visible */
.about-2 {
  padding-bottom: 40px;
  overflow: visible;
}
.about-1 {
  padding-left: 50px;
}

.about-1 h2 {
  font-size: 34px;
  font-weight: 400;
}
.about-1 h1 {
  font-family: "Jost", sans-serif;
  line-height: 0.94em;
  letter-spacing: -4.7px;
  font-size: 60px;
  font-weight: 400;
}
.about-3 {
  padding: 0px 100px;
}

.about-img-container {
  width: 550px;
  height: 366px;
  position: relative;
}
.about img {
  height: auto;
  max-width: 100%;
  border-radius: 32px 32px 32px 32px;
  box-shadow: 34px -34px 0px 0px rgba(0, 0, 0, 0.05);
}
.about-3 p,
.about-4 p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  margin: 0 0 1em 0;
  color: #000;
}
.designation-company {
  font-size: 16px;
  font-weight: 400;
  line-height: 2em;
  color: #444 !important;
  letter-spacing: 0.3px;
  border-right: 3px solid #433d4e;
  padding-right: 14px;
  margin-top: 8px;
  display: inline-block;
  text-align: right;
}
.designation-company b {
  font-size: 16px;
  font-weight: 700;
  color: #433d4e !important;
  display: block;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.designation-company .company-name {
  font-size: 16px;
  font-weight: 400;
  color: #433d4e !important;
  font-style: italic;
  display: block;
  letter-spacing: 0.4px;
}
.about-4 {
  padding: 0px 100px;
}
.about-4 .title {
  color: #222;
  text-align: right;
  font-size: 36px;
}
.about-4 .title h4 {
  font-weight: 400 !important;
}
.exp-year {
  text-align: center;
  position: absolute;
  bottom: -30px;
  right: -20px;
  top: auto;
  left: auto;
  transform: none;
  margin: 0;
  padding: 30px;
  background-color: #433d4e;
  border-radius: 50px 50px 50px 50px;
  height: 150px;
  width: 146px;
  color: var(--light);
  z-index: 2;
}
.exp-year h1 {
  color: #ffffff;
  font-size: 54px;
  font-weight: 400;
  padding: 0px;
}
.exp-year h4 {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.5em;
  letter-spacing: 2px;
  padding: 0px;
}
@media (max-width: 480px) {
  .about .container {
    position: relative;
    padding: 10px;
  }
  .about .row {
    flex-direction: column;
    padding: 0px;
    row-gap: 55px;
  }
  .row > .about-1,
  .about-2,
  .about-3,
  .about-4 {
    min-width: 100%;
  }
  .about-1 {
    padding-left: 0px;
  }
  .about-1 h2 {
    font-size: 24px;
  }
  .about-1 h1 {
    letter-spacing: -2.3px;
    padding: 0px 36px 0px 0px;
  }

  .about-img-container {
    width: 372px;
    height: 235px;
    padding: 10px;
  }
  .about img {
    height: auto;
    width: 100%;
  }
  .exp-year {
    position: absolute;
    top: 43%;
    left: 43%;
    transform: translate(-43%, -43%);
    margin: 0;
    padding: 22px;
    height: max-content;
    width: min-content;
  }
  .exp-year h1 {
    font-size: 32px;
  }
  .exp-year h4 {
    font-size: 11px;
  }
  .about-3 {
    padding: 0px;
  }
  .about-3 p {
    padding-top: 0px;
  }
  .about-4 {
    padding: 0px;
  }
  .about .title {
    font-size: 28px;
    text-align: right;
  }
  .designation-company {
    text-align: right;
  }
}
/* third section */
.third-section {
  background-attachment: fixed;
  background-image: url("./images/index/2.jpg");
  background-blend-mode: multiply;
  background-position: center center;
  background-size: cover;
}

.background-overlay {
  display: flex;
  width: auto;
  height: 400px;
  margin: 0 auto;
  padding: 50px 0px;
  align-items: center;
  justify-content: center;
  background-color: rgba(24, 36, 28, 0.6);
  transition:
    background-color 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}
.counter-title-div {
  width: 285px;
  height: 150px;
  position: relative;
  flex-wrap: wrap;
  align-content: flex-start;
}
.counter-title-div .counter {
  font-size: 98px;
  font-family: "Oswald", Sans-serif;
  font-weight: 400;
  letter-spacing: -4px;
  color: var(--light);
  display: block;
}
.counter-title-div .counter-title {
  padding-left: 10px;
  font-size: 13px;
  font-family: "Jost", Sans-serif;
  color: var(--light);
}
.stroke {
  color: transparent !important;
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: var(--light);
  stroke: var(--light);
}
@media (max-width: 480px) {
  .background-overlay {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .counter-title-div {
    text-align: center;
    width: 48%;
    height: auto;
  }
  .counter-title-div .counter {
    font-size: 60px;
  }
  .counter-title-div .counter-title {
    font-weight: 800;
    font-size: 10px;
    padding-left: 0px;
    letter-spacing: 2px;
  }
}
/*  */
.overlay-content {
  position: relative;
  width: auto;
  height: 166px;
  margin-top: 0px;
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 10px 0px 30px 0px;
  background-color: transparent;
}
.overlay-content div {
  width: 100%;
  padding: 20px 20px;
}
.overlay-content div h2 {
  font-size: 34px;
  font-weight: 400;
}
.overlay-content div h1 {
  font-size: 45px;
  font-weight: 400;
  font-family: "Jost", "Sans-serif";
  line-height: 0.94em;
  letter-spacing: -4.7px;
  padding: 10px 250px 15px 250px;
}
.overlay-content div p {
  font-family: "Jost", "Sans serif";
  font-size: 16px;
  color: rgba(0, 0, 0, 0.35);
}

.card-section {
  display: flex;
  position: relative;
  width: 100%;
  background: url("./images/index/bgimgs/overlay-img.png");
  background-size: cover;
  background-position: center;
}
.card-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(189, 191, 193, 0.9);
  /* rgba(107, 176, 255, 0.79); */
}
.card-container {
  background-color: transparent;
  perspective: 1000px;
}
.card-section .row {
  row-gap: 50px;
  column-gap: 60px;
  justify-content: center;
}
.card-section .container {
  background-color: transparent;
}
.card {
  position: relative;
  height: 380px;
  width: 331px;
  border-radius: 10%;
  transition: 0.5s ease-in-out;
  transform-style: preserve-3d;
}
.card-container:hover .card {
  transform: rotateY(-180deg);
}

.card-inner {
  background-color: #ffffff;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  font-size: 20px;
  text-align: center;
  border-radius: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px;
  gap: 10px;
  perspective: 800px;
  transform-style: preserve-3d;
}

.card-inner .card-h3 h3 {
  color: #000;
  font-size: 23px;
  font-family: "Jost", Sans-serif;
  margin: 0px 0px 0px 0px;
  font-weight: 500;
  line-height: 1.3em;
}
.card-inner .card-p p {
  font-family: "Jost", Sans-serif;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.card-back {
  border-radius: 10%;
  background-color: rgba(30, 30, 30, 0.5);
  background-blend-mode: multiply;
  color: var(--light) !important;
  transform: rotateY(180deg);
  mix-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-back .card-h3 h3 {
  color: var(--light) !important;
}
.card-back .card-p p {
  color: var(--light);
  padding-top: 10px;
}
.book-session {
  padding-top: 30px;
}
.book-session a {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  align-self: center;
  padding: 14px 22px 14px 22px;
  margin: 10px 0px 0px 0px;
  color: var(--light);
  background-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #ffffffed;
  border-radius: 24px 24px 24px 24px;
  transition: 0.5s ease;
}
.book-session a:hover {
  background-color: var(--light);
  color: #000000;
}
@media (max-width: 480px) {
  .overlay-content {
    height: auto;
    flex-direction: column;
    padding: 0px;
    margin-bottom: 30px;
  }
  .overlay-content div {
    padding: 10px;
  }
  .overlay-content div h2 {
    font-size: 24px;
    font-weight: 400;
  }
  .overlay-content div h1 {
    letter-spacing: -2.3px;
    padding: 10px 20px 15px 20px;
  }

  .card-section {
    flex-direction: column;
    align-items: center;
    padding: 20px 0px;
  }
  .card-section .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    padding: 0px;
  }
  .card-container {
    margin-bottom: 30px;
  }
  .card {
    /* height: 300px; */
    width: 90vw;
  }
  .card-inner h3 {
    align-self: center;
    text-align: center;
    margin: 20px 0px;
    padding: 45px 7px 0px;
    font-weight: 500;
    line-height: 1.3em;
  }
}
/* testimonials */

.testimonials-section {
  overflow: hidden;
  background-color: transparent;
  background-image: linear-gradient(180deg, #bdbfc1 0%, #848688 100%);
  padding: 40px 0;
}

.testimonials-section .container {
  background-color: transparent;
  position: relative;
  max-width: 1300px; /* Added max-width for container */
  margin: 0 auto;
  padding: 0 20px; /* Added padding for mobile */
}

.testimonials-heading {
  position: relative;
  width: auto;
  height: auto; /* Changed from fixed height to auto */
  margin-top: 0px;
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 10px 0px 30px 0px;
  background-color: transparent;
}

.testimonials-heading div {
  width: 100%;
  padding: 20px 20px;
}

.testimonials-heading div h2 {
  font-size: 34px;
  font-weight: 400;
  text-transform: uppercase;
}

.testimonials-heading div h1 {
  font-size: 45px;
  font-weight: 400;
  font-family: "Jost", "Sans-serif";
  line-height: 1.2em; /* Improved line height */
  letter-spacing: -4.7px;
  padding: 10px 10%; /* Changed from fixed padding to percentage */
  text-transform: uppercase;
}

.testimonials-content div p {
  font-family: "Jost", "Sans serif";
  font-size: 16px;
  color: rgba(0, 0, 0, 0.35);
}

.testimonial-div {
  margin-top: 76px;
  margin-bottom: 40px; /* Added bottom margin */
  width: 100%;
  height: 100%;
  position: relative; /* Added for better positioning of arrows */
}

.slick-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.slick-track {
  display: flex;
  width: auto;
  transition: transform 0.5s ease;
  align-items: flex-end;
}

.testimonial-content {
  flex: 0 0 calc(33.333% - 27px); /* Adjusted for 3 items per view */
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-right: 40px;
  transition: all 0.3s ease; /* Added transition for smoother experience */
}

.testimonial-content:last-child {
  margin-right: 0;
}

.slick-arrows {
  position: absolute;
  top: 60%; /* Changed from 50% to 60% */
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 100;
  transform: translateY(-50%);
  padding: 0 10px; /* Added padding for mobile */
}

.slick-prev,
.slick-next {
  background: rgba(144, 143, 143, 0.1);
  border: none;
  color: #000;
  font-size: 18px;
  padding: 13px 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
  background: rgba(132, 130, 130, 0.15);
}

.tbody {
  font-family: "Jost";
  order: 4;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  background-color: #ffffff;
  padding: 28px 36px 28px 36px;
  margin: 0px 0px 38px 0px;
  border-radius: 16px 16px 16px 16px;
  box-shadow: 6px 7px 0px 0px rgba(25, 25, 25, 0.08);
  width: 100%; /* Changed from fixed width to 100% */
  max-width: 332px; /* Added max-width instead of fixed width */
  position: relative;
  color: #54595f;
}

.tbody::after {
  content: "";
  position: absolute;
  left: 70%;
  transform: translateX(-50%) rotate(-90deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 34px 0 34px;
  border-color: #ffffff transparent transparent transparent;
  bottom: -12px;
  display: block;
}

.tfigure {
  order: 5;
  border-radius: 24px 24px 24px 24px;
  box-shadow: 0px 8px 14px -5px rgba(0, 0, 0, 0.41);
  margin: 0px 0px 15px 0px;
  position: relative;
  overflow: hidden;
}

.tfigure img {
  width: 76px;
  height: 76px;
  max-width: 100%;
  object-fit: cover;
}

.tname {
  font-family: "Jost";
  position: relative;
  order: 5;
  align-self: center;
  text-align: center;
  color: #3a3a3a;
  font-size: 18px;
  font-weight: 400;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 10px 0px;
}

.tposition {
  order: 6;
  align-self: center;
  text-align: center;
  color: rgba(0, 0, 0, 0.35);
  font-size: 14px;
  font-weight: 500;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

.slick-dots {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 40px 0px 0px 0px;
  padding: 0; /* Added padding: 0 */
  align-items: center;
  gap: 20px;
}

.slick-dots li {
  background-color: rgba(0, 0, 0, 0.19);
  border-radius: 50%;
  cursor: pointer;
  width: 10px;
  height: 10px;
  padding: 0px; /* Changed from 0px 3px to 0px */
  overflow: hidden;
  transition: all 200ms linear;
}

.slick-dots li:hover {
  background-color: #000000;
}

.slick-dots li.active {
  border-radius: 50%;
  background-color: #000000;
  width: 15px;
  height: 15px;
}

@media screen and (max-width: 768px) {
  .testimonials-heading div h2 {
    font-size: 28px;
  }

  .testimonials-heading div h1 {
    font-size: 32px;
    letter-spacing: -2.5px;
    padding: 10px 5%;
  }

  .testimonial-content {
    flex: 0 0 calc(100% - 40px);
  }
}

@media (max-width: 480px) {
  .testimonials-heading {
    margin-bottom: 30px;
  }

  .testimonials-heading div {
    padding: 10px;
  }

  .testimonials-heading div h2 {
    font-size: 24px;
  }

  .testimonials-heading div h1 {
    font-size: 28px;
    letter-spacing: -2px;
    padding: 10px 0;
    line-height: 1.2;
  }

  .testimonial-div {
    margin-top: 40px;
  }

  .testimonial-content {
    flex: 0 0 100%; /* Full width on mobile */
    margin-right: 0;
  }

  .tbody {
    padding: 20px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .slick-arrows {
    top: 40%;
  }

  .slick-prev,
  .slick-next {
    padding: 8px 12px;
    font-size: 16px;
  }

  .slick-dots {
    gap: 12px;
    margin-top: 30px;
  }
}

/* process */
.process-section {
  background-image: linear-gradient(180deg, #848688 0%, #27314e 100%);
  padding: 9% 0% 0% 0%;
}
.process-section .container {
  background-color: transparent;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.col {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
}
.psc1 {
  position: relative;
  top: 120px;
}
.psc1 h2 {
  font-family: "Sacramento-del", Sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--light);
}
.psc1 h1 {
  font-family: "Jost";
  font-size: 45px;
  line-height: 1.2em;
  letter-spacing: -4.7px;
  font-weight: 400;
  color: var(--light);
}
.psc1 p {
  color: rgba(0, 0, 0, 0.35);
  font-size: 16px;
  font-family: "Jost";
  padding-top: 10px;
  color: var(--light);
}
.psc1 .motto {
  padding-top: 30px;
  color: #444444;
  color: var(--light);
}
.rts-card {
  /* background-color: #27314e; */
  background-color: #fff;
  /* background-image: linear-gradient(180deg, #27314e 0%, #fff 100%); */
  /* background-image: linear-gradient(180deg, #eaf2ec 0%, #d8fdc6 100%); */
  border-radius: 36px 36px 36px 36px;
  border-style: solid;
  border-width: 7px 7px 7px 7px;
  border-color: #01020126;
  box-shadow: 0px 55px 19px -46px rgba(0, 0, 0, 0.27);
  transition:
    background 0.3s,
    border 0.3s,
    border-radius 0.3s,
    box-shadow 0.3s;
  margin-top: 50px;
  padding: 10% 10% 10% 10%;
  text-align: center;
}
.rts-card h1 {
  padding: 0px;
  color: #24314e;
}
.rts-card p {
  /* color: #24314e; */
  color: #24314e;
  font-size: 17px;
}
.rts-card-btn {
  padding-top: 50px;
  padding-bottom: 10px;
}
.rts-card-btn span:hover {
  transform: scale(1.1);
}
.rts-card-btn span {
  display: inline-block;
  font-size: 24px;
  text-transform: none;
  letter-spacing: -0.7px;
  background-color: #24314e;
  border-radius: 36px 36px 36px 36px;
  padding: 25px 50px;
  color: #fff;
  transition: 0.3s ease;
}
.col.psc2 {
  position: relative;
}
.psc2 p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5em;
  font-family: "Jost";
}
.timeline-line {
  position: absolute;
  width: 4px;
  background-color: hsl(198, 19%, 89%);
  top: 50px;
  bottom: 50px;
  left: 9%;
  transform: translateX(-9%);
  z-index: 0;
  overflow: hidden;
}
.timeline-progress {
  width: 100%;
  height: 0%;
  background-color: #848688;
  transition: height 0.5s ease-out;
}
.timeline-step {
  font-family: "Jost";
  font-size: 20px;
  font-weight: 400;
  height: 76px;
  width: 76px;
  color: #000000;
  background-color: #eaf2ec;
  border-radius: 50%;
  min-width: 10px;
  min-height: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.timeline-step.active {
  border-color: #848688;
  background-color: #848688;
  color: #fff;
}
.timeline-content {
  padding: 30px 44px 30px 40px;
  border-radius: 16px 16px 16px 16px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #01010100;
  flex-grow: 1;
  order: 1;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}
.timeline-content.active {
  border-color: #848688;
}
.arrow {
  position: absolute;
  top: 50%;
  left: -11px;
  transform: translateY(-50%) rotate(45deg);
  background-color: #fff;
  width: 21px;
  height: 21px;
  border-right: none;
  border-top: none;
}
.arrow.active {
  /* border: 3px solid #7ac590; */
  border: 3px solid #848688;
  border-right: none;
  border-top: none;
}

.timeline {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: 516px;
  gap: 20px;
  align-items: center;
}
.timeline-content h5 {
  font-size: 22px;
  letter-spacing: -0.7px;
  margin-top: 0;
  font-weight: 500;
  font-family: "Jost";
  color: #222;
}
.timeline-content p {
  padding-top: 10px;
  color: rgba(0, 0, 0, 0.67);
}
.psc2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .process-section {
    padding: 0px;
  }
  .process-section .container {
    flex-direction: column-reverse;
    align-items: center;
  }
  .psc1 {
    top: 0;
    margin-bottom: 30px;
  }
  .psc1 h2 {
    font-size: 24px;
  }
  .psc1 h1 {
    line-height: 1.2em;
    letter-spacing: -2.3px;
  }
  .psc2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
  }
  .arrow {
    left: -11px;
  }
  .timeline {
    width: 100%;
    gap: 30px;
  }
  .timeline-line {
    top: 47px;
    bottom: 57px;
    left: 11%;
    transform: translateX(-11%);
  }
  .timeline-step {
    font-size: 16px;
    margin-bottom: 10px;
    width: 56px;
    height: 56px;
  }
  .timeline-content {
    padding: 26px;
    border: 3px solid transparent;
    box-shadow: none;
  }
  .timeline-content h5 {
    letter-spacing: -0.5px;
  }
  .timeline-content p {
    font-size: 15px;
    margin: 0;
  }
}

/* ===== FORM CSS START ===== */
/* form section */
.form-section {
  background-image: url("./images/index/bgimgs/6.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.form-div {
  display: flex;
  height: 70vh;
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(90deg, #27314e 0%, #00000000 100%);
  opacity: 1;
  transition:
    background-color 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}
.form-div .container {
  background-color: transparent;
  display: flex;
}
.col-form-content {
  align-content: center;
}
.col-form-content h2 {
  color: #7feae3;
  font-size: 34px;
  font-weight: 400;
}
.col-form-content h1 {
  font-size: 60px;
  font-family: "Jost";
  font-weight: 400;
  color: #f2ffcf;
  line-height: 0.94em;
  letter-spacing: -4.7px;
}

.session-price {
  font-size: 1.25rem;
  font-weight: 400;
  color: #7feae3;
  margin-top: 0.75rem;
  letter-spacing: -1.7px;
}

.session-note {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  font-weight: 400;
  /*letter-spacing: -0.7px;*/
  color: #f2ffcf;
  font-weight: 500;
}

.session-price,
.session-note {
  max-width: 520px;
  font-weight: 500;
}

/**/
.col-form {
  background-color: var(--light);
}
.cc-container {
  overflow-x: hidden;
  width: 100%;
}

.counselling-form-card {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.serviceTimeGroup .col {
  padding: 0px;
}

.cc-row {
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
}

.col-form .info-section,
.col-form .form-section {
  flex: 1;
  padding: 10px;
}

.info-section {
  /* background-color: rgba(246, 242, 227, 1); */
  background-color: rgba(39, 49, 78, 1);
  /* background-color: rgba(132, 134, 136, 1); */
  /* background-color: rgba(189, 191, 193, 1); */
}
.info-section h4,
p {
  color: #fff;
  font-size: 16px;
  font-family: "Jost";
  margin: 0px 0px 16px;
}
.form-part {
  padding-left: 10px;
}
.form-part h4 {
  font-size: 16px;
  font-family: "Jost";
  padding-top: 22px;
}
.form-part label {
  text-transform: uppercase;
  font-family: "Jost";
  font-size: 11px;
  letter-spacing: 1;
}

.form-part input {
  padding: 1em;
  font-size: 13px;
}
.form-part select {
  font-size: 12px;
  padding: 0.8em 1em;
}
.btn-custom {
  width: 100%;
}

.hidden {
  display: none;
}
.hidden-h1 {
  display: none;
}

.btn-custom:hover {
  background-color: rgba(75, 160, 100, 1);
}

.col-form select,
.col-form input {
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
}

.hidden {
  display: none;
}

.serviceTime {
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(95, 186, 122, 1);
  color: #ffffff;
  margin-bottom: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.serviceTime:hover {
  background-color: rgba(75, 160, 100, 1);
}

.serviceTime.active {
  background-color: rgba(45, 125, 75, 1);
}
@media (min-width: 768px) {
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
}

.mb-3 {
  margin-bottom: 1rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
@media screen and (max-width: 480px) {
  .form-div .container {
    flex-direction: column;
  }
  .col-form-content h2 {
    font-size: 24px;
  }
  .col-form-content h1 {
    font-size: 42px;
  }
  .form-div {
    height: auto;
    min-height: 100vh;
    padding: 20px;
  }
  .col-form {
    height: 100%;
    padding: 0px;
  }

  .cc-row {
    height: 50%;
    flex-direction: column;
  }
  /*.form-part {*/
  /*  overflow-x: hidden;*/
  /*}*/
  .form-control {
    width: 80%;
  }
}
/* ===== FORM CSS END ===== */
/* all - counselling */
.all-counselling-section {
  background-color: var(--beige);
  /* background-color: #bdbfc1; */
  /* background-color: #848688; */
  /* background-color: #27314e; */
}
.all-counselling-section .container {
  background-color: transparent;
}
.all-counselling-section .overlay-content {
  padding-top: 60px;
}

.all-counselling-section .overlay-content h2 {
  font-size: 34px;
  font-weight: 400;
  text-transform: capitalize;
}

.all-counselling-section .overlay-content h1 {
  font-size: 60px;
  font-family: "Jost";
  line-height: 0.94em;
  letter-spacing: -4.7px;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  height: 70%;
}
.carousel-container {
  position: relative;
  width: 90%;
  max-width: 70em;
  margin: 0 auto;
}
.carousel-button {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  background: #e2dbcc;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  border: none;
  border-radius: 25%;
  width: 52px;
  height: 52px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s;
}
.carousel-button:hover {
  opacity: 1;
}
.carousel-button.prev {
  left: -70px;
}
.carousel-button.next {
  right: -70px;
}
.carousel-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.wrapper {
  padding-top: 80px;
  display: flex;
  overflow: hidden;
  width: 100%;
}
.inner {
  transition: transform 0.5s ease-in-out;
}
.wrapper > .inner {
  display: flex;
  gap: 40px;
  transition: all 1s ease-in-out;
}
.counselling-card {
  border-radius: 20px;
  width: 350px;
  height: 318px;
  background-color: #fff;
}

.counselling-card > img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.counselling-card > .content {
  padding: 16px 32px 0px 32px;
}

.counselling-card > .content h4 {
  text-align: left;
  padding: 0px 0px 5px 0px;
  margin: 0px 0px 0px 0px;
  font-size: 22px;
  letter-spacing: -0.8px;
  font-weight: 400;
  font-family: "Jost";
  word-break: break-word;
}
.counselling-card > .content h4 a {
  color: black;
}

.map {
  margin-top: 2em;
  margin-bottom: 2em;
}

.map > button {
  all: unset;
  background: rgba(0, 0, 0, 0.1803921568627451);
  cursor: pointer;
  margin: 0 0.125em;
  position: relative;
  user-select: none;
  border-radius: 50%;
  height: 0.5em;
  width: 0.5em;
}

.map > button.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #001d38;
  border-radius: 50%;
  height: 0.5em;
  width: 0.5em;
}

.viewAll-div {
  position: relative;
  width: 28%;
  height: 81px;
  background-color: #222;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  left: 50%;
  transform: translate(-50%);
  margin-bottom: 60px;
}
.viewAll-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.5s cubic-bezier(0.5, 0.12, 0.46, 0.88);
  padding: 28px 38px 28px 38px;
  text-transform: uppercase;
  font-family: "Jost";
}

.viewAll-btn-1 {
  background: #50535d;
  z-index: 2;
}

.viewAll-btn-2 {
  background: #000000;
  opacity: 0;
  transform: translateY(100%);
  z-index: 1;
}

.viewAll-div:hover .viewAll-btn-1 {
  opacity: 0;
  transform: translateY(-100%);
}

.viewAll-div:hover .viewAll-btn-2 {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 480px) {
  .center {
    overflow: hidden;
  }
  .carousel-button {
    width: 46px;
    height: 46px;
  }
  .carousel-button.prev {
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
  }
  .carousel-button.next {
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
  }
  .all-counselling-section .overlay-content h2 {
    font-size: 24px;
  }
  .wrapper {
    padding: 0;
  }
  .wrapper > .inner {
    margin-left: 12px;
  }
  .viewAll-div {
    width: 60%;
  }
  .carousel-card {
    width: 320px;
  }
}
/* register section */
.register-section {
  background-attachment: fixed;
  background-image: url("./images/index/bgimgs/10.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
}
.register-background-overlay {
  display: flex;
  width: auto;
  height: 489px;
  margin: 0 auto;
  padding: 50px 0px;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-image: linear-gradient(180deg, #27314e 0%, #00000000 100%);
  opacity: 1;
  transition:
    background 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}
.register-background-overlay > .container {
  background-color: transparent;
}
.register-background-overlay h2 {
  color: #7feae3;
}

.register-background-overlay h1 {
  color: #f2ffcf;
}
.register-background-overlay p {
  padding: 0;
  margin: 0;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78) !important;
  margin-bottom: 50px !important;
}
.register-background-overlay .viewAll-div {
  margin-top: 20px !important;
}
.register-background-overlay .viewAll-btn-1 {
  background-color: #ffef9d;
}
.register-background-overlay .viewAll-btn-1 a {
  color: #000000;
}
@media screen and (max-width: 480px) {
  .register-background-overlay p {
    font-size: 15px;
  }
  .register-background-overlay .viewAll-div {
    width: 70%;
  }
}
/* career section */
.career-section {
  height: 100%;
}
.career-div .container .overlay-content h1 {
  padding: 10px 0px 15px !important;
}
.career-div .container .overlay-content {
  text-align: left;
}
.career-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.c-card {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
  min-width: 220px;
}
.c-card img {
  height: 255px;
  width: 255px;
  border-radius: 50%;
}

.c-card h4 {
  color: #222;
  text-align: center;
  font-weight: 400;
  font-family: "Jost";
  font-size: 22px;
  letter-spacing: -1px;
  transition: 0.5s;
}
.c-card h4:hover {
  cursor: pointer;
  color: #a96543;
}

/* Diverse College Section - Carousels */
.diverse-college-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.diverse-college-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.diverse-college-section .overlay-content {
  text-align: center;
  margin-bottom: 60px;
}

.diverse-college-section .overlay-content h2 {
  font-size: 18px;
  letter-spacing: 2px;
  color: #a96543;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.diverse-college-section .overlay-content h1 {
  font-size: 48px;
  font-weight: 400;
  font-family: "Jost";
  color: #222;
  margin-bottom: 15px;
  letter-spacing: -2px;
}

.diverse-college-section .overlay-content p {
  font-size: 18px;
  color: #666;
}

.diverse-carousel-wrapper {
  margin-bottom: 60px;
}

.carousel-section-title {
  font-size: 28px;
  font-weight: 600;
  font-family: "Jost";
  color: #222;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 1px;
}

.diverse-carousel-container {
  position: relative;
  padding: 0 60px;
}

.diverse-carousel {
  overflow: hidden;
  width: 100%;
}

.diverse-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.diverse-carousel-item {
  min-width: calc(25% - 15px);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.diverse-carousel-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.diverse-carousel-item img {
  width: 100%;
  height: 300px;
  /*object-fit: cover;*/
  display: block;
}

.diverse-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
}

.diverse-item-overlay h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  font-family: "Jost";
}

.diverse-carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.diverse-carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.diverse-carousel-button.prev {
  left: 0;
}

.diverse-carousel-button.next {
  right: 0;
}

/* Workshop Carousel - Image-Only Specific Styling */
.workshop-carousel-wrapper {
  margin-bottom: 60px;
}

.workshop-carousel-container {
  padding: 0 60px;
}

.workshop-carousel-item {
  min-width: calc(20% - 16px);
  border-radius: 10px;
}

.workshop-carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.workshop-carousel-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* NGO Single Image Styling */
.ngo-wrapper {
  margin-bottom: 60px;
}

.ngo-single-image {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ngo-single-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.ngo-single-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 1366px) {
  .diverse-carousel-item {
    min-width: calc(33.333% - 14px);
  }

  .diverse-carousel-item img {
    height: 280px;
  }

  .workshop-carousel-item {
    min-width: calc(25% - 15px);
  }

  .workshop-carousel-item img {
    height: 350px;
  }
}

@media screen and (max-width: 1024px) {
  .diverse-carousel-item {
    min-width: calc(33.333% - 14px);
  }

  .workshop-carousel-item {
    min-width: calc(33.333% - 14px);
  }

  .workshop-carousel-item img {
    height: 320px;
  }
}

@media screen and (max-width: 768px) {
  .diverse-carousel-item {
    min-width: calc(50% - 10px);
  }

  .diverse-carousel-container {
    padding: 0 50px;
  }

  .diverse-carousel-item img {
    height: 250px;
  }

  .carousel-section-title {
    font-size: 24px;
  }

  .diverse-college-section .overlay-content h1 {
    font-size: 36px;
  }

  .workshop-carousel-container {
    padding: 0 50px;
  }

  .workshop-carousel-item {
    min-width: calc(50% - 10px);
  }

  .workshop-carousel-item img {
    height: 280px;
  }

  .ngo-single-image {
    max-width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .diverse-carousel-item {
    min-width: 100%;
  }

  .diverse-carousel-container {
    padding: 0 40px;
  }

  .diverse-carousel-button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .carousel-section-title {
    font-size: 20px;
  }

  .diverse-college-section .overlay-content h1 {
    font-size: 28px;
  }

  .diverse-carousel-item img {
    height: 220px;
  }

  .workshop-carousel-container {
    padding: 0 40px;
  }

  .workshop-carousel-item {
    min-width: 100%;
  }

  .workshop-carousel-item img {
    height: 250px;
  }

  .ngo-single-image {
    max-width: 100%;
    width: 50%;
    margin-bottom: 20px;
  }
  .c-card img {
    width: 70%;
    height: 70%;
  }
  .c-card h4 {
    font-size: 18px;
  }
}
/* about-me.php */
/* journey */
.my-journey-section {
  /* background-color: #f2f0ea; */
  background-color: #bdbfc1;
}
.my-journey-div {
  display: flex;
}
.my-journey-div .container {
  background-color: transparent;
}
.my-journey-div h1 {
  line-height: 0.94em;
  letter-spacing: -4.7px;
  font-weight: 400;
  font-size: 60px;
  font-family: "Jost";
  padding-top: 20px;
  padding-bottom: 80px;
  text-align: center;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.journey-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  /* background-color: #cee2d3; */
  background-color: #fff;
  transform: translateX(-50%);
}

.journey-timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  /* background-color: #7ac590; */
  background-color: #848688;
  transform: translateX(-50%);
  height: 0;
  transition: height 0.1s ease;
}

.timeline-item {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 100px;
}

.journey-timeline-content {
  width: 45%;
  padding: 32px 46px 32px 42px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}
.journey-timeline-content.visible {
  border: 3px solid #848688;
}
.timeline-item:nth-child(odd) .journey-timeline-content {
  margin-right: auto;
  margin-left: 0;
  border: 3px solid #0101011f;
  background-color: var(--light);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
}
.timeline-item:nth-child(odd) .journey-timeline-content.visible {
  /* border: 3px solid #7ac590; */
  border: 3px solid #848688;
  /* background-color: #eaf2ec; */
}
.journey-timeline-content {
  border: 3px solid #0101011f;
  background-color: var(--light);
  margin-left: auto;
  margin-right: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
}

.timeline-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  transition: border-color 0.3s ease;
}

.timeline-item:nth-child(odd) .journey-timeline-content .timeline-arrow {
  right: -15px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #0101011f;
}

.timeline-item:nth-child(odd)
  .journey-timeline-content
  .timeline-arrow.active-arrow {
  /* border-left: 15px solid #7ac590; */
  border-left: 15px solid #848688;
}

.timeline-item:nth-child(even) .journey-timeline-content .timeline-arrow {
  left: -15px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #0101011f;
}
.timeline-item:nth-child(even)
  .journey-timeline-content
  .timeline-arrow.active-arrow {
  /* border-right: 15px solid #7ac590; */
  border-right: 15px solid #848688;
}

.timeline-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* background-color: #d1e7d9; */
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
  z-index: 2;
}
.timeline-marker.active-marker {
  /* background-color: #7ac590; */
  background-color: #848688;
  color: var(--light);
}
.timeline-title {
  font-family: "Jost";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.timeline-item:nth-child(odd) .timeline-title {
  font-family: "Jost";
  font-weight: 400;
  margin-right: -300px;
}

.timeline-item:nth-child(even) .timeline-title {
  font-family: "Jost";
  font-weight: 400;
  margin-left: -300px;
}

.timeline-text {
  color: #000000ab;
  font-family: "Jost";
  font-size: 16px;
  line-height: 1.5em;
  text-align: justify;
}
@media screen and (max-width: 480px) {
  .my-journey-div h1 {
    letter-spacing: -2.3px;
  }
  .timeline-container {
    padding-left: 80px;
    overflow-x: hidden;
  }
  .journey-timeline-line,
  .journey-timeline-progress {
    left: 13%;
    transform: none;
  }
  .timeline-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 40px;
    justify-content: normal;
    flex-wrap: wrap;
  }
  .timeline-marker {
    position: absolute;
    left: -16%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    height: 58px;
    width: 58px;
  }
  .journey-timeline-content {
    width: 80%;
    margin: 30px 0 0 40px !important;
    padding: 10px;
    border: none;
    box-shadow: none;
  }
  .timeline-item:nth-child(odd) .journey-timeline-content {
    position: relative;
    padding-top: 30px; /* space for title */
  }
  .timeline-title {
    position: relative;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    text-transform: uppercase;
    left: 27%;
    right: 0;
    transform: translateX(-27%);
  }
  .timeline-item:nth-child(odd) .timeline-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 10%;
    margin-bottom: 0;
    font-size: 16px;
    text-transform: uppercase;
    z-index: 1;
    transform: translateX(10%);
  }
  .timeline-item:nth-child(odd) .journey-timeline-content .timeline-arrow {
    right: 0;
    left: -15px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: none;
    border-right: 15px solid #0101011f;
  }
  .timeline-item:nth-child(odd)
    .journey-timeline-content
    .timeline-arrow.active-arrow {
    border-right: 15px solid #848688;
    border-left: none;
  }
}

/* session section  */
.session-planning {
  height: 100%;
}
.session-planning-div h1 {
  font-family: "Jost";
  font-size: 60px;
  text-align: center;
  line-height: 0.94em;
  letter-spacing: -4.7px;
  font-weight: 400;
  padding-top: 100px;
}

.session-planning-div .container {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.sp-content-1 {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cl {
  padding-top: 30px;
  width: 220px;
  height: 214px;
}

.sp-content-1 span {
  padding-top: 20px;
  font-family: "Jost";
  font-size: 20px;
  color: #000000;
  font-weight: 500;
}

.sp-content-1 p {
  font-family: "Jost";
  font-size: 16px;
  color: #a0a0a0;
  text-align: left;
  padding-bottom: 50px;
}

.sp-content-2 {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.sp-content-2 span {
  padding-top: 20px;
  font-family: "Jost";
  font-size: 20px;
  color: #000000;
  font-weight: 500;
}

.sp-content-2 p {
  font-family: "Jost";
  font-size: 16px;
  color: #a0a0a0;
  text-align: left;
  padding-bottom: 50px;
}

.session-planning-div .container > img {
  border-radius: 50%;
  height: 540px;
  width: 540px;
}

.cl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cl img {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 480px) {
  .session-planning-div .container {
    flex-direction: column;
    align-items: center;
  }
  .session-planning-div .container > img {
    width: 80%;
    height: 80%;
  }
}

/* tiles section */
.tiles-section {
  background-attachment: fixed;
  background-image: url("./images/aboutme/bgimgs/55.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
}
.tiles-background-overlay {
  display: flex;
  width: auto;
  margin: 0 auto;
  padding: 50px 0px;
  justify-content: center;
  background-color: rgba(68, 71, 69, 0.6);
  opacity: 1;
  transition:
    background 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}
.tiles-background-overlay > .container {
  background-color: transparent;
}
.tiles-background-overlay .container h1 {
  font-family: "Jost";
  font-size: 60px;
  color: var(--light);
  font-weight: 400;
  line-height: 0.94em;
  letter-spacing: -4.7px;
  text-align: center;
  padding-bottom: 80px;
}

.single-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 0px;
  padding: 0px 100px 0px 100px;
}
.single-row-padding {
  border-style: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #ffffff;
  transition:
    background 0.3s,
    border 0.3s,
    border-radius 0.3s,
    box-shadow 0.3s;
}
.single-row .item-1,
.item-2,
.item-3 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 80px 50px 80px 50px;
}
.single-row .item-1 h6,
.item-2 h6,
.item-3 h6 {
  font-family: "Jost";
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  margin: 0px 0px 16px;
}
.single-row .item-1 p,
.item-2 p,
.item-3 p {
  color: #ffffffc2;
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost";
  text-align: center;
}

.single-row .item-1 img,
.item-2 img,
.item-3 img {
  margin: 0px;
  padding: 0px;
  height: 112px;
  width: 112px;
  transition: 0.3s;
  max-width: 65%;
}

.single-row .item-1 img:hover,
.item-2 img:hover,
.item-3 img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 480px) {
  .single-row {
    flex-direction: column;
    padding: 0px 20px;
  }
  .single-row-padding {
    padding: 74px;
  }
  .single-row .item-1,
  .item-2,
  .item-3 {
    padding: 50px;
  }
}
/* manage mind  */
.about-me-4 .manage-mind {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}
.about-me-4 .manage-mind h1 {
  line-height: 0.94em;
  letter-spacing: -4.7px;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 50px;
  font-family: "Jost";
  margin-bottom: 20px;
}

.about-me-4 .manage-mind div {
  display: flex;
  flex-direction: column;
  width: 684px;
  align-content: center;
  flex-wrap: wrap;
  padding-bottom: 100px;
}
.about-me-4 .manage-mind div h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  font-family: "Jost";
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 15px;
  border-width: 1px;
  border-color: #b69c9c29;
  padding: 30px 30px 30px 30px;
  cursor: pointer;
  outline: none;
  width: 100%;
}
.about-me-4 .manage-mind div svg {
  margin-inline-start: -5px;
  width: 1em;
  height: 1em;
}

.about-me-4 .manage-mind div a {
  color: #000000;
  font-size: 22px;
}

.about-me-4 .challenges {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}

.about-me-4 .challenges h1 {
  line-height: 0.94em;
  letter-spacing: -4.7px;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 60px;
  font-family: "Jost";
  margin-bottom: 20px;
}
.about-me-4 .challenges div {
  display: flex;
  padding: 15px;
  width: 1140px;
}
.about-me-4 .challenges div .challenges-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 25px;
  gap: 20px;
}
.about-me-4 .challenges div h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Jost";
  color: #000000;
  font-weight: 600;
}

.about-me-4 .challenges div p {
  font-size: 16px;
  font-family: "Jost";
  margin: 0px 0px 16px;
  color: #939393;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .about-me-4 .manage-mind h1 {
    letter-spacing: -2.3px;
    text-align: center;
  }
  .about-me-4 .manage-mind div {
    width: 100vw;
  }
  .about-me-4 .manage-mind div a {
    font-size: 16px;
  }
  .about-me-4 .challenges h1 {
    letter-spacing: -2.3px;
    text-align: center;
  }
  .about-me-4 .challenges div {
    flex-direction: column;
    width: 100%;
  }
}
/* self growth */
.self-growth-section {
  background-attachment: fixed;
  background-image: url("./images/aboutme/bgimgs/56.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
}
.self-growth-background-overlay {
  display: flex;
  width: auto;
  margin: 0 auto;
  padding: 50px 0px;
  justify-content: center;
  background-color: rgba(51, 53, 50, 0.6);
  transition:
    background 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}
.self-growth-background-overlay > .container {
  background-color: transparent;
}

.self-growth-section .sessions {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}

.self-growth-section .sessions h1 {
  line-height: 0.94em;
  letter-spacing: -4.7px;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 60px;
  font-family: "Jost";
  margin-bottom: 20px;
  color: var(--light);
}
.self-growth-section .sessions div {
  display: flex;
  padding: 15px;
  width: 1140px;
}
.self-growth-section .sessions div .session-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 25px;
  gap: 20px;
}
.self-growth-section .sessions div h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Jost";
  color: var(--light);
  font-weight: 600;
}

.self-growth-section .sessions div p {
  font-size: 16px;
  font-family: "Jost";
  margin: 0px 0px 16px;
  color: #ffffffc2;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .self-growth-section .sessions h1 {
    line-height: 1em;
    letter-spacing: -1.3px;
    text-align: center;
  }
  .self-growth-section .sessions div {
    flex-direction: column;
    width: 100%;
  }
}
/* issues section */

.issues-section .issues {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 80px;
}

.issues-section .issues h1 {
  line-height: 0.94em;
  letter-spacing: -4.7px;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 60px;
  font-family: "Jost";
  margin-bottom: 20px;
  color: #222222;
  font-weight: 400;
  text-align: center;
}
.issues-section .issues div {
  display: flex;
  padding: 15px;
  width: 1140px;
  gap: 10px;
  padding-bottom: 100px;
}
.issues-section .issues div .issue-col:hover {
  border: 1px solid #4473ff;
}
.issues-section .issues div .issue-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 25px;
  gap: 20px;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
  height: auto;
  margin: 15px;
  padding: 55px 15px 55px 15px;
}
.issues-section .issues div h3 {
  text-transform: capitalize;
  font-size: 20px;
  font-family: "Jost";
  color: #000000;
  font-weight: 500;
  margin: 0px 0px 0px 10px;
}

.issues-section .issues div p {
  font-size: 16px;
  font-family: "Jost";
  margin: 0px 0px 16px;
  color: #a3a3a3;
  text-align: center;
}

.issues-section .issues div img {
  width: 64px;
  height: 64px;
  transition: 0.3s;
}
.issues-section .issues div img:hover {
  transform: scale(1.1);
}

.issues-section .spacer-bgimg {
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 307px;
  background-image: url("./images/aboutme/bgimgs/57.jpg");
}

.issues-section .issues .couns {
  padding-bottom: 0px !important;
}
.issues-section .issues .couns .coun-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 20px;
  height: auto;
  margin: 15px;
  padding: 55px 15px 55px 15px;
}
.issues-section .issues .couns h3 {
  text-transform: capitalize;
  font-size: 20px;
  font-family: "Jost";
  color: #000000;
  font-weight: 500;
  margin: 0px 0px 0px 10px;
}

.issues-section .issues .couns p {
  font-size: 16px;
  font-family: "Jost";
  margin: 0px 0px 16px;
  color: #a3a3a3;
  text-align: center;
}

.issues-section .issues .couns img {
  width: 64px;
  height: 64px;
  transition: 0.3s;
}
.issues-section .issues .couns img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 480px) {
  .issues-section .issues h1 {
    line-height: 1em;
    letter-spacing: -1.3px;
    text-align: center;
  }
  .issues-section .issues div {
    flex-direction: column;
    width: 100%;
    padding: 10px;
  }
  .issues-section .issues div .issue-col {
    padding: 40px 15px;
    margin: 0px;
  }
  .issues-section .spacer-bgimg {
    background-attachment: local;
    background-position: center center;
    height: 250px;
    width: 90vw;
  }
  .issues-section .issues .couns .coun-col {
    margin: 0;
    padding: 30px 15px;
  }
}
/* counselling.php */
.counselling-section {
  background: #f8f9fa;
}
.counselling-page-head {
  text-align: center;
  padding: 70px 20px 0;
  max-width: 680px;
  margin: 0 auto;
}
.counselling-page-head h2 {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #27314e;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.counselling-page-head h1 {
  font-family: "Jost", sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: #222;
  letter-spacing: -1.8px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.counselling-page-head p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}
.counselling-div .container .counselling-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding-top: 44px;
  padding-bottom: 80px;
}
.counselling-div .container .card-counselling {
  flex: 1 1 calc(33.33% - 16px);
  max-width: calc(33.33% - 24px);
  background: #fff;
  word-wrap: break-word;
  border: none;
  border-top: 3px solid #27314e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.counselling-div .container .card-counselling:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.13);
}
.img-counselling {
  width: 100%;
  height: 195px;
  overflow: hidden;
}
.img-counselling img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}
.counselling-div .container .card-counselling:hover .img-counselling img {
  transform: scale(1.06);
}
.card-title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  padding: 16px 18px 12px;
  min-height: 72px;
}
.card-title h3 {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: #27314e;
  line-height: 1.55;
  font-weight: 400;
}
.card-footer {
  border-top: 1px solid #f0f0f0;
  padding: 14px 18px;
  background: #f8f9fa;
  text-align: center;
}
.cfooter-btn {
  color: #27314e;
  border: 1px solid #27314e;
  border-radius: 25px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 8px 14px;
  display: flex;
  justify-content: center;
  width: 100%;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  transition:
    background 0.3s,
    color 0.3s;
}
.cfooter-btn:hover {
  background: #27314e;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .counselling-div .container .card-counselling {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media screen and (max-width: 480px) {
  .counselling-page-head h1 {
    font-size: 28px;
  }
  .counselling-div .container .counselling-flex {
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 50px;
  }
  .counselling-div .container .card-counselling {
    flex: 1;
    max-width: 95%;
  }
}
/* workshop.php */
.workshop-page-header {
  height: 505px;
  display: flex;
  background: linear-gradient(135deg, rgba(39, 49, 78,0.2), rgba(39, 49, 78,0.2)),
  url("./images/workshop/banner1.jpeg") no-repeat center center;
  background-size: cover;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.workshop-page-header-inner {
  /* max-width: 700px;
  margin: 0 auto; */
}

.workshop-page-header-inner h2 {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.workshop-page-header-inner h1 {
  font-family: "Jost", sans-serif;
  font-size: 76px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -1.8px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.workshop-page-header-inner h1 span {
  display: inline-block;
}
.workshop-page-header-inner h1 span[data-delay] {
  --delay: attr(data-delay);
  animation-delay: var(--delay, 0s);
}
.workshop-page-header-inner p {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.workshop-page .college-section-head {
  padding-top: 60px;
}
.workshop-page-alt {
  background: #fff;
  padding-bottom: 0 !important;
}

.workshop-grid-container {
  padding: 0 24px 60px;
  max-width: 1380px;
  margin: 0 auto;
}
.workshop-grid-container .main-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 20px;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .workshop-grid-container .main-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .workshop-page-header-inner h1 {
    font-size: 28px;
  }
  .workshop-grid-container .main-content {
    grid-template-columns: 1fr;
  }
}

/* school.php */
.background-carousel {
  position: relative;
  overflow: hidden;
  height: 80%;
}
.container-carousel {
  position: relative;
  width: 100%;
}
.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.carousel-slides {
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  width: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition:
    transform 0.7s ease-in-out,
    opacity 0.7s ease-in-out;
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
}
.bg-prev {
  left: 10px;
}

.bg-next {
  right: 10px;
}
.container-carousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 40, 0.45);
  z-index: 5;
}
.background-carousel .carousel-title {
  position: relative;
  width: 60%;
  top: auto;
  bottom: 30%;
  left: 50%;
  transform: translate(-50%);
  right: 0;
  margin: 0px;
  z-index: 10;
  transition: 0.5s;
}
.background-carousel .carousel-title h2 {
  color: var(--light);
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 47px;
  font-family: "Poppins";
  font-weight: 700;
}

.schools .container {
  display: flex;
  justify-content: space-between;
}
.main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* width: calc(100% - 250px); */
  justify-content: center;
  padding-top: 50px;
  min-width: auto;
}
.main-item {
  display: flex;
  flex-direction: column;
  /* width: calc(50% - 110px); */
  border-radius: 8px;
  align-content: center;
  text-align: center;
}
.main-item .mc-img {
  width: 381px;
  height: 250px;
}
.main-item .mc-img img {
  width: 100%;
  height: auto;
}
.main-item .mc-title {
  padding: 1.8em 1.2em;
}
.main-item .mc-title h2 {
  font-family: "Jost";
  font-size: 26px;
  font-weight: 400;
}

.sidebar {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 20px;
  width: 330px;
  background: white;
  padding: 15px;
  gap: 20px;
  height: fit-content;
  align-content: center;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  row-gap: 50px;
}
.sidebar-item a img {
  width: 130px;
}
.sidebar-item span {
  flex: 1;
  padding: 0px;
}
.sidebar-item a {
  text-transform: capitalize;
  font-family: "Jost";
  font-size: 16px;
  color: gray;
  transition: 0.3s;
}
.sidebar-item a:hover {
  color: #000;
}

.sidebar-item img {
  width: 100%;
}
.sidebar .sidebar-btn {
  text-transform: uppercase;
  background-color: #27314e;
  font-family: "Jost";
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
}
.sidebar .full-img {
  margin: 0 0 4.4em 0;
  width: 280px;
  height: 280px;
}
.full-img img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .background-carousel {
    height: auto;
  }
  .carousel-slides {
    height: 50%;
  }
  .background-carousel .carousel-title h2 {
    font-size: 13px;
  }
  .background-carousel .carousel-title {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 20;
  }
  .schools .container {
    flex-direction: column;
  }
  .main-content {
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
  }
  .main-item {
    width: 90%;
  }
  .main-item .mc-title {
    padding: 27px 18px;
    text-align: center;
  }
  .main-item .mc-title h2 {
    font-size: 21px;
  }
  .main-item .mc-item {
    width: 100%;
  }
  .main-item .mc-img {
    width: 100%;
  }
  .sidebar {
    position: relative;
    width: 100%;
    padding: 100px 20px;
  }
  .sidebar-item a img {
    width: 90%;
  }
  .sidebar-item a {
    color: #222;
  }
  .sidebar .sidebar-btn {
    width: 100%;
  }
  .sidebar .full-img {
    width: 100%;
  }
}
/* college.php */
.background-carousel {
  position: relative;
  overflow: hidden;
  height: 80%;
}
.container-carousel {
  position: relative;
  width: 100%;
}
.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.carousel-slides {
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  width: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition:
    transform 0.7s ease-in-out,
    opacity 0.7s ease-in-out;
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
}
.bg-prev {
  left: 10px;
}

.bg-next {
  right: 10px;
}
.container-carousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 40, 0.45);
  z-index: 5;
}
.background-carousel .carousel-title {
  position: relative;
  width: 60%;
  top: auto;
  bottom: 30%;
  left: 50%;
  transform: translate(-50%);
  right: 0;
  margin: 0px;
  z-index: 10;
  transition: 0.5s;
}
.background-carousel .carousel-title h2 {
  color: var(--light);
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 47px;
  font-family: "Poppins";
  font-weight: 700;
}

/* Section heading for college / school listing pages */
.college {
  background: #f8f9fa;
  padding-bottom: 60px;
}
.college-section-head {
  text-align: center;
  padding: 56px 20px 36px;
  max-width: 680px;
  margin: 0 auto;
}
.college-section-head h2 {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #27314e;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.college-section-head h1 {
  font-family: "Jost", sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: #222;
  letter-spacing: -1.8px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.college-section-head p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}
.college .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
  padding: 0 24px 60px;
  max-width: 1380px;
  margin: 0 auto;
}
.college .main-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.college .main-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.07);
  border-top: 3px solid #27314e;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.college .main-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.13);
}
.college .main-item .mc-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.college .main-item .mc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.45s ease;
  display: block;
}
.college .main-item:hover .mc-img img {
  transform: scale(1.07);
}
.college .main-item .mc-title {
  padding: 14px 16px 18px;
  flex: 1;
}
.college .main-item .mc-title h2 {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #27314e;
  line-height: 1.55;
}
.college .sidebar {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 24px;
  gap: 12px;
  height: fit-content;
}
.college .sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}
.college .sidebar-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.college .sidebar-item a img {
  width: 76px;
  height: 56px;
  object-fit: cover;
  border-radius: 7px;
  flex-shrink: 0;
}
.college .sidebar-item a {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  text-transform: capitalize;
  transition: color 0.3s;
}
.college .sidebar-item a:hover {
  color: #27314e;
}
.college .sidebar .sidebar-btn {
  display: block;
  text-align: center;
  background: #27314e;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 20px;
  border-radius: 30px;
  transition: background 0.3s ease;
}
.college .sidebar .sidebar-btn:hover {
  background: #3a4666;
}
.college .sidebar .full-img {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 4px;
}
.college .sidebar .full-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 1100px) {
  .college .main-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .college .container {
    grid-template-columns: 1fr;
    padding: 0 16px 40px;
  }
  .college .sidebar {
    position: relative;
    top: auto;
  }
}
@media screen and (max-width: 480px) {
  .college-section-head h1 {
    font-size: 28px;
  }
  .college .container {
    padding: 0 12px 30px;
    gap: 20px;
  }
  .college .main-content {
    grid-template-columns: 1fr;
  }
  .background-carousel {
    height: auto;
  }
  .carousel-slides {
    height: 50%;
  }
  .background-carousel .carousel-title h2 {
    font-size: 13px;
  }
  .background-carousel .carousel-title {
    width: 80%;
  }
}

/* contact.php */
.contact-section {
  width: 100%;
  background-image: url("./images/contact/68.jpg");
  background-attachment: fixed;
  background-blend-mode: multiply;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-div {
  background-color: rgba(44, 45, 51, 0.2);
}
.contact-div .container {
  display: flex;
  background-color: transparent;
}
.contact-div .contact-form-div {
  margin-left: auto;
  margin-right: auto;
  width: 720px;
  background-color: #f7f3e8;
  padding: 86px 86px 43px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: auto;
}
.contact-content {
  display: flex;
  gap: 30px;
}
.contact-form-div .rttc {
  font-size: 36px;
  font-weight: 400;
  color: #444;
  margin: 0px;
}
.contact-form {
  padding-top: 30px;
}
.contact-form-div h1 {
  font-size: 90px;
  font-family: "Jost";
  line-height: 0.94em;
  letter-spacing: -4.7px;
  font-weight: 400;
  text-transform: capitalize;
}
.contact-form-div p {
  font-family: "Jost";
  font-size: 16px;
  margin: 0 0 1em 0;
  line-height: 1.9em;
  color: #000;
}
.contact-form h3 {
  color: #444444;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: 20px;
  font-family: "Jost";
  text-transform: capitalize;
}
.contact-form label {
  display: block;
  margin-bottom: 6.6px;
  font-family: "Jost";
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}
.contact-form input {
  padding: 1em;
  width: 100%;
  font-size: 13px;
  color: inherit;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  box-shadow: none;
}
.contact-form p {
  padding-top: 10px;
}
.contact-form textarea {
  padding: 1em;
  width: 100%;
  font-size: 13px;
  color: inherit;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  box-shadow: none;
}

.contact-form button {
  display: inline-block;
  position: relative;
  padding: 14px 26px;
  margin-bottom: 0.25em;
  outline: 0;
  border: 2px solid currentColor;
  color: inherit;
  text-shadow: none;
  background: none;
  border-radius: 0;
  cursor: pointer;
}
.contact-form button:hover {
  color: #89a2c5;
}
@media screen and (max-width: 480px) {
  .contact-section {
    background-attachment: scroll;
    background-position: top center;
    background-size: contain;
  }
  .contact-div .contact-form-div {
    width: 100%;
    padding: 30px;
  }
  .contact-div .container {
    padding-top: 100px;
  }
  .contact-content {
    flex-direction: column;
  }
  .contact-form-div .rttc {
    font-size: 26px;
  }
  .contact-form-div h1 {
    font-size: 42px;
    letter-spacing: -2.3px;
    padding-bottom: 20px;
  }
}
/* footer.php*/
.footer-container {
  display: flex;
  gap: 20px;
  background-color: #bdbfc1;
  padding: 70px 0px 0px;
  align-content: center;
}

.column {
  flex: 1;
  padding: 20px;
  align-content: center;
}
.c1 {
  padding-left: 180px;
  margin-bottom: 100px;
}
.column h2 {
  font-size: 34px;
  font-weight: 400;
  padding: 20px 0px;
  color: #222222;
}
h2:last-of-type {
  padding-bottom: 0;
}
.column h1 {
  font-size: 45px;
  line-height: 0.94em;
  letter-spacing: -4.7px;
  font-family: "Jost";
  font-weight: 400;
  color: #222222;
}
.column p {
  color: rgba(0, 0, 0, 0.63);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  margin-top: 10px;
}
.column input {
  padding: 20px 24px 20px 24px;
  margin: 40px 0px 0px 0px;
  border-radius: 12px 12px 12px 12px;
  background-color: #ffffff;
  color: #8f96aa;
  font-size: 17px;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  width: 60%;
}
.sub-btn {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #27314e;
  color: #ffffff;
  padding: 30px 40px 30px 40px;
  margin: -9px 0px 0px -24px;
  border-radius: 44px 44px 44px 44px;
  flex: 0 1 auto;
  width: auto;
  transition: 0.3s ease;
  cursor: pointer;
}
.sub-btn:hover {
  background-color: #171410;
}
.footer-notbtn {
  font-size: 16px;
  font-family: "Jost";
  background-color: var(--light);
  margin: 0px 0px 4px;
  padding: 12px 24px;
  border-radius: 12px 12px 12px 12px;
  display: inline-block;
  color: #222222;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links .fa-brands {
  font-size: 28px;
  color: #27314e;
  transition: 0.3s ease-in-out;
}
.fa-brands.fa-facebook-f:hover {
  color: #0866ff;
}
.fa-brands.fa-linkedin-in:hover {
  color: #0a66c2;
}
.fa-brands.fa-twitter:hover {
  color: #1da1f2;
}
.fa-brands.fa-youtube:hover,
.fa-brands.fa-instagram:hover {
  color: red;
}
.copyright-div {
  font-family: "Jost";
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  padding: 22px 0px;
  letter-spacing: 1px;
  font-weight: 400;
}
.copyright-div p {
  color: #444;
}

.column img {
  max-width: 410px;
}
.col-sm-1 {
  padding-left: 0px;
  padding-right: 0px;
  width: 8.3%;
}
.multi-img-div {
  display: flex;
}
.multi-img-div img {
  display: block;
  max-width: 100%;
  height: auto;
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #27314e;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease;
  z-index: 1000;
}
@media screen and (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .c1 {
    padding: 20px;
    margin-bottom: 0;
  }
  .column h2 {
    font-size: 24px;
  }
  .column h1 {
    letter-spacing: -2.3px;
  }
  .footer-notbtn {
    font-size: 15px;
  }
  .sub-btn {
    font-size: 12px;
    padding: 24px;
  }
  .social-links {
    gap: 30px;
  }
  .column img {
    max-width: 300px;
    padding-top: 0px;
  }
  .multi-img-div {
    flex-direction: column;
    height: auto;
  }
  .col-sm-1 {
    width: 100%;
  }
  .multi-img-div img {
    display: block;
  }
}
/* #back-to-top:hover {
  
} */

#back-to-top.show {
  opacity: 1;
}

#wp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

#wp-float.show {
  opacity: 1;
  pointer-events: auto;
}

#wp-float:hover {
  background-color: #1ebe5d;
}
/* toastify */
.toast {
  visibility: hidden;
  min-width: 250px;
  /* background-color: ; */
  color: white;
  text-align: center;
  border-radius: 12px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  opacity: 0;
  transition:
    opacity 0.5s ease-in-out,
    bottom 0.5s ease-in-out;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.toast.error {
  background-color: #e23e32;
}

.toast.success {
  background-color: #03b00a;
}
@media screen and (max-width: 1200px) {
  .overlay-content div h1 {
    padding: 0;
  }
  .form-div .container {
    max-width: 1100px;
  }
  .wrapper > .inner {
    gap: 25px;
  }
  .testimonials-section .container {
    max-width: 1100px;
  }
  .all-counselling-section .container {
    max-width: 1100px;
  }
  /**/
  .about-img-container {
    width: 540px;
  }
  .about img {
    max-width: 80%;
  }
  .exp-year {
    top: 32%;
    transform: translate(-32%, -55%);
  }
  .about-2,
  .about-3 {
  }
  /**/
  .carousel-button {
    width: 40px;
    height: 40px;
  }
  .carousel-button.prev {
    left: -40px;
  }
  .carousel-button.next {
    right: -40px;
  }
  /*  */
  .youtube-div .container {
    max-width: 1100px;
  }
  /*  */
  .background-overlay {
    justify-content: end;
  }
  .card-section .row {
    gap: 40px;
  }
  .testimonials-heading {
    margin-bottom: 0;
  }
  /*  */
  .timeline-container {
    width: 1100px;
  }
  /*  */
  .main-content {
    justify-content: space-evenly;
  }
  .college .main-content {
    justify-content: space-evenly;
  }
  /**/
  .footer-container {
    gap: 15px;
  }
  .c1 {
    padding-left: 80px;
    margin-bottom: 20px;
  }
  #subscribeForm {
    display: flex;
    flex-wrap: nowrap;
  }
  .column input {
    margin: 5px 0px 0px;
    height: 60px;
  }
  .sub-btn {
    height: 70px;
    margin: 0px;
    padding: 0px 40px;
    margin-left: -15px;
  }
  .c2 {
    align-content: flex-start;
  }
  .column img {
    padding-top: 100px;
    max-width: 370px;
  }
}

/* youtube-div */
.youtube-div .row {
  gap: 30px;
  padding: 50px 20px;
  background-color: #f9f9f9;
  flex-wrap: nowrap;
}

.text-column {
  padding-right: 20px;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Jost", sans-serif;
  width: 50%;
  align-content: center;
}

.text-column p {
  color: #333;
}

.text-column h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.text-column h3 {
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #444;
}

.text-column ul {
  padding-left: 30;
}

.text-column ul li {
  margin-bottom: 8px;
}

.video-column {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  position: relative;
  width: 50%;
}

.video-column h1 {
  margin-bottom: 20px;
  font-size: 34px;
  color: #222;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .text-column,
  .video-column {
    flex: 1 1 100%;
  }

  .text-column {
    padding-right: 0;
  }

  .youtube-div .row {
    flex-wrap: wrap;
  }
}

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.video-counter {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.carousel-nav {
  display: flex;
  gap: 8px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 20px;
  font-weight: bold;
}

.nav-btn:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
  transform: scale(1.05);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 0;
}

.video-card {
  flex: 0 0 100%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #f0f0f0;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.video-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail-image {
  transform: scale(1.02);
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-card:hover .play-button-overlay {
  background-color: rgba(255, 0, 0, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.play-button-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 24px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}

.thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
    linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
    linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
  background-size: 20px 20px;
  background-position:
    0 0,
    0 10px,
    10px -10px,
    -10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
}

.video-info {
  padding: 20px;
}

.video-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #222;
}

.video-stats {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.video-description {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: #666;
  font-size: 16px;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 90%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  animation: slideIn 0.3s ease;
}

.modal-header {
  background: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin: 0;
  flex: 1;
  margin-right: 20px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.close-btn:hover {
  background-color: #f0f0f0;
  color: #333;
}

.modal-video {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.modal-info {
  background: #fff;
  padding: 15px 20px;
}

.modal-stats {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .video-column h1 {
    font-size: 28px;
  }

  .video-title {
    font-size: 16px;
  }

  .video-info {
    padding: 15px;
  }

  .play-button-overlay {
    width: 60px;
    height: 60px;
  }

  .play-button-overlay::after {
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
  }

  .modal-content {
    width: 95%;
    margin: 10px;
  }

  .modal-title {
    font-size: 16px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.video-card.loaded {
  animation: fadeIn 0.4s ease;
}

body.modal-open {
  overflow: hidden;
}

.carousel-track.sliding {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
  .background-overlay {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .overlay-content div h1 {
    padding: 0;
  }
  .process-section .container {
    flex-wrap: wrap;
  }
  .psc1 {
    top: 0;
  }
  .timeline {
    left: 7%;
    transform: translateX(-7%);
  }
  .form-div {
    height: auto;
    padding: 20px;
  }
  .form-div .container {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .viewAll-div {
    width: 50%;
  }
  .career-cards {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .c1 {
    padding: 0 0 0 20px;
  }
  .sub-btn {
    padding: 20px 30px;
  }
  .column img {
    padding-top: 60px;
    max-width: 320px;
  }
  .branding-img {
    align-self: center;
  }
  .about .container .row {
    gap: 20px;
  }
  .card-section .row {
    gap: 20px;
  }
  .exp-year {
    top: 40%;
  }
  .all-counselling-section .container {
    max-width: 680px;
  }
  .counselling-card {
    width: 320px;
    height: auto;
  }
  .wrapper > .inner {
    gap: 20px;
  }
  .carousel-button.next {
    right: -30px;
  }
  .u-shaped {
    display: none;
  }
  .timeline-container {
    max-width: 680px;
  }
  .session-planning-div .container {
    max-width: 680px;
    justify-content: center;
  }
  .session-planning-div .container {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }
  .sp-content-1,
  .sp-content-2 {
    flex-direction: row;
  }
  .session-planning-div .container > img {
    width: 400px;
    height: 400px;
  }
  .c1 {
    align-items: flex-start;
  }
  .about-me-4 .challenges div {
    flex-wrap: wrap;
    max-width: 500px;
  }
  .self-growth-section .sessions div {
    flex-wrap: wrap;
    max-width: 500px;
  }
  .issues-section .issues div {
    flex-wrap: wrap;
    width: 500px;
  }
  .single-row {
    padding: 0 20px;
  }
  .single-row .item-1,
  .item-2,
  .item-3 {
    padding: 0;
  }
  .issues-section .issues .couns .coun-col {
    padding: 0 20px;
  }
  .counselling-div .container .counselling-flex {
    padding-top: 0;
  }
  .counselling-div .container .card-counselling {
    flex: auto;
    max-width: 40%;
  }
  .workshop-section .workshops .workshop {
    width: calc(50% - 50px);
  }
  .background-carousel .carousel-title {
    bottom: 40%;
    width: 80%;
  }
  .background-carousel .carousel-title h2 {
    font-size: 40px;
  }
  .main-content {
    padding-left: 20px;
  }
  .main-item {
    /*width: 100%;*/
  }
  .main-item .mc-title {
    padding: 1.8em 1.2em 1.8em 0;
  }
}
@media screen and (max-width: 426px) {
  .hero-content {
    top: 50%;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .btn-like {
    margin: 0;
  }
  .hero-logos {
    display: none;
  }
  .about .container {
    padding: 0;
  }
  .about-img-container {
    width: 400px;
  }
  .card-section .container {
    width: 400px;
  }
  .all-counselling-section .container {
    max-width: 400px;
  }
  .carousel-button.next,
  .carousel-button.prev {
    display: none;
  }
  .counselling-card {
    width: 380px;
  }
  .timeline-container {
    max-width: 400px;
    padding-left: 50px;
  }
  .timeline-marker {
    left: -7%;
  }
  .timeline-title {
    padding: 0 !important;
  }
  .sp-content-1,
  .sp-content-2 {
    flex-direction: column;
  }
  .session-planning-div .container > img {
    width: 350px;
    height: 350px;
  }
  .about-me-4 .container {
    max-width: 400px;
    padding: 0;
  }
  .about-me-4 .challenges div {
    max-width: 300px;
  }
  .issues-section .issues div {
    max-width: 300px;
  }
  .counselling-div .container .card-counselling {
    max-width: 80%;
  }
  .workshop-section .workshops .workshop {
    width: 80%;
  }
  .background-carousel .carousel-title {
    bottom: 0;
  }
  .background-carousel .carousel-title h2 {
    font-size: 24px;
  }
  .main-item {
    width: 80%;
  }
  .college .main-item {
    width: 80%;
  }
}

/* blog */
.blog-section .container {
  max-width: 1300px;
  display: grid;
  grid-template-columns: 70% 30%;
}
.blog-section .container .blog-grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}
.blog-section .blog-right .blog-header {
  margin-bottom: 126px;
  width: 100%;
  text-align: center;
}
.blog-section .blog-right .blog-header h1 {
  font-weight: 400;
  font-family: "Jost";
  font-size: 90px;
}
.blog-card {
  padding: 0 20px;
  margin-bottom: 30px;
}
.blog-card img {
  max-width: 100%;
  width: 100%;
  height: 250px;
}
.blog-card .blog-body {
  padding: 28px 19px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.blog-card .blog-body > .tag-date {
  font-size: 14px;
  font-weight: 400;
}
.blog-card .blog-body > .tag-date a,
.blog-card .blog-body > .tag-date .fa-regular.fa-calendar {
  margin-right: 10px;
}
.blog-card .blog-body h2 {
  font-size: 26px;
  font-family: "Jost";
  text-align: center;
  font-weight: 400;
}
.blog-card .blog-body > p,
.blog-card .blog-body > .tag-date p,
.blog-card .blog-body a {
  color: #444 !important;
}

.blog-card .blog-body > a {
  font-family: "Jost";
  font-size: 12px;
  border-bottom: 3px solid #333;
  text-transform: uppercase;
  padding: 6px 0 3px;
}

.blog-card .blog-body .like-share span,
.blog-card .blog-body .like-share i {
  margin-right: 10px;
}

.right-sidebar-div > img {
  max-width: 100%;
  display: block;
}
.right-sidebar-div {
  padding-left: 70px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.right-sidebar-div input {
  padding: 15px;
  border-radius: 50px;
  font-family: "Jost";
  border: none;
}

.right-sidebar-div .side-search input:focus-visible {
  outline: #fff;
}
.side-search {
  width: 80%;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.side-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px 5px 0;
}
.side-search .fa-magnifying-glass:before {
  color: rgba(0, 0, 0, 0.2);
}
.right-sidebar-div .recent-post h3 {
  font-family: "Jost";
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 30px;
}
.right-sidebar-div .recent-post h3 span {
  box-shadow: inset 0 -6px 0 #f2edc6;
}
.right-sidebar-div .recent-post p a {
  color: #444;
  font-family: "Jost";
  font-size: 14px;
  font-weight: 500;
}

.right-sidebar-div .must-read {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.right-sidebar-div .must-read h3 {
  font-family: "Jost";
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 30px;
}
.right-sidebar-div .must-read h3 span {
  box-shadow: inset 0 -6px 0 #f2edc6;
}
.right-sidebar-div .must-read img {
  max-width: 35%;
}
.right-sidebar-div .must-read .sideblog-card {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.right-sidebar-div .must-read .sideblog-card p {
  color: #444;
  padding-right: 30px;
}
.right-sidebar-div .blog-categories h3 {
  font-family: "Jost";
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 30px;
}
.right-sidebar-div .blog-categories h3 span {
  box-shadow: inset 0 -6px 0 #f2edc6;
}
.right-sidebar-div .blog-categories p {
  color: #444;
}
.right-sidebar-div .blog-categories p a {
  color: #444;
}
.single-sidebar .blog-categories p a {
  color: #444;
}
.carousel-title .cat-span {
  background-color: #333;
  color: #fff;
  padding: 2px 10px;
  font-family: "Jost";
  position: absolute;
  bottom: 100%;
  margin-bottom: 30px;
}
.blog-carousel .carousel-title h2 {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 10px;
  position: relative;
  top: 50%;
}
.blog-carousel .view-post {
  display: none;
  font-family: "Jost";
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: 3s ease-in-out;
  letter-spacing: 1.2px;
}
.blog-carousel:hover .view-post {
  display: block;
  transition: all 0.3s ease-in;
}
.blog-carousel .view-post:hover {
  padding-left: 10px;
}
/* category.php */
.cat-section .container {
  max-width: 1300px;
}
.cat-section .container .cat-grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  /* justify-content: center; */
}
.cat-section .blogcat-header {
  margin-bottom: 126px;
  width: 100%;
  text-align: center;
}
.cat-section .blogcat-header p {
  color: #999;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  font-weight: 600;
}
.cat-section .blogcat-header h1 {
  font-weight: 400;
  font-family: "Jost";
  font-size: 90px;
}
.catblog-card {
  padding: 0 20px;
  margin-bottom: 30px;
}
.catblog-card img {
  max-width: 100%;
  height: 250px;
}
.catblog-card .catblog-body {
  padding: 28px 19px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.catblog-card .catblog-body > .cattag-date {
  font-size: 14px;
  font-weight: 400;
}
.catblog-card .catblog-body > .cattag-date a,
.catblog-card .catblog-body > .cattag-date .fa-regular.fa-calendar {
  margin-right: 10px;
}
.catblog-card .catblog-body h2 {
  font-size: 26px;
  font-family: "Jost";
  text-align: center;
  font-weight: 400;
}
.catblog-card .catblog-body > p,
.catblog-card .catblog-body > .cattag-date p,
.catblog-card .catblog-body a {
  color: #444 !important;
}

.catblog-card .catblog-body > a {
  font-family: "Jost";
  font-size: 12px;
  border-bottom: 3px solid #333;
  text-transform: uppercase;
  padding: 6px 0 3px;
}

.catblog-card .catblog-body .catlike-share span,
.catblog-card .catblog-body .catlike-share i {
  margin-right: 10px;
}

/* -------- single blog container horizontal padding -------- */
.single-blog .container {
  padding-left: 40px;
  padding-right: 40px;
}

/* -------- blogheader -------- */
.single-blog .container .blogheader {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding-top: 20px;
}
.single-blog .container .blogheader .blog-tags-likes {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.single-blog .container .blogheader .blog-tags-likes a {
  background: #f0f0f0;
  color: #555 !important;
  font-family: "Jost";
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  transition: background 0.2s;
}
.single-blog .container .blogheader .blog-tags-likes a:hover {
  background: #e0e0e0;
}
.single-blog .container .blogheader .blog-tags-likes .like-btn {
  font-size: 13px;
  color: #888 !important;
  font-family: "Jost";
  margin-left: 4px;
}
.single-blog .container .blogheader .blog-meta {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13px;
  font-family: "Jost";
}
.single-blog .container .blogheader .blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #999 !important;
}
.single-blog .container .blogheader .fa-regular,
.single-blog .container .blogheader .fa-solid {
  margin-right: 0;
}

/* -------- title -------- */
.single-blog h1 {
  font-size: 46px;
  font-family: "Jost";
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  color: #1a1a1a;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* -------- hero image -------- */
.single-blogimg {
  margin-top: 36px;
  border-radius: 12px;
  overflow: hidden;
}
.single-blogimg img {
  width: 100%;
  height: auto;
  display: block;
}

/* -------- body + sidebar grid -------- */
.single-bloggrid {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 64px;
  align-items: start;
}

/* -------- body typography -------- */
.single-blogbody p {
  color: #333;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
  font-family: "Jost";
}
.single-blogbody h2 {
  font-family: "Jost";
  font-size: 28px;
  font-weight: 600;
  margin: 44px 0 14px;
  color: #1a1a1a;
  line-height: 1.25;
}
.single-blogbody h3 {
  font-family: "Jost";
  font-weight: 600;
  margin: 34px 0 12px;
  font-size: 22px;
  color: #1a1a1a;
  line-height: 1.3;
}
.single-blogbody h4 {
  font-family: "Jost";
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: #1a1a1a;
}
.single-blogbody .less-margin {
  margin-bottom: 6px;
}
.single-blogbody .quote {
  font-size: 20px;
  color: #1a1a1a;
  margin: 40px 0;
  padding: 20px 28px;
  border-left: 4px solid #1a1a1a;
  font-style: italic;
  background: #f9f9f7;
  font-family: "Jost";
  line-height: 1.6;
}
.single-blogbody ul {
  list-style-type: disc;
  padding-left: 36px;
  margin-bottom: 18px;
}
.single-blogbody ol {
  padding-left: 36px;
  margin-bottom: 18px;
}
.single-blogbody li {
  margin-bottom: 10px;
  font-family: "Jost";
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}
.single-blogbody li a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.single-blogbody ol ol {
  list-style-type: lower-alpha;
  padding-left: 24px;
}
.single-blogbody table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-family: "Jost";
  font-size: 15px;
}
.single-blogbody table thead td {
  font-weight: 600;
  background: #f5f5f5;
  padding: 12px 14px;
}
.single-blogbody table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid #ebebeb;
  color: #444;
}

/* -------- sidebar -------- */
.single-sidebar > img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 44px;
  position: sticky;
  top: 110px;
}
.single-sidebar input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 50px;
  font-family: "Jost";
  font-size: 14px;
  border: none;
  background: transparent;
  outline: none;
  color: #333;
}
.side-search {
  width: 100%;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 2px 16px 2px 2px;
  background: #fff;
}
.side-search .fa-magnifying-glass {
  color: rgba(0, 0, 0, 0.25);
  font-size: 15px;
}
/* sidebar section headers shared */
.single-sidebar .recent-post h3,
.single-sidebar .must-read h3,
.single-sidebar .blog-categories h3 {
  font-family: "Jost";
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2.5px;
  font-size: 12px;
  margin-bottom: 18px;
  color: #1a1a1a;
}
.single-sidebar .recent-post h3 span,
.single-sidebar .must-read h3 span,
.single-sidebar .blog-categories h3 span {
  box-shadow: inset 0 -5px 0 #f2edc6;
}
/* recent posts */
.single-sidebar .recent-post p {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.single-sidebar .recent-post p:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.single-sidebar .recent-post p a {
  color: #333 !important;
  font-family: "Jost";
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  transition: color 0.2s;
}
.single-sidebar .recent-post p a:hover {
  color: #000 !important;
}
/* must-read */
.single-sidebar .must-read {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single-sidebar .must-read img {
  width: 68px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.single-sidebar .must-read .sideblog-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.single-sidebar .must-read .sideblog-card p {
  color: #333;
  font-family: "Jost";
  font-size: 13px;
  line-height: 1.5;
  padding-right: 0;
}
/* categories */
.single-sidebar .blog-categories p {
  color: #555;
  font-family: "Jost";
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.single-sidebar .blog-categories p:last-child {
  border-bottom: none;
}
.single-sidebar .blog-categories p a {
  color: #555 !important;
  transition: color 0.2s;
}
.single-sidebar .blog-categories p a:hover {
  color: #000 !important;
}

/* ===== BLOG & SINGLE-BLOG RESPONSIVE ===== */

/* --- Tablet landscape (≤1024px) --- */
@media screen and (max-width: 1024px) {
  /* blogs.php */
  .blog-section .container {
    grid-template-columns: 62% 38%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .blog-section .container .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-section .blog-right .blog-header h1 {
    font-size: 62px;
  }
  .blog-section .blog-right .blog-header {
    margin-bottom: 60px;
  }
  .right-sidebar-div {
    padding-left: 20px;
    gap: 40px;
  }
  /* single blog (blog.php) */
  .single-blog h1 {
    font-size: 38px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .single-blog .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .single-bloggrid {
    grid-template-columns: 60% 36%;
    gap: 0 4%;
    justify-content: space-between;
  }
  .single-sidebar {
    padding-left: 20px;
    gap: 40px;
  }
}

/* --- Tablet portrait (≤768px) --- */
@media screen and (max-width: 768px) {
  /* blogs.php — sidebar drops below the grid */
  .blog-section .container {
    grid-template-columns: 1fr;
    padding: 30px 16px;
  }
  .blog-section .container .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  .blog-section .blog-right .blog-header {
    margin-bottom: 40px;
  }
  .blog-section .blog-right .blog-header h1 {
    font-size: 44px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .blog-card {
    padding: 0;
  }
  .blog-right-sidebar {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
  }
  .right-sidebar-div {
    padding-left: 0;
    gap: 40px;
  }
  .side-search {
    width: 100%;
  }
  /* single blog (blog.php) */
  .single-blog h1 {
    font-size: 34px;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .single-blog .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .single-bloggrid {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
  .single-sidebar-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
  }
  .single-sidebar {
    padding-left: 0;
    position: relative;
    top: 0;
    gap: 40px;
  }
  .single-blogbody .quote {
    font-size: 22px;
    margin: 30px 0;
    padding: 8px;
  }
  /* blog listing carousel */
  .blog-carousel .carousel-title h2 {
    font-size: 22px;
  }
  .background-carousel.blog-carousel .carousel-title {
    width: 90%;
  }
}

/* --- Mobile (≤480px) --- */
@media screen and (max-width: 480px) {
  /* blogs.php */
  .blog-section .container {
    padding: 20px 12px;
  }
  .blog-section .container .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-section .blog-right .blog-header h1 {
    font-size: 30px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .blog-section .blog-right .blog-header {
    margin-bottom: 24px;
  }
  .blog-card {
    padding: 0;
    margin-bottom: 20px;
  }
  .blog-card img {
    height: 200px;
  }
  .blog-card .blog-body {
    padding: 16px 10px;
  }
  .blog-card .blog-body h2 {
    font-size: 18px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .blog-card .blog-body .like-share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  /* single blog (blog.php) */
  .single-blog h1 {
    font-size: 22px;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .single-blogimg {
    border-radius: 6px;
    margin-top: 20px;
  }
  .single-blog .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .single-blog .container .blogheader .blog-tags-likes,
  .single-blog .container .blogheader .blog-meta {
    flex-direction: column;
    gap: 6px;
  }
  .single-bloggrid {
    padding: 24px 0;
  }
  .single-blogbody .quote {
    font-size: 17px;
    margin: 20px 0;
    padding: 6px;
  }
  /* shrink list indentation so markers don't go off-screen */
  .single-blogbody ul,
  .single-blogbody ol {
    padding-left: 20px;
  }
  .single-blogbody ol ol {
    padding-left: 16px;
  }
  /* blog listing carousel */
  .blog-carousel .carousel-title h2 {
    font-size: 14px;
  }
}

/*  */
input[name="frm_timeInput"]:disabled + span {
  position: relative;
}

input[name="frm_timeInput"]:disabled + span:hover::after {
  content: "Already booked";
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0.9;
}

/* ===== FORM SLOT CSS START ===== */
input[name="frm_timeInput"] {
  background-color: red;
}

.serviceTimeGroup .form-row.stime {
  flex-direction: column;
  color: #fff;
}

.serviceTimeGroup .form-row.stime .col {
  padding: 15px 20px;
  background-color: #5fba7a;
  margin: 10px 5px;
  max-width: 70%;
}

.serviceTimeGroup .form-row.stime .col:has(input:disabled),
.serviceTimeGroup .form-row.stime .col.disabled-slot {
  background-color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}
.serviceTimeGroup .form-row.stime .col.disabled-slot .serviceTime {
  pointer-events: none;
}

/* PhD-only slot */
.phd-slot {
  border: 2px solid #7c4dff;
  background-color: #ede7f6 !important;
  color: #333 !important;
}
.phd-slot span, .phd-slot input[type="text"] {
  color: #4a148c;
  font-weight: 600;
}

/* On-request slot */
.request-slot {
  border: 2px dashed #ff9800 !important;
  background-color: #fff8e1 !important;
  color: #333 !important;
}
.request-slot span, .request-slot input[type="text"] {
  color: #e65100;
}
.request-slot em {
  font-style: italic;
  opacity: 0.85;
}
/* ===== FORM SLOT CSS END ===== */
.sunday-slot {
  border: 2px solid gold;
  background-color: #fff8dc;
  font-weight: bold;
}

.sunday-slot input:disabled + span {
  color: #e1e1e1ff;
}

#sundayInfo {
  background: #fff8dc;
  border: 2px solid gold;
  padding: 10px 15px;
  margin-bottom: 15px;
  font-size: 14px;
  border-radius: 6px;
}

.hidden {
  display: none;
}

.wp-div {
  position: fixed !important;
  top: 70% !important;
  right: 20px !important;
  z-index: 9999 !important;
}

.wp-link {
  width: 60px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.85) !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  color: #25d366 !important;
  font-size: 32px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* =============================================
   RESPONSIVE ADDITIONS - index.php
   ============================================= */

/* ---- Navigation ---- */
/* Tablet Landscape 1025px to 1200px */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  nav {
    padding: 0 20px;
    justify-content: space-between;
  }
  nav ul {
    display: flex !important;
    padding-left: 0;
    gap: 4px;
  }
  .nav-item a {
    padding: 7px 10px;
    margin-right: 0;
    font-size: 13px;
  }
  nav img {
    max-height: 80px;
  }
  nav .rb {
    max-height: 30px;
  }
  .secondary-header .nav-item a {
    padding: 7px 10px;
    margin-right: 0;
  }
  .secondary-header nav img {
    max-height: 80px;
  }
  .secondary-header nav .rb {
    max-height: 30px;
  }
  nav.secondary-header.sticky-header {
    padding: 0 20px;
  }
  .EnqBtn {
    top: 30% !important;
    transform: translateY(-50%) !important;
  }
}
/* Mobile/Tablet nav ≤1023px — hamburger dropdown */
@media screen and (max-width: 1023px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 15px 20px;
    display: none;
    gap: 25px;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  nav ul.show {
    display: flex;
    font-family: "Jost";
  }
  .nav-item a {
    color: #000;
    font-size: 16px;
    padding: 10px;
    width: 100%;
    display: block;
  }
  .menu-toggle {
    display: flex;
  }
  .branding-img {
    padding-right: 0;
  }
  nav img {
    height: 70px;
  }
  nav .rb {
    height: 30px;
  }
}
@media (max-width: 480px) {
  nav .branding-img {
    padding-left: 50px;
    display: flex;
    align-items: center;
    padding-top: 15px;
  }
  nav .branding-img img {
    height: 60px;
  }
  .branding-img .rb {
    height: 24px;
  }
  .sticky-header .branding-img .rb {
    padding-left: 20px;
    height: 35px;
  }
  .nav-item a {
    color: #222;
    font-size: 17px;
    padding: 15px 10px;
  }
  .menu-toggle {
    left: 10px;
  }
}

/* ---- U-shaped SVG ---- */
@media screen and (min-width: 481px) and (max-width: 1024px) {
  .u-shaped {
    bottom: 50px;
  }
  .u-shaped svg {
    height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .u-shaped {
    display: none;
  }
}

/* ---- Hero Content ---- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    padding: 0px 40px;
    width: 95%;
  }
  .hero-content h2 {
    font-size: 28px;
    line-height: 1.1em;
    margin-bottom: 15px;
  }
  .hero-content h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }
  .hero-content p {
    font-size: 20px;
  }
  .btn-like {
    font-size: 17px;
    padding: 22px 40px;
  }
  .hero-logos {
    margin-top: 40px;
    gap: 25px;
  }
  .hero-logos img {
    height: 35px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .hero-content {
    padding: 0px 30px;
    width: 100%;
  }
  .hero-content h2 {
    font-size: 24px;
    line-height: 1em;
    margin-bottom: 12px;
  }
  .hero-content h1 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }
  .hero-content p {
    font-size: 18px;
  }
  .btn-like {
    font-size: 16px;
    padding: 20px 35px;
    margin-top: 20px;
  }
  .hero-logos {
    margin-top: 35px;
    gap: 20px;
  }
  .hero-logos img {
    height: 32px;
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .main {
    min-height: 90vh;
  }
  .hero-content {
    padding: 0px 20px;
    width: 100%;
  }
  .hero-content h2 {
    font-size: 22px;
    line-height: 1em;
  }
  .hero-content h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .btn-like {
    margin-top: 25px;
    font-size: 15px;
    padding: 18px 28px;
  }
  .hero-logos {
    padding: 25px 20px;
    justify-content: center;
    margin-top: 25px;
    gap: 15px;
  }
  .hero-logos img {
    width: 70px;
    height: auto;
  }
  .u-shaped {
    display: none;
  }
  .video-background {
    height: 78vh;
  }
  .video-background iframe {
    width: 177vh;
  }
}
@media (max-width: 410px) {
  .main {
    min-height: 100vh;
  }
  .hero-content {
    height: 75vh;
    padding: 20px 15px 0;
  }
  .hero-content h2 {
    padding-top: 15px;
    font-size: 19px;
    margin-bottom: 8px;
  }
  .hero-content h1 {
    font-size: 36px;
    letter-spacing: -1.2px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .hero-content .btn-like {
    margin-top: 18px;
    font-size: 13px;
    padding: 15px 25px;
  }
  .hero-logos {
    padding: 0px;
    row-gap: 12px;
    margin-top: 20px;
  }
  .hero-logos img {
    width: 60px;
  }
  .u-shaped {
    display: none;
  }
}

/* ---- Container ---- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 95%;
    padding: 40px 0px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 35px 0px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    max-width: 100%;
    padding: 25px 0px;
  }
}

/* ---- About Section ---- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about .container {
    padding: 40px 0;
  }
  .about .row {
    row-gap: 60px;
    column-gap: 30px;
    padding: 10px 15px;
  }
  .row > .about-1,
  .about-2,
  .about-3,
  .about-4 {
    min-width: 45%;
  }
  .about-1 {
    padding-left: 30px;
  }
  .about-1 h2 {
    font-size: 28px;
  }
  .about-1 h1 {
    font-size: 48px;
    letter-spacing: -3.5px;
  }
  .about-3 {
    padding: 0px 50px;
  }
  .about-4 {
    padding: 0px 50px;
  }
  .about-img-container {
    width: 100%;
    max-width: 480px;
    height: auto;
    position: relative;
  }
  .exp-year {
    bottom: -25px;
    right: -15px;
    top: auto;
    left: auto;
    transform: none;
    padding: 22px;
    height: 130px;
    width: 130px;
  }
  .exp-year h1 {
    font-size: 44px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .about .container {
    padding: 30px 0;
  }
  .about .row {
    flex-direction: column;
    row-gap: 50px;
    padding: 10px 20px;
  }
  .row > .about-1,
  .about-2,
  .about-3,
  .about-4 {
    min-width: 100%;
  }
  .about-1 {
    padding-left: 20px;
  }
  .about-1 h2 {
    font-size: 26px;
  }
  .about-1 h1 {
    font-size: 44px;
    letter-spacing: -3px;
  }
  .about-3 {
    padding: 0px 20px;
  }
  .about-4 {
    padding: 0px 20px;
  }
  .about-img-container {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    position: relative;
  }
  .exp-year {
    bottom: -25px;
    right: 0px;
    top: auto;
    left: auto;
    transform: none;
    padding: 22px;
    height: 130px;
    width: 130px;
  }
  .exp-year h1 {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .about .container {
    position: relative;
    padding: 10px;
  }
  .about .row {
    flex-direction: column;
    padding: 0px;
    row-gap: 55px;
  }
  .row > .about-1,
  .about-2,
  .about-3,
  .about-4 {
    min-width: 100%;
  }
  .about-1 {
    padding-left: 0px;
  }
  .about-1 h2 {
    font-size: 24px;
  }
  .about-1 h1 {
    letter-spacing: -2.3px;
    padding: 0px 36px 0px 0px;
  }
  .about-img-container {
    width: 100%;
    max-width: 372px;
    height: auto;
    padding: 10px;
    position: relative;
  }
  .about img {
    height: auto;
    width: 100%;
  }
  .exp-year {
    position: absolute;
    bottom: -20px;
    right: 5px;
    top: auto;
    left: auto;
    transform: none;
    margin: 0;
    padding: 18px;
    height: max-content;
    width: min-content;
  }
  .exp-year h1 {
    font-size: 32px;
  }
  .exp-year h4 {
    font-size: 11px;
  }
  .about-3 {
    padding: 0px;
  }
  .about-3 p {
    padding-top: 0px;
  }
  .about-4 {
    padding: 0px;
  }
  .about .title {
    font-size: 28px;
    text-align: right;
  }
  .designation-company {
    text-align: right;
  }
}

/* ---- Counter Section ---- */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .background-overlay {
    flex-wrap: wrap;
    height: auto;
    padding: 40px 20px;
  }
  .counter-title-div {
    width: 48%;
    height: auto;
    text-align: center;
  }
  .counter-title-div .counter {
    font-size: 70px;
  }
  .counter-title-div .counter-title {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 480px) {
  .background-overlay {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 30px 10px;
  }
  .counter-title-div {
    text-align: center;
    width: 48%;
    height: auto;
  }
  .counter-title-div .counter {
    font-size: 60px;
  }
  .counter-title-div .counter-title {
    font-weight: 800;
    font-size: 10px;
    padding-left: 0px;
    letter-spacing: 2px;
  }
}

/* ---- Overlay Content ---- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .overlay-content {
    height: auto;
    margin-bottom: 50px;
  }
  .overlay-content div h2 {
    font-size: 28px;
  }
  .overlay-content div h1 {
    font-size: 40px;
    letter-spacing: -3.5px;
    padding: 10px 10% 15px 10%;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .overlay-content {
    height: auto;
    margin-bottom: 40px;
    padding: 10px 0;
  }
  .overlay-content div {
    padding: 15px;
  }
  .overlay-content div h2 {
    font-size: 26px;
  }
  .overlay-content div h1 {
    font-size: 36px;
    letter-spacing: -2.8px;
    padding: 10px 5% 15px 5%;
  }
  .overlay-content div p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .overlay-content {
    height: auto;
    flex-direction: column;
    padding: 0px;
    margin-bottom: 30px;
  }
  .overlay-content div {
    padding: 10px;
  }
  .overlay-content div h2 {
    font-size: 24px;
    font-weight: 400;
  }
  .overlay-content div h1 {
    letter-spacing: -2.3px;
    padding: 10px 20px 15px 20px;
  }
}

/* ---- Process Section ---- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .process-section {
    padding: 5% 0% 0% 0%;
  }
  .process-section .container {
    gap: 15px;
  }
  .psc1 {
    top: 80px;
  }
  .psc1 h2 {
    font-size: 28px;
  }
  .psc1 h1 {
    font-size: 40px;
    letter-spacing: -3.8px;
  }
  .rts-card {
    margin-top: 40px;
    padding: 8% 8% 8% 8%;
  }
  .timeline {
    width: 100%;
    max-width: 480px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .process-section {
    padding: 3% 0% 0% 0%;
  }
  .process-section .container {
    flex-direction: column-reverse;
    align-items: center;
  }
  .psc1 {
    top: 0;
    margin-bottom: 30px;
  }
  .psc1 h2 {
    font-size: 26px;
  }
  .psc1 h1 {
    font-size: 38px;
    line-height: 1.2em;
    letter-spacing: -3.2px;
  }
  .rts-card {
    margin-top: 35px;
    padding: 7% 7% 7% 7%;
  }
  .rts-card-btn span {
    font-size: 20px;
    padding: 20px 40px;
  }
  .timeline {
    width: 100%;
  }
  .timeline-line {
    left: 10%;
    transform: translateX(-10%);
  }
}
@media screen and (max-width: 480px) {
  .process-section {
    padding: 0px;
  }
  .process-section .container {
    flex-direction: column-reverse;
    align-items: center;
  }
  .psc1 {
    top: 0;
    margin-bottom: 30px;
  }
  .psc1 h2 {
    font-size: 24px;
  }
  .psc1 h1 {
    line-height: 1.2em;
    letter-spacing: -2.3px;
  }
  .psc2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
  }
  .arrow {
    left: -11px;
  }
  .timeline {
    width: 100%;
    gap: 30px;
  }
  .timeline-line {
    top: 47px;
    bottom: 57px;
    left: 11%;
    transform: translateX(-11%);
  }
  .timeline-step {
    font-size: 16px;
    margin-bottom: 10px;
    width: 56px;
    height: 56px;
  }
  .timeline-content {
    padding: 26px;
    border: 3px solid transparent;
    box-shadow: none;
  }
  .timeline-content h5 {
    letter-spacing: -0.5px;
  }
  .timeline-content p {
    font-size: 15px;
    margin: 0;
  }
}

/* ===== FORM RESPONSIVE CSS START ===== */
/* ---- Form Section ---- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .form-div {
    height: auto;
    min-height: 70vh;
  }
  .col-form-content h2 {
    font-size: 28px;
  }
  .col-form-content h1 {
    font-size: 50px;
    letter-spacing: -3.8px;
  }
  .session-price,
  .session-note {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .form-div {
    height: auto;
    min-height: 80vh;
  }
  .form-div .container {
    flex-direction: column;
  }
  .col-form-content {
    padding: 30px 20px;
  }
  .col-form-content h2 {
    font-size: 26px;
  }
  .col-form-content h1 {
    font-size: 46px;
    letter-spacing: -3.5px;
  }
  .session-price,
  .session-note {
    font-size: 1.1rem;
    max-width: 100%;
  }
  .cc-row {
    flex-direction: column;
  }
  .form-control {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .form-div .container {
    flex-direction: column;
  }
  .col-form-content {
    padding: 20px 15px;
  }
  .col-form-content h2 {
    font-size: 24px;
  }
  .col-form-content h1 {
    font-size: 38px;
    letter-spacing: -3px;
  }
  .session-price,
  .session-note {
    font-size: 1rem;
  }
}
/* ===== FORM RESPONSIVE CSS END ===== */

/* ---- All Counselling Section ---- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .all-counselling-section .overlay-content h2 {
    font-size: 28px;
  }
  .all-counselling-section .overlay-content h1 {
    font-size: 50px;
    letter-spacing: -3.8px;
  }
  .main-content {
    padding: 0 15px;
  }
  .main-item {
    width: calc(25% - 20px);
  }
  .carousel-button {
    width: 48px;
    height: 48px;
  }
  .carousel-button.prev {
    left: -60px;
  }
  .carousel-button.next {
    right: -60px;
  }
  .viewAll-div {
    width: 35%;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .all-counselling-section .overlay-content h2 {
    font-size: 26px;
  }
  .all-counselling-section .overlay-content h1 {
    font-size: 44px;
    letter-spacing: -3.2px;
  }
  .wrapper {
    padding-top: 40px;
  }
  .carousel-button {
    width: 46px;
    height: 46px;
  }
  .carousel-button.prev {
    left: -45px;
  }
  .carousel-button.next {
    right: -45px;
  }
  .viewAll-div {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .center {
    overflow: hidden;
  }
  .carousel-button {
    width: 46px;
    height: 46px;
  }
  .carousel-button.prev {
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
  }
  .carousel-button.next {
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
  }
  .all-counselling-section .overlay-content h2 {
    font-size: 24px;
  }
  .all-counselling-section .overlay-content h1 {
    font-size: 38px;
    letter-spacing: -2.8px;
  }
  .wrapper {
    padding: 0;
  }
  .wrapper > .inner {
    margin-left: 12px;
  }
  .viewAll-div {
    width: 70%;
    height: 70px;
  }
  .viewAll-content {
    font-size: 12px;
    padding: 20px 28px;
  }
  .carousel-card {
    width: 320px;
  }
}

/* ---- Register Section ---- */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .register-background-overlay {
    height: auto;
    padding: 60px 20px;
  }
  .register-background-overlay h2 {
    font-size: 26px;
  }
  .register-background-overlay h1 {
    font-size: 44px;
    letter-spacing: -3.2px;
  }
  .register-background-overlay p {
    font-size: 16px;
  }
  .register-background-overlay .viewAll-div {
    width: 55%;
  }
}
@media screen and (max-width: 480px) {
  .register-background-overlay {
    height: auto;
    padding: 40px 15px;
  }
  .register-background-overlay h2 {
    font-size: 24px;
  }
  .register-background-overlay h1 {
    font-size: 38px;
    letter-spacing: -2.8px;
  }
  .register-background-overlay p {
    font-size: 15px;
  }
  .register-background-overlay .viewAll-div {
    width: 70%;
  }
}

/* ---- Career Section ---- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .career-cards {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
  .c-card {
    flex: 0 0 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
  .c-card img {
    height: 240px;
    width: 240px;
  }
  .c-card h4 {
    font-size: 20px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .career-cards {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .c-card {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
  .c-card img {
    height: 200px;
    width: 200px;
  }
  .c-card h4 {
    font-size: 19px;
  }
}
@media screen and (max-width: 480px) {
  .career-cards {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .c-card {
    flex: 0 0 100%;
    max-width: 320px;
  }
  .c-card img {
    height: 180px;
    width: 180px;
  }
  .c-card h4 {
    font-size: 18px;
  }
}

/* ---- YouTube Section ---- */
@media screen and (min-width: 481px) and (max-width: 1024px) {
  .youtube-div .row {
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 15px;
  }
  .text-column,
  .video-column {
    width: 100%;
    flex: 1 1 100%;
  }
  .text-column {
    padding-right: 0;
    padding-bottom: 20px;
  }
  .video-column h1 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .youtube-div .row {
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px 15px;
  }
  .text-column,
  .video-column {
    flex: 1 1 100%;
    width: 100%;
  }
  .text-column {
    padding-right: 0;
  }
  .text-column h2 {
    font-size: 1.4rem;
  }
  .text-column h3 {
    font-size: 1.2rem;
  }
  .video-column {
    padding: 15px;
  }
  .video-column h1 {
    font-size: 24px;
  }
}

/* ---- Main Content Grid ---- */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .main-content {
    flex-wrap: wrap;
    gap: 20px;
  }
  .main-item {
    width: calc(50% - 15px);
  }
  .main-item .mc-img {
    width: 100%;
    height: auto;
  }
  .main-item .mc-title {
    padding: 1.5em 1em;
  }
  .main-item .mc-title h2 {
    font-size: 22px;
  }
  .sidebar {
    position: relative;
    width: 100%;
    padding: 50px 20px;
  }
}
@media screen and (max-width: 480px) {
  .main-content {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 0 0 10px;
  }
  .main-item {
    width: 100%;
    max-width: 381px;
  }
  .main-item .mc-img {
    width: 100%;
    height: auto;
  }
  .main-item .mc-title {
    padding: 27px 18px;
    text-align: center;
  }
  .main-item .mc-title h2 {
    font-size: 21px;
  }
  .sidebar {
    position: relative;
    width: 100%;
    padding: 100px 20px;
  }
}

/* ---- WhatsApp Button ---- */
@media screen and (min-width: 481px) and (max-width: 1024px) {
  .wp-div {
    right: 15px !important;
    top: 75% !important;
  }
  .wp-link {
    width: 55px !important;
    height: 55px !important;
    font-size: 28px !important;
  }
}
@media screen and (max-width: 480px) {
  .wp-div {
    right: 10px !important;
    top: 80% !important;
  }
  .wp-link {
    width: 50px !important;
    height: 50px !important;
    font-size: 26px !important;
  }
  .youtube-div ul {
    padding-left: 20px;
  }
}

/* CONSULTANCY PAGE */

/* Hero Banner */
.consultancy-hero {
  position: relative;
  height: 92vh;
  min-height: 500px;
  background: linear-gradient(135deg, #aeacac 0%, #27314e 60%, #27314e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.consultancy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./images/index/bgimgs/1-1.jpg") top/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.consultancy-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.consultancy-hero-content {
  max-width: 520px;
}
.consultancy-hero-content h2 {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.consultancy-hero-content h1 {
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.consultancy-hero-content p {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}

/* Responsive: center hero content on smaller screens */
@media (max-width: 992px) {
  .consultancy-hero-overlay {
    justify-content: center;
    padding: 0 28px;
  }
  .consultancy-hero-content {
    margin-left: 0;
    text-align: center;
  }
  .consultancy-hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .consultancy-hero {
    height: 75vh;
    min-height: 420px;
  }
  .consultancy-hero-content h1 {
    font-size: 28px;
  }
  .consultancy-hero-content p {
    font-size: 15px;
    max-width: 100%;
  }
}

/* --- Intro Section --- */
.consultancy-intro-section {
  padding: 100px 0 80px;
  background: #fff;
}
.consultancy-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.consultancy-intro-text h2 {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #433d4e;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.consultancy-intro-text h1 {
  font-family: "Oswald", sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #222;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.consultancy-intro-text p {
  font-family: "Jost", sans-serif;
  font-size: 15.5px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}
.consultancy-stats {
  display: flex;
  gap: 30px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.c-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f3f8;
  border-radius: 10px;
  padding: 20px 28px;
  border-bottom: 3px solid #27314e;
  min-width: 110px;
}
.c-stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #433d4e;
  line-height: 1;
}
.c-stat-label {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
  text-align: center;
}
.consultancy-intro-img {
  position: relative;
}
.consultancy-intro-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.consultancy-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #27314e;
  color: #fff;
  padding: 20px 28px;
  border-radius: 4px;
  font-family: "Jost", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  min-width: 180px;
}
.consultancy-badge strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

/* --- Section Heading --- */
.consultancy-section-head {
  text-align: center;
  margin-bottom: 60px;
}
.consultancy-section-head h2 {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #27314e;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.consultancy-section-head h1 {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.consultancy-section-head p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Services Section --- */
.consultancy-services-section {
  padding: 100px 0;
  background: #f8f7fb;
}
.consultancy-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cs-card {
  background: #fff;
  border-radius: 6px;
  padding: 40px 32px;
  border-top: 4px solid transparent;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.cs-card:hover {
  border-top-color: #433d4e;
  box-shadow: 0 8px 32px rgba(67, 61, 78, 0.13);
  transform: translateY(-4px);
}
.cs-icon {
  width: 54px;
  height: 54px;
  background: #f0eef5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #433d4e;
  transition:
    background 0.3s,
    color 0.3s;
}
.cs-card:hover .cs-icon {
  background: #27314e;
  color: #fff;
}
.cs-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.3;
}
.cs-card p {
  font-family: "Jost", sans-serif;
  font-size: 14.5px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 20px;
}
.cs-link {
  font-family: "Jost", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #27314e;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #27314e;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.cs-link:hover {
  color: #6b5f7a;
}
.cs-subtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.cs-subtags span {
  font-family: "Jost", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #433d4e;
  background: #f0eef5;
  border: 1px solid #d4cedf;
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* --- USP Banner --- */
.consultancy-usp-section {
  background: #27314e;
  padding: 60px 0;
}
.consultancy-usp-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 44px 50px;
}
.usp-icon {
  font-size: 48px;
  color: #444;
  flex-shrink: 0;
}
.usp-text {
  flex-grow: 1;
}
.usp-text h3 {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}
.usp-text p {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}
.usp-text strong {
  color: #000;
  font-weight: 700;
}
.usp-text em {
  font-style: italic;
  color: #222;
}
.usp-cta {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #433d4e;
  background: #fff;
  border-radius: 4px;
  padding: 14px 28px;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.2s;
  white-space: nowrap;
}
.usp-cta:hover {
  background: #f0eef5;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .consultancy-usp-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 24px;
  }
  .usp-cta {
    width: 100%;
    text-align: center;
  }
}

/* --- Why Choose Us --- */
.consultancy-why-section {
  padding: 100px 0;
  background: #fff;
}
.consultancy-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.cw-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.cw-icon {
  font-size: 26px;
  color: #27314e;
  flex-shrink: 0;
  margin-top: 3px;
  width: 44px;
  text-align: center;
}
.cw-text h4 {
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cw-text p {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.75;
}

/* --- Testimonials Section --- */
.con-testimonials-section {
  padding: 100px 0;
  background: rgba(39, 49, 78, 0.95);
}
.con-testimonials-section .consultancy-section-head h2 {
  /* color: rgba(255,255,255,0.55); */
}
.con-testimonials-section .consultancy-section-head h1 {
  /* color: #fff; */
}
.con-testimonials-section .consultancy-section-head p {
  /* color: rgba(255,255,255,0.65); */
}
.con-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.con-t-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition:
    background 0.3s,
    transform 0.3s;
  position: relative;
}
.con-t-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.con-t-quote {
  font-family: "Georgia", serif;
  font-size: 72px;
  /* color: rgba(255,255,255,0.18); */
  line-height: 0.6;
  margin-bottom: 8px;
  user-select: none;
}
.con-t-body {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.85;
  font-style: italic;
  flex-grow: 1;
  margin: 0;
}
.con-t-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.con-t-footer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.con-t-footer h5 {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 600;
  /* color: #fff; */
  margin: 0 0 4px;
  text-transform: uppercase;
}
.con-t-footer span {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  /* color: rgba(255,255,255,0.55); */
  letter-spacing: 0.3px;
}

/* --- Process Section --- */
.consultancy-process-section {
  padding: 100px 0;
  /* background: #f8f7fb; */
}
.consultancy-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}
.cp-step {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid #ede9f4;
}
.cp-step:last-child {
  border-bottom: none;
}
.cp-num {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 700;
  /* color: #ded9e8; */
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
  text-align: center;
  transition: color 0.3s;
}
.cp-step:hover .cp-num {
  color: #433d4e;
}
.cp-content h4 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cp-content p {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* --- Contact Form Section --- */
.consultancy-form-section {
  padding: 100px 0 120px;
  background: #fff;
}
.consultancy-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}
.consultancy-form-left h2 {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #433d4e;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.consultancy-form-left h1 {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.25;
}
.consultancy-form-left p {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media(max-width: 480px){
    .consultancy-form-left h2,
    .consultancy-form-left h1,
    .consultancy-form-left p,
    .consultancy-form-left ul{
        margin-left:20px;   
    }
}
.consultancy-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.consultancy-contact-list li {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
}
.consultancy-contact-list li i {
  color: #27314e;
  font-size: 18px;
  width: 22px;
}
.consultancy-contact-list a {
  color: #27314e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.consultancy-contact-list a:hover {
  color: #6b5f7a;
}
.consultancy-contact-form {
  background: #f8f7fb;
  border-radius: 8px;
  padding: 44px 40px;
  position: relative;
}
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}
.cf-group label {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cf-group label span {
  color: #e05;
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  font-family: "Jost", sans-serif;
  font-size: 14.5px;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  box-sizing: border-box;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: #433d4e;
}
.cf-group textarea {
  resize: vertical;
  min-height: 110px;
}
.cf-submit-btn {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #27314e;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 15px 40px;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
  width: 100%;
  margin-top: 6px;
}
.cf-submit-btn:hover {
  background: #27314e;
  transform: translateY(-2px);
}

/* -------- Consultancy Responsive -------- */
@media (max-width: 1024px) {
  .consultancy-hero-content h1 {
    font-size: 40px;
  }
  .consultancy-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .consultancy-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .con-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .consultancy-intro-grid {
    gap: 50px;
  }
  .consultancy-badge {
    left: -10px;
  }
}
@media (max-width: 768px) {
  .consultancy-hero {
    height: auto;
    padding: 130px 0 80px;
  }
  .consultancy-hero-overlay {
    padding: 0 24px;
  }
  .consultancy-hero-content h1 {
    font-size: 30px;
  }
  .consultancy-hero-content p {
    font-size: 15px;
  }
  .consultancy-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .consultancy-intro-img img {
    height: 320px;
  }
  .consultancy-badge {
    position: static;
    margin-top: 16px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .consultancy-services-grid {
    grid-template-columns: 1fr;
  }
  .consultancy-why-grid {
    grid-template-columns: 1fr;
  }
  .con-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .consultancy-form-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .consultancy-section-head h1 {
    font-size: 28px;
  }
  .consultancy-contact-form {
    padding: 30px 22px;
  }
  .consultancy-intro-section,
  .consultancy-services-section,
  .consultancy-why-section,
  .con-testimonials-section,
  .consultancy-process-section,
  .consultancy-form-section {
    padding: 70px 0;
  }
  .c-stat {
    min-width: 80px;
    padding: 16px 18px;
  }
}
@media (max-width: 480px) {
  .consultancy-hero-content h1 {
    font-size: 24px;
  }
  .consultancy-stats {
    gap: 12px;
  }
  .c-stat-num {
    font-size: 24px;
  }
  .co-card {
    padding: 30px 22px;
  }
  .consultancy-process-steps {
    max-width: 100%;
  }
  .cp-step {
    gap: 16px;
  }
  .cp-num {
    font-size: 30px;
    width: 44px;
  }
}
