/* General Style */
@font-face {
  font-family: "Philosopher";
  src: url(../font/philosopher.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url(../font/lato.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Root Style */
:root {
  /* Main heading color */
  --heading-color: #112015;
  /* Primary color for the site, often used for buttons, links, etc. */
  --color-main: #5c9269;
  /* Darker shade of the primary color, used for hover states or dark background elements */
  --color-darker: #1d4026;
  /* Lighter shade of the primary color, for lighter elements or backgrounds */
  --color-lighter: #99c7a3;
  /* Subtle background color, used for subtle backgrounds or areas with less emphasis */
  --color-subtle: #fffbe9;
  /* Border color, used for borders and dividers */
  --color-border: #fdfdfd;
  /* Error color, usually red, used for form validation or error messages */
  --color-error: #e22d2d;
  /* Warning color, yellow, used for warning messages or indicators */
  --color-warning: #e2d52d;
  /* Information color, blue, used for info messages or alert indicators */
  --color-info: #2663cf;
  /* Success color, green, used for success messages or successful actions */
  --color-success: #20bd3c;
  /* Text color 1 for headers*/
  --text-color-1: #696969;
  /* Text color 2 for body text */
  --text-color-2: #c7c7c7;
  /* Font family for main headers */
  --font-1: "Philosopher";
  /* Font family for body text or secondary headers */
  --font-2: "Lato";
}

html {
  scroll-behavior: smooth;
}

/* Header Styles */


a {
  text-decoration: none;
  cursor: pointer;
}

img {
  object-fit: cover;
}

/* Text Style */
.heading {
  color: var(--heading-color);
}

.sub-heading {
  color: var(--color-main);
}
.text-subtitle {
  font-family: "Philosopher";
  font-size: 24px;
  font-weight: 500;
  line-height: 1, 2;
  letter-spacing: -0.8px;
}
.text-grey {
  font-family: "Lato";
  font-size: 16px;
  color: var(--text-color-1);
}
.text-white {
  font-family: "Lato";
  font-size: 16px;
  color: white;
}
.text-silver {
  font-family: "Lato";
  font-size: 16px;
  color: var(--text-color-2);
}
.text-color-1 {
  color: var(--text-color-1);
}
.text-color-2 {
  color: var(--text-color-2);
}

.font-1,
.philosopher {
  font-family: var(--font-1);
}

.font-2,
.lato {
  font-family: var(--font-2);
}

/* Button Styles */
.btn-light,
.btn-dark {
  background-color: var(--color-main);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  max-width: fit-content;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.btn-light:hover {
  background-color: white;
  color: var(--text-color-1);
}

.btn-dark:hover {
  background-color: var(--color-darker);
  color: white;
}

/* Navbar Styles */
button.nav-link {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

button.nav-link:hover {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

button.nav-link:focus {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

/* Default Width */
.width-base {
  width: 1220px;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   HEADER
========================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  color: #fff;
}

/* =========================================
   TOP INFORMATION BAR
========================================= */

.header-top {
  width: 100%;
}

.header-top-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.header-socials {
  display: flex;
  align-items: center;

  gap: 8px;
}

.header-social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.header-social-icon:hover {
  background: #fff;
  color: #111;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-2), sans-serif;
  font-size: 13px;
}

.header-contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-contact-item a:hover {
  color: #ddd;
}

/* Navbar*/

.site-navbar {
  position: relative;

  width: calc(100% - 40px);

  max-width: 1440px;

  margin: 12px auto 0;


  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 22px;

  backdrop-filter: blur(22px) saturate(180%);

  -webkit-backdrop-filter: blur(22px) saturate(180%);

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);

  overflow: visible;
}

/* =========================================
   LIQUID GLASS REFLECTION
========================================= */

.site-navbar::before {
  content: "";

  position: absolute;

  top: -120%;
  left: -20%;

  width: 45%;
  height: 300%;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.13) 50%,
    rgba(255, 255, 255, 0.06) 60%,
    transparent 100%
  );

  transform: rotate(20deg);

  pointer-events: none;
}

/* =========================================
   SOFT GLASS GLOW
========================================= */

.site-navbar::after {
  content: "";

  position: absolute;

  top: -80px;
  right: 15%;

  width: 220px;
  height: 140px;

  background: rgba(255, 255, 255, 0.07);

  filter: blur(50px);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================
   NAVBAR CONTAINER
========================================= */

.navbar-container {
  position: relative;

  z-index: 2;

  width: 100%;

  display: flex;

  align-items: center;
}

/* =========================================
   LOGO
========================================= */

.site-logo {
  flex: 0 0 auto;

  margin: 0;

  padding: 0;

  display: flex;

  align-items: center;
}

.site-logo img {
  width: 150px;

  height: 80px;

  object-fit: contain;
}

/* =========================================
   DESKTOP NAVIGATION WRAPPER
========================================= */

.site-navigation {
  flex: 1 1 auto;

  display: flex;

  align-items: center;

  justify-content: center;
}

/* =========================================
   DESKTOP NAV LIST
========================================= */

.site-nav-list {
  display: flex;

  flex-direction: row;

  align-items: center;

  justify-content: center;

  gap: 18px;

  margin: 0;

  padding: 0;

  list-style: none;
}

/* =========================================
   DESKTOP NAV LINKS
========================================= */

.site-nav-list .nav-link {
  color: #fff !important;

  font-family: var(--font-2), sans-serif;

  font-size: 14px;

  font-weight: 400;

  padding: 8px 10px;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.site-nav-list .nav-link:hover {
  color: #20bd3c !important;
}

.site-nav-list .nav-link.active {
  color: #20bd3c !important;
}

/* =========================================
   DESKTOP APPOINTMENT
========================================= */

.header-action {
  flex: 0 0 auto;
  margin-left: 0;
}

.header-action .btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--color-main);
  color: #fff;

  border: 1px solid var(--color-main);

  border-radius: 50px;

  font-family: var(--font-2), sans-serif;

  font-size: 14px;

  font-weight: 500;

  text-decoration: none;

  white-space: nowrap;

  transition: all 0.3s ease;
}

.header-action .btn-light:hover {
  background: #fff;

  border-color: #fff;

  color: var(--color-main);
}

/* =========================================
   HAMBURGER
========================================= */

.site-menu-toggle {
  display: none;

  width: 36px;
  height: 32px;

  padding: 0;

  margin-left: auto;

  border: none;

  outline: none;

  box-shadow: none;

  background: transparent;

  cursor: pointer;

  flex-direction: column;

  justify-content: space-between;

  position: relative;

  z-index: 2001;
}

.site-menu-toggle span {
  display: block;

  width: 30px;
  height: 2px;

  background: #fff;

  border-radius: 20px;

  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    width 0.35s ease;
}

.site-menu-toggle span:nth-child(3) {
  width: 22px;

  margin-left: auto;
}

/* =========================================
   HAMBURGER ACTIVE
========================================= */

.site-menu-toggle.active span:nth-child(1) {
  transform: translateY(15px) rotate(45deg);
}

.site-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.site-menu-toggle.active span:nth-child(3) {
  width: 30px;

  transform: translateY(-15px) rotate(-45deg);
}

/* =========================================
   MOBILE MENU BACKDROP
========================================= */

.site-menu-backdrop {
  position: fixed;

  inset: 0;

  width: 100vw;
  height: 100vh;

  background: rgba(3, 18, 12, 0.72);

  backdrop-filter: blur(7px);

  -webkit-backdrop-filter: blur(7px);

  z-index: 1900;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.site-menu-backdrop.show {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

/* =========================================
   MOBILE MENU
========================================= */

.site-mobile-menu {
  position: fixed;

  top: 0;
  right: 0;

  width: 100vw;
  height: 100vh;

  max-width: 100vw;

  background: linear-gradient(145deg, #ffffff 0%, #f7faf8 100%);

  color: var(--heading-color);

  z-index: 2000;

  transform: translateX(100%);

  visibility: hidden;

  opacity: 0;

  transition:
    transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.3s ease,
    visibility 0.5s ease;

  box-shadow: -25px 0 70px rgba(0, 0, 0, 0.18);

  overflow: hidden;
}

/* =========================================
   OPEN MOBILE MENU
========================================= */

.site-mobile-menu.show {
  transform: translateX(0);

  visibility: visible;

  opacity: 1;
}

/* =========================================
   MOBILE MENU HEADER
========================================= */

.site-mobile-menu-header {
  width: 100%;

  min-height: 82px;

  padding: 20px 30px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom: 1px solid rgba(17, 32, 21, 0.1);
}

/* =========================================
   MENU TITLE
========================================= */

.site-mobile-title {
  color: var(--heading-color);

  font-family: var(--font-1), sans-serif;

  font-size: 22px;

  font-weight: 500;

  letter-spacing: 1px;
}

/* =========================================
   CLOSE BUTTON
========================================= */

.site-menu-close {
  position: relative;

  width: 40px;
  height: 40px;

  padding: 0;

  border: none;

  border-radius: 50%;

  background: rgba(92, 146, 105, 0.1);

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.site-menu-close:hover {
  background: rgba(92, 146, 105, 0.18);

  transform: rotate(90deg);
}

.site-menu-close span {
  position: absolute;

  width: 18px;
  height: 2px;

  background: var(--heading-color);

  border-radius: 10px;
}

.site-menu-close span:first-child {
  transform: rotate(45deg);
}

.site-menu-close span:last-child {
  transform: rotate(-45deg);
}

/* =========================================
   MOBILE MENU BODY
========================================= */

.site-mobile-menu-body {
  width: 100%;

  height: calc(100vh - 82px);

  padding: 30px;

  overflow-y: auto;

  overflow-x: hidden;

  scrollbar-width: thin;

  scrollbar-color: rgba(92, 146, 105, 0.35) transparent;
}

/* =========================================
   MOBILE NAV LIST
========================================= */

.site-mobile-nav-list {
  width: 100%;

  display: flex;

  flex-direction: column;

  margin: 0;

  padding: 0;

  list-style: none;
}

.site-mobile-nav-list li {
  width: 100%;

  border-bottom: 1px solid rgba(17, 32, 21, 0.08);
}

/* =========================================
   MOBILE NAV LINKS
========================================= */

.site-mobile-nav-list a {
  position: relative;

  width: 100%;

  min-height: 68px;

  display: flex;

  align-items: center;

  padding: 18px 5px;

  color: var(--heading-color);

  font-family: var(--font-2), sans-serif;

  font-size: 20px;

  font-weight: 400;

  text-decoration: none;

  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

/* =========================================
   MOBILE LINK HOVER
========================================= */

.site-mobile-nav-list a:hover,
.site-mobile-nav-list a.active {
  color: var(--color-main);

  padding-left: 18px;
}

/* =========================================
   MOBILE ACTIVE LINE
========================================= */

.site-mobile-nav-list a::before {
  content: "";

  position: absolute;

  left: 0;

  width: 4px;
  height: 0;

  border-radius: 10px;

  background: var(--color-main);

  transition: height 0.3s ease;
}

.site-mobile-nav-list a:hover::before,
.site-mobile-nav-list a.active::before {
  height: 25px;
}

/* =========================================
   MOBILE APPOINTMENT
========================================= */

.mobile-menu-action {
  margin-top: 40px;
}

.mobile-menu-button {
  width: 100%;

  min-height: 54px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 14px 22px;

  border-radius: 50px;

  background: var(--color-main);

  color: #fff !important;

  font-family: var(--font-2), sans-serif;

  font-size: 15px;

  font-weight: 500;

  text-decoration: none;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.mobile-menu-button:hover {
  background: var(--color-darker);

  color: #fff !important;

  transform: translateY(-2px);
}

.mobile-menu-button::before {
  display: none !important;
}

/* =========================================
   BODY LOCK
========================================= */

body.site-menu-open {
  overflow: hidden;
}

/* =========================================
   TABLET
========================================= */

@media (min-width: 768px) and (max-width: 991.98px) {
  .site-navbar {
    width: calc(100% - 30px);

    margin-top: 10px;

    padding: 20px 18px;

    border-radius: 20px;
  }

  .site-logo img {
    width: 150px;

    height: auto;
  }

  /* Hide desktop nav */

  .site-navigation,
  .header-action {
    display: none;
  }

  /* Show hamburger */

  .site-menu-toggle {
    display: flex;
  }

  /* Menu */

  .site-mobile-menu-header {
    min-height: 90px;

    padding: 25px 35px;
  }

  .site-mobile-title {
    font-size: 25px;
  }

  .site-mobile-menu-body {
    height: calc(100vh - 90px);

    padding: 40px 35px;
  }

  .site-mobile-nav-list a {
    min-height: 75px;

    font-size: 22px;

    padding: 22px 5px;
  }

  .mobile-menu-action {
    max-width: 350px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {
  .site-navbar {
    width: calc(100% - 20px);

    margin-top: 8px;

    padding: 16px 14px;

    border-radius: 18px;
  }

  .site-logo img {
    width: 135px;

    height: auto;
  }

  /* Hide desktop nav */

  .site-navigation,
  .header-action {
    display: none;
  }

  /* Show hamburger */

  .site-menu-toggle {
    display: flex;

    width: 34px;

    height: 32px;
  }

  /* Menu header */

  .site-mobile-menu-header {
    min-height: 72px;

    padding: 18px 20px;
  }

  .site-mobile-title {
    font-size: 20px;
  }

  .site-menu-close {
    width: 36px;

    height: 36px;
  }

  /* Menu body */

  .site-mobile-menu-body {
    height: calc(100vh - 72px);

    padding: 25px 20px;
  }

  /* Menu links */

  .site-mobile-nav-list a {
    min-height: 65px;

    padding: 18px 5px;

    font-size: 18px;
  }

  .site-mobile-nav-list a:hover,
  .site-mobile-nav-list a.active {
    padding-left: 14px;
  }

  .mobile-menu-action {
    margin-top: 30px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {
  .site-navbar {
    width: calc(100% - 16px);

    padding: 15px 13px;

    border-radius: 16px;
  }

  .site-logo img {
    width: 128px;
  }

  .site-mobile-menu-header {
    min-height: 68px;

    padding: 16px 18px;
  }

  .site-mobile-menu-body {
    height: calc(100vh - 68px);

    padding: 20px 18px;
  }

  .site-mobile-nav-list a {
    min-height: 60px;

    padding: 16px 5px;

    font-size: 17px;
  }
}

/* =========================================
   VERY SMALL DEVICES
========================================= */

@media (max-width: 350px) {
  .site-logo img {
    width: 120px;
  }

  .site-menu-toggle {
    width: 32px;
  }

  .site-menu-toggle span {
    width: 28px;
  }

  .site-mobile-nav-list a {
    font-size: 16px;
  }
}

/* Hero Sections */
.unheard-hero {
  position: relative;
  min-height: 100vh;
  background-image: url("../images/hero/hero-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

/* =========================================
   HERO OVERLAY
========================================= */

.unheard-hero-overlay {
  min-height: 100vh;
  padding-bottom: 100px;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(17, 32, 21, 0.8) 0%,
    rgba(17, 32, 21, 0.55) 50%,
    rgba(17, 32, 21, 0.2) 100%
  );
}

/* =========================================
   HERO CONTENT
========================================= */

.unheard-hero-content {
  padding-top: 160px;
  max-width: 1220px;
}

/* =========================================
   HERO LABEL
========================================= */

.unheard-hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-1), sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.unheard-label-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  font-size: 8px;
}

/* =========================================
   HERO TITLE
========================================= */

.unheard-hero-title {
  width: 70%;
  margin: 24px 0 24px;
  color: #fff;
  font-family: var(--font-1), sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 68px;
  letter-spacing: -1.5px;
}

/* =========================================
   HERO DESCRIPTION
========================================= */

.unheard-hero-description {
  width: 60%;

  max-width: 800px;

  margin: 0;

  color: #d1d1d1;

  font-family: var(--font-2), sans-serif;

  font-size: 14px;

  line-height: 24px;
}

/* =========================================
   HERO BUTTONS
========================================= */

.unheard-hero-actions {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 38px;
}

.unheard-btn {
  min-width: 145px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 22px;

  border: 1px solid #fff;

  border-radius: 4px;

  background: #fff;

  color: #111;

  font-family: var(--font-2), sans-serif;

  font-size: 14px;

  font-weight: 500;

  text-decoration: none;

  transition: all 0.3s ease;
}

.unheard-btn:hover {
  background: transparent;

  color: #fff;
}

/* =========================================================
   BOOKING SECTION
========================================================= */
/* 
.unheard-booking-wrapper {
  margin-top: 90px;
  padding-bottom: 30px;
} */

.unheard-booking-card {
  position: relative;
  width: 100%;
  max-width: 1050px;
  padding: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.045)
  );
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* .unheard-booking-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -20%;
  width: 45%;
  height: 300%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 40%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.04) 60%,
    transparent 100%
  );
  transform: rotate(20deg);
  pointer-events: none;
}

.unheard-booking-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: 5%;
  width: 220px;
  height: 150px;
  background: rgba(92, 146, 105, 0.16);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
} */

.unheard-booking-intro,
.unheard-booking-form {
  position: relative;
  z-index: 2;
}

.unheard-booking-intro {
  margin-bottom: 25px;
}

.unheard-booking-intro h2 {
  margin: 0 0 15px;
  color: #fff;
  font-family: var(--font-1), sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.unheard-booking-intro p {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: var(--font-1), sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.unheard-booking-intro strong {
  font-weight: 600;
}

.unheard-booking-form {
  display: grid;

  grid-template-columns:
    minmax(180px, 1fr)
    minmax(180px, 1fr)
    minmax(160px, 1fr)
    auto;

  align-items: end;

  gap: 18px;
}

.unheard-form-group {
  width: 100%;
}

.unheard-form-group label {
  display: block;

  margin-bottom: 7px;

  color: #fff;

  font-family: var(--font-1), sans-serif;

  font-size: 13px;
}

.unheard-form-control {
  width: 100%;

  height: 45px;

  padding: 10px 12px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 8px;

  outline: none;

  background: rgba(255, 255, 255, 0.06);

  color: #fff;

  font-family: var(--font-1), sans-serif;

  font-size: 14px;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition: all 0.3s ease;
}

/* Placeholder */

.unheard-form-control::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

/* Input hover */

.unheard-form-control:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

/* Input focus */

.unheard-form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: var(--color-main);
  box-shadow:
    0 0 0 2px rgba(92, 146, 105, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.unheard-form-control:focus::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   DATE INPUT
========================================= */

.unheard-date-input {
  color-scheme: dark;
}

.unheard-date-input:focus {
  color-scheme: dark;
}

/* =========================================
   FORM SUBMIT
========================================= */

.unheard-form-submit {
  display: flex;

  align-items: flex-end;
}

/* =========================================
   SANCTUARY SELECT
========================================= */

.unheard-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background: rgba(255, 255, 255, 0.06)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 15px center;

  background-size: 12px;
}

/* Hover */

.unheard-select:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Focus */

.unheard-select:focus {
  background-color: rgba(255, 255, 255, 0.12);

  border-color: var(--color-main);
}

/* Placeholder option */

.unheard-select option[disabled] {
  color: #999;
}

/* Dropdown options */

.unheard-select option {
  background: #173b2b;
  color: #fff;

  font-family: var(--font-1), sans-serif;

  font-size: 14px;
}

/* Selected value */

.unheard-select:valid {
  color: #fff;
}


@media (min-width: 1200px) {
  .unheard-hero-content {
    padding-top: 180px;
  }

  .unheard-hero-title {
    font-size: 60px;
    max-width: 700px;
    line-height: 62px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .unheard-booking-wrapper {
    margin-top: 85px;
  }
}


@media (min-width: 768px) and (max-width: 991.98px) {
  /* ---------- Navbar ---------- */

  .site-navbar {
    width: calc(100% - 30px);
    margin-top: 10px;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .site-logo img {
    width: 150px;

    height: auto;
  }

  .site-menu-toggle {
    margin-right: 15px;
  }

  .site-offcanvas {
    --bs-offcanvas-width: 350px;

    width: 350px !important;
  }

  /* ---------- Hero ---------- */

  .unheard-hero {
    min-height: auto;
    background-position: center;
  }

  .unheard-hero-overlay {
    min-height: auto;
    padding-bottom: 70px;
  }

  .unheard-hero-content {
    padding-top: 120px 20px;
  }

  .unheard-hero-title {
    width: 90%;
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 30px;
  }

  .unheard-hero-description {
    width: 85%;
    font-size: 16px;
  }

  .unheard-hero-actions {
    margin-top: 30px;
  }

  /* ---------- Booking ---------- */

  .unheard-booking-wrapper {
    margin-top: 65px;
  }

  .unheard-booking-card {
    padding: 22px;
  }

  .unheard-booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .unheard-form-submit {
    justify-content: flex-start;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  /* ---------- Navbar ---------- */

  .site-navbar {
    width: calc(100% - 20px);
    margin-top: 8px;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .site-logo img {
    width: 200px;
    height: auto;
  }

  .site-menu-toggle {
    margin-right: 15px;
  }

  .site-offcanvas {
    --bs-offcanvas-width: 290px;
    width: 290px !important;
  }

  .site-offcanvas-body {
    padding: 20px;
  }

  /* ---------- Hero ---------- */

  .unheard-hero {
    background-position: right bottom;
  }

  .unheard-hero-label {
    align-items: flex-start;
    font-size: 12px;
    line-height: 18px;
    margin-top: 50px;
  }

  .unheard-label-icon {
    flex-shrink: 0;
    margin-top: 2px;
  }

  .unheard-hero-title {
    width: 100%;
    margin: 15px 0 15px;
    font-size: 30px;
    line-height: 34px;
    letter-spacing: -0.8px;
  }

  .unheard-hero-description {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }

  /* ---------- Hero Buttons ---------- */

  .unheard-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 15px;
  }

  /* =====================================================
     BOOKING
  ===================================================== */

  .unheard-booking-wrapper {
    margin-top: 50px;
  }

  .unheard-booking-card {
    padding: 18px;
    border-radius: 16px;
  }

  .unheard-booking-intro {
    margin-bottom: 25px;
  }

  .unheard-booking-intro h2 {
    font-size: 17px;
  }

  .unheard-booking-intro p {
    font-size: 14px;

    line-height: 1.65;
  }

  /* ---------- Booking Form ---------- */

  .unheard-booking-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .unheard-form-submit {
    width: 100%;

    margin-top: 5px;
  }

  .unheard-form-submit .unheard-btn {
    width: 100%;
  }

  .unheard-form-control {
    height: 46px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
  .unheard-hero-content {
    padding-top: 50px;
  }

  .unheard-hero-title {
    font-size: 36px;
  }

  .unheard-hero-description {
    font-size: 13px;
  }

  .unheard-booking-card {
    padding: 15px;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #173b2b;
  padding: 90px 0 25px;
  color: #ffffff;
}

.footer .container {
  max-width: 1320px;
  margin: auto;
  padding: 0 15px;
}

/* =========================================================
   FOOTER GRID
========================================================= */

.footer-grid {
  display: grid;
  grid-template-columns:
    2.2fr
    1fr
    1.15fr
    1.35fr;

  gap: 70px;
  align-items: start;
}

/* =========================================================
   FOOTER ABOUT
========================================================= */

.footer-about {
  max-width: 420px;
}

.footer-logo {
  width: 210px;
  height: auto;
  display: block;
  margin-bottom: 30px;
}

.footer-about p {
  max-width: 400px;
  color: #d5d5d5;
  line-height: 24px;
  margin: 0 0 35px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
}

/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer h3 {
  position: relative;
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #fff;
  margin: 0 0 25px;
}

/* Small heading accent */

.footer h3::after {
  content: "";
  display: block;
  width: 35px;
  height: 1px;
  margin-top: 10px;
  background: var(--color-main, #5c9269);
}

/* =========================================================
   EXPLORE LINKS
========================================================= */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  position: relative;
  color: #d5d5d5;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 24px;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-main, #5c9269);
  padding-left: 6px;
}

/* =========================================================
   WORKING HOURS
========================================================= */

.footer-hours {
  max-width: 230px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-info-item p {
  margin: 0;
  color: #d5d5d5;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 24px;
}

/* =========================================================
   CONTACT
========================================================= */

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #d5d5d5;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 20px;
}

/* =========================================================
   CONTACT ICON
========================================================= */

.footer-info-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-contact-list li:hover .footer-info-icon,
.footer-info-item:hover .footer-info-icon {
  background: var(--color-main, #5c9269);
  border-color: var(--color-main, #5c9269);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   CONTACT LINKS
========================================================= */

.footer-contact-list a {
  color: #d5d5d5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--color-main, #5c9269);
}

/* =========================================================
   ADDRESS
========================================================= */

.footer-address {
  color: #d5d5d5;

  line-height: 1.7;
}

/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social-icons {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}

.footer-social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.footer-social-icons a:hover {
  background: var(--color-main, #5c9269);
  border-color: var(--color-main, #5c9269);
  transform: translateY(-5px);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
  margin-top: 65px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  color: #bfbfbf;

  font-family: "Lato", sans-serif;

  font-size: 14px;
}

/* Copyright */

.footer-copyright {
  color: #bfbfbf;
}

/* Designed & Developed */

.footer-credit {
  color: #bfbfbf;

  text-align: right;
}

.footer-credit a {
  color: #fff;

  font-weight: 500;

  text-decoration: none;

  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--color-main, #5c9269);
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns:
      1.8fr
      1fr
      1fr
      1.2fr;

    gap: 45px;
  }

  .footer-about {
    max-width: 350px;
  }
}


@media (max-width: 991.98px) {
  .footer {
    padding: 75px 0 25px;
  }

  .footer-grid {
    grid-template-columns:
      1.5fr
      1fr
      1fr;

    gap: 50px;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-contact {
    grid-column: span 1;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 40px 0 20px;
    align-items: start;
    text-align: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* About */

  .footer-about {
    max-width: 100%;
  }

  .footer-logo {
    width: 240px;
    justify-content: start;
    align-items: start;
    margin-bottom: 10px;
    margin-left: -38px;
    
  }

  .footer-social-icons {
    display: flex;
    justify-items: start;
    align-items: start;
  }

  .footer-about p {
    max-width: 500px;
    align-items: start;
    text-align: start;
    margin: 0 auto 15px;
  }

  /* Headings */

  .footer h3 {
    font-size: 24px;
    line-height: 28x;
    margin-bottom: 10px;
  }

  .footer h3::after {
    margin-right: auto;
    width: 50px;
    height: 1.5px;
    margin-bottom: 15px;
  }

  /* Explore */

  .footer-links a:hover {
    padding-left: 0;
  }

  /* Working hours */

  .footer-hours {
    max-width: 100%;
  }

  .footer-info-item {
    justify-content: start;
    align-items: start;
    text-align: start;
  }

  /* Contact */

  .footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
  }

  .footer-contact-list li {
    width: flex;
    align-items: start;
    text-align: start;
    margin-bottom: 5px;
  }

  /* Bottom */

  .footer-bottom {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    text-align: start;
    gap: 10px;
    margin-top: 40px;
  }

  .footer-credit {
    text-align: center;
  }
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.section-padding {
  padding: 60px 0;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-main);
  font-family: var(--font-1), sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  max-width: 750px;
  margin: 0;
  color: var(--heading-color-1);
  font-family: var(--font-1), sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.section-title span {
  color: var(--color-lighter);
}

.section-description {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--text-color-1);
  font-family: var(--font-2), sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.section-divider {
  width: 55px;
  height: 2px;
  margin: 25px 0;
  background: var(--color-main);
}

/* About Hero */
.about-hero {
  position: relative;
  min-height: 520px;
  background: url("../images/hero/hero-4.jpg") center / cover no-repeat;
  color: #fffcef;
}

.about-hero-overlay {
  min-height: 620px;
  display: flex;
  align-items: center;

  background: linear-gradient(
    90deg,
    rgba(17, 32, 21, 0.8) 0%,
    rgba(17, 32, 21, 0.55) 50%,
    rgba(17, 32, 21, 0.2) 100%
  );
}

.about-hero-content {
  max-width: 750px;
  padding-top: 100px;
}

.about-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-1), sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
}

.about-hero-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--color-main);
}

.about-hero-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-1), sans-serif;
  font-size: clamp(60px, 8vw, 110px);
  font-weight: 500;
  line-height: 110px;
  letter-spacing: -1px;
}

.about-hero-description {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-2), sans-serif;
  font-size: 14px;
  line-height: 20px;
}


/* About Story*/
.about-story {
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.about-story-content p {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--text-color-1);
  font-family: var(--font-2), sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.about-story-image {
  position: relative;
  padding: 0 25px 25px 0;
}

.about-image-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 5px;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image-frame:hover img {
  transform: scale(1.04);
}

.about-image-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 75%;
  height: 75%;
  border: 1px solid var(--color-main);
}


/* About Counselors */
.about-counselors {
  background: #f7f8f5;
}

.section-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-bottom: 65px;

  text-align: center;
}

.counselors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

.counselor-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 32, 21, 0.08);
  border-radius: 12px;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.counselor-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 50px rgba(17, 32, 21, 0.12);
}

.counselor-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.counselor-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.counselor-card:hover img {
  transform: scale(1.05);
}

.counselor-content {
  padding: 28px;
}

.counselor-number {
  display: block;
  margin-bottom: 10px;

  color: var(--color-main);

  font-family: var(--font-2), sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
}

.counselor-content h3 {
  margin: 0 0 6px;

  color: var(--heading-color);

  font-family: var(--font-1), sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.counselor-role {
  display: block;
  margin-bottom: 15px;

  color: var(--color-main);

  font-family: var(--font-2), sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.counselor-content p {
  margin: 0;

  color: var(--text-color-1);

  font-family: var(--font-2), sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   OUR PROMISE
========================================================= */

.about-promise {
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #112015, #173b2b 50%, #112015);
}

.promise-header {
  margin-bottom: 60px;
}

.promise-header .section-eyebrow {
  color: var(--color-lighter);
}

.promise-header .section-title {
  color: #fff;
}

.promise-header .section-title span {
  color: var(--color-lighter);
}

.promise-header .section-description {
  color: rgba(255, 255, 255, 0.68);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

/* =========================================================
   PROMISE CARD
========================================================= */

.promise-card {
  position: relative;

  min-height: 270px;
  padding: 30px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.035)
  );

  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}

.promise-card::before {
  content: "";

  position: absolute;
  top: -100%;
  left: -25%;

  width: 50%;
  height: 300%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );

  transform: rotate(20deg);

  pointer-events: none;
}

.promise-card::after {
  content: "";

  position: absolute;
  right: -70px;
  bottom: -80px;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(92, 146, 105, 0.14);

  filter: blur(45px);

  pointer-events: none;
}

.promise-card:hover {
  transform: translateY(-6px);

  border-color: rgba(153, 199, 163, 0.45);
}

/* =========================================================
   PROMISE CARD TOP
========================================================= */

.promise-card-top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 45px;
}

.promise-number {
  color: rgba(255, 255, 255, 0.45);

  font-family: var(--font-2), sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
}

.promise-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  color: var(--color-lighter);

  font-size: 15px;
}

/* =========================================================
   PROMISE CONTENT
========================================================= */

.promise-card-content {
  position: relative;
  z-index: 2;
}

.promise-card-content h3 {
  margin: 0 0 12px;

  color: #fff;

  font-family: var(--font-1), sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.promise-card-content p {
  max-width: 500px;
  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-family: var(--font-2), sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .section-padding {
    padding: 85px 0;
  }

  .about-story-grid {
    gap: 45px;
  }

  .about-image-frame {
    height: 500px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .section-padding {
    padding: 40px 0;
  }

  .section-title {
    font-size: 30px;
  }

  /* Hero */

  .about-hero {
    min-height: 500px;
  }

  .about-hero-overlay {
    min-height: 500px;
    background: linear-gradient(
      90deg,
      rgba(17, 32, 21, 0.8),
      rgba(17, 32, 21, 0.45)
    );
  }

  .about-hero-content {
    padding: 90px 15px 0;
  }

  .about-hero-title {
    font-size: 60px;
    letter-spacing: -2px;
  }

  .about-hero-description {
    font-size: 14px;
  }

  /* Story */

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-story-content title {
    font-size: 30px;
  }

  .about-story-content p {
    font-size: 14px;
  }

  .about-story-image {
    padding-right: 12px;
    padding-bottom: 12px;
  }

  .about-image-frame {
    height: 430px;
  }

  /* Promise */

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .promise-card {
    min-height: 240px;
    padding: 24px;
    border-radius: 16px;
  }

  .promise-card-top {
    margin-bottom: 35px;
  }

  .promise-card-content h3 {
    font-size: 27px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
  .about-hero-title {
    font-size: 56px;
  }

  .about-image-frame {
    height: 360px;
  }

  .promise-card {
    min-height: 220px;
  }
}

/*About Counselors section*/
.about-counselors {
  background: #f7f8f5;
}

.about-counselors .section-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 55px;
  text-align: center;
}

.about-counselors .section-eyebrow {
  display: block;
  margin-bottom: 16px;
}

.about-counselors .section-title {
  margin: 0;
  text-align: center;
}

.counselor-intro-box {
  position: relative;
  width: 100%;
  padding: 70px 90px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.035)
  );

  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
  border: 1px solid rgba(17, 32, 21, 0.08);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(45px);
  animation: counselorFadeUp 0.9s ease forwards;
}

.counselor-intro-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 70px;
  height: 3px;
  background: linear-gradient(135deg, #112015, #173b2b 50%, #112015);
  transform: translateX(-50%);
}

.counselor-intro-content {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.counselor-intro-content p {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--font-1), sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.7;
}

.counselor-intro-content strong {
  color: var(--color-main);
  font-weight: 600;
}

@keyframes counselorFadeUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .about-counselors .section-header-center {
    margin-bottom: 45px;
  }

  .counselor-intro-box {
    padding: 60px 55px;
  }

  .counselor-intro-content p {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .counselor-intro-box {
    padding: 50px 35px;
    border-radius: 15px;
  }

  .counselor-intro-content p {
    font-size: 20px;
    line-height: 1.7;
  }
}

@media (max-width: 575px) {
  .about-counselors .section-header-center {
    margin-bottom: 35px;
  }

  .counselor-intro-box {
    padding: 40px 22px;
  }

  .counselor-intro-box::before {
    width: 55px;
  }

  .counselor-intro-content p {
    font-size: 14px;
    line-height: 22px;
  }
}

