/*  ===== MOBILE styles (reside at the top and are inherited by all devices) ===== */
/*  ===== See tablet, desktop, and print @media queries at the bottom. */

/*   ----- Imports  -----  */
/* @import 'node_modules/modern-normalize/modern-normalize.css';  npm install modern-normalize  Resets elements for browser consistency.  https://www.npmjs.com/package/modern-normalize */
/* @import "component1.css";   Component-specific stylesheets, if any.   */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/*   ----- Variables  -----  */
:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-black-transparent: rgba(0, 0, 0, 0.6);
  --color-blue: #87cafd;
  --color-blue-transparent: #87cafdb3;
  --color-light-blue: #e8f5ff;
  --color-navy: rgb(1,42,74);
  --color-navy-transparent: rgba(1,42,74,0.6);
  --color-grey: #575656;;

}

/*  ----- Viewport ----- elements inherited by all remaining elements ----- */
html {
  scroll-behavior: smooth;
}

body {
  /* Can alternatively define in html {}. */

  /* font-weight: 450; */
  font-family: "Lora";
  margin: 0;
}

/*  ----- Page layout blocks -----  */
header,
main,
footer {
  /* padding: 20px 5px;
  margin: 0px; */
}
header,
footer {
  text-align: center;
}
header {}


footer {
  padding: 3rem;
  color: var(--color-white);
  ;
}

main {

}
section {
  
}
article {}

#topic1 {
}
#topic2 {
}
div {
}
aside {
}
footer {
}

/* ----- Anchors ----- Text links */
a {
  color: inherit;
  text-decoration: inherit;
}
a:link {
}
a:hover {
}
a:active {
}
a:visited {
}

/*  ----- Navigation ----- Override text links for navigation only.  */
/* nav {
  display: block;
} */

/*  -----  Typography  ----- */
p {
}
br {
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
},
dl {
}
li {
  display: list-item;
  text-align: ;
}
dt {
}
dd {
}

h1 {

}
h2{

}
h3 {

}
h4 {

}
h5 {

}
h6 {

}
h1 {

}

h2 {
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}

abbr {
}
acronym {
}
address {
}
blockquote {
}
q {
}
cite {
}
em {
}
hr {
}
mark {
}
s {
}
span {
}
strong {
}
sub {
}
sup {
}
time {
}

/*  ----- Coding or instructional typography ----- */
pre {
}
code {
}
kbd {
}
samp {
}
var {
}
del {
}
ins {
}

/*  ----- Table ----- */
table {

}
caption {

}
thead {

}
tbody {
}
tfoot {
}
td th {

}
tr {
}
th {
}

td {

}


colgroup {
}
data {
}
datalist {
}


/*  ----- Form ----- */
form {

}
fieldset {

}
legend {

}
label {

}
button,
input,
select,
textarea {

}
button {
}
button:hover {

}

input {

}

select {

}
optgroup {
}
option {
}
textarea {

}
output {
}
meter {
}
progress {
}
:focus {

}
*::placeholder {
  color: var(--water);
  font-size: 100%;
}

*:required {
  border: 1px solid green;
}

label.required:after {
  content: " *";
  color: red;
}


/* LIGHT THEMES */

.theme--light {
  background-color: var(--color-white);
  color: var(--color-black);
}

.theme--dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* NAVIGATION */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 4rem;
  background-color: var(--color-black);
  color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.blur {
  background-color: var(--color-black-transparent);
  border-bottom: 0.1px solid var(--color-white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Nav Links */
.nav-links {
  display: flex;
  /* flex-direction: row; */
  align-items: center;
  justify-content: flex-end;
  gap: .5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: #00aaff;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Animate to "X" */
.hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* CONTAINERS */

.wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1600px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.wrapper-narrow {
  padding-left: 15rem;
  padding-right: 10rem
}

.wrapper--half {
  max-width: 800px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}


/* ALIGNMENT */

.z-10 {
  z-index: 10;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.right-4 {
  right: 1rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.px-2\.5 {
  padding-left: .625rem;
  padding-right: .625rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flix {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none !important;
}

.block {
  display: block !important;
}

.grid-cols {
  grid-template-columns: repeat(2,minmax(0,1fr))
}



.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-side {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.flex-img img {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-last {
  order: 9999;
}

.place-items-center {
  place-items: center;
}

.content-start {
  align-content: flex-start;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-stretch {
  align-items: stretch;
}

.justify-center {
  justify-content: center
}

.justify-start {
  justify-content: flex-start
}

.justify-end {
  justify-content: flex-end
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

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

.gap-2 {
  gap: .5rem
}

.gap-10 {
  gap: 2.5rem;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-vidible {
  overflow: visible;
}

.max-full {
  width: 100%;
}

.max-w-full {
  max-width: 100%;
}

.h-auto {
  height: auto;
}

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

.object-contain {
  object-fit: contain;
}

.rounded-full {
  border-radius: 100%;
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.px-3 {
  padding-left: .75rem;
  padding-right: .75rem;
}

.px-10 {
  padding-left: 5.5rem;
  padding-right: 5.5rem;
}

.border-solid {
  border: 2px solid rgba(128, 128, 128, 0.746);
  border-radius: 40px;
}

.font-medium {
  font-weight: 500;
}

.font-size-64 {
  font-size: 64px;
}

.font-size-35 {
  font-size: 35px;
}

/* HOME PAGE */

.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  z-index: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.692);
  z-index: 1;
}

/* .hero-section > div {
  position: relative;
  max-width: 800px;
  width: 100%;
  z-index: 2;
} */

.hero-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-section h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  font-weight: 400;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.hero-top {
  z-index: 2;
}

.hero-bottom {
  z-index: 2;
}


/* About Section */

.meet-diann-section {
  padding: 4rem 2rem;
  /* background-color: #f9f9f9; */
}

.meet-diann-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.text-content {
  flex: 1 1 300px;
  min-width: 280px;
}

.image-content {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.image-content img {
  max-width: 250px;
  border-radius: 50%;
  height: auto;
}

/* ABOUT PAGE */

.about-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.692);
  z-index: 1;
}

.about-hero div {
  /* margin-top: 5rem; */
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.about-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-hero h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  font-weight: 400;
}

.text-content {
  /* grid-column: 1 / 2;
  grid-row: 2 / 3; */
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding: 2rem 1rem;
  z-index: 10;
}

/* .profile-img {
  max-width: 70%;
  height: auto;
  position: relative;
  margin-top: -5rem;
  z-index: 5;
  object-fit: contain;
} */

.about-layout {
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.about-img img {
  width: 100%;
  max-width: 350px;
  border-radius: 100%;
  object-fit: cover;
}

/* Text styling */
.about-text {
  max-width: 700px;
  text-align: left;
}

.frequency-section {
  padding: 3rem 1rem;
  overflow: hidden;
}

.frequency-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

/* Side columns */
.flex-side {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
}

/* Image column */
.flex-img {
  flex: 0 0 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

/* Bottom paragraph */
.frequency-bottom {
  margin-top: 2rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Headings */
.flex-side h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.flex-side h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Paragraphs */
.flex-side p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Large screen layout: side-by-side */
@media (min-width: 768px) {
  .about-layout {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .about-text {
    flex: 2;
    padding-right: 2rem;
  }

  .about-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
}

.button {
  padding: 10px 20px;
  text-align: center;
  border: solid 2px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 16px;
  max-width: 200px;
}

.button:hover{
  background-color: var(--color-blue-transparent);
}

.card-container {
  perspective: 1000px;
  width: 300px;
  height: 550px;
  margin: 2rem;
}

.card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s;
  cursor: pointer;
}

.card.flipped {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 6x 20px rgba(0, 0, 0, 0.211);
  background-color: white;
}

.card-front {
  background-color: var(--color-blue);
  color: var(--color-navy);
}

.card-back {
  background-color: var(--color-navy);
  color: white;
  transform: rotateY(180deg);
}

.offering-cards-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.fade-container {
  perspective: 1000px;
  width: 325px;
  height: 480px;
  margin: 1.5rem;
  flex-shrink: 0;
}

.fade-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: border-radius 0.3s ease;
}

/* Shared face styles */
.fade-front,
.fade-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Front face */
.fade-front {
  background-size: cover;
  background-position: center;
  color: black;
  opacity: 1;
  z-index: 2;
}

/* Back face */
.fade-back {
  background-color: var(--color-navy-transparent);
  color: white;
  opacity: 0;
  z-index: 1;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem;
  overflow-y: auto;
  max-height: 100%;
  scrollbar-width: thin;
}

/* Back content wrapper */
.fade-back-content {
  width: 100%;
  max-width: 80%;         /* Tighter to avoid ellipse edges */
  max-height: 100%;
  margin: 0 auto;
  padding: 0.5rem 0;
  text-align: center;     /* Better for curved shapes */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Heading at top of back */
.fade-back-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Paragraphs and list */
.fade-back-content p,
.fade-back-content li {
  font-size: 0.9rem;
  line-height: 1.5;
}

.fade-back-content ul {
  padding-left: 1.25rem;
  list-style-type: disc;
  margin: 0;
}

/* Hover behavior */
.fade-card:hover .fade-front {
  opacity: 0;
}

.fade-card:hover .fade-back {
  opacity: 1;
  z-index: 3;
}

#testimonial-prev,
#testimonial-next {
  background: transparent;
  color: #00aaff;
  font-size: 2rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s ease;
}

#testimonial-prev:hover,
#testimonial-next:hover {
  background-color: #00aaff1a; /* soft translucent hover */
  transform: scale(1.05);
}

.testimonial-arrows button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #00aaff;
}

/* Container spacing */
.contact-table {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Fieldsets */
.contact-table fieldset {
  border: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

/* Field labels */
.contact-table legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--color-navy);
  font-size: 1rem;
}

/* Inputs and selects */
.input,
.select {
  width: 100%;
  padding: 0.75rem 0;
  font-size: 1rem;
  border: 1px solid var(--color-navy-transparent);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background-color: #fafafa;
  font-family: "Lora", serif;
}

.input:focus,
.select:focus {
  border-color: var(--color-blue);
  background-color: var(--color-white);
}

/* Textarea */
textarea.input {
  min-height: 120px;
  resize: vertical;
}

/* Submit button */
.contact-table button[type="submit"] {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: "Lora", serif;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-table button[type="submit"]:hover {
  background: var(--color-navy);
}

/* Success message */
.success {
  background-color: #e6ffe6;
  border-left: 4px solid #4caf50;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  color: #2e7d32;
  font-family: "Lora", serif;
  font-size: 1rem;
}

.services-section {
  padding: 3rem 1rem;
  background-color: #f9f8f6;
  font-family: 'Lora', serif;
  color: #333;
}

.section-title {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #1d3a4b;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-group {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Category title (left column on large screens) */
.service-category h3 {
  font-size: 1.75rem;
  color: #1d3a4b;
  border-left: 4px solid #89C2D9;
  padding-left: 0.75rem;
  margin: 0;
}

/* Responsive layout for large screens */
@media (min-width: 1024px) {
  .service-group {
    flex-direction: row;
    align-items: flex-start;
  }

  .service-category {
    flex: 1;
    max-width: 250px;
    padding-right: 2rem;
  }

  .service-items {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.details {
  font-weight: 600;
  color: #666;
  margin-bottom: 1rem;
}

.service-card p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-card ul {
  padding-left: 1.2rem;
  list-style-type: disc;
  margin-bottom: 1rem;
}

.service-card ul li {
  margin-bottom: 0.5rem;
}

.example {
  font-style: italic;
  color: #555;
}

.category-title {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #1d3a4b;
  padding-left: 0.75rem;
  scroll-margin-top: 7rem;
}

.service-card h4 {
  font-size: 1.35rem;
  color: #2c3e50;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.fixed-subnav {
  position: sticky;
  top: 4rem;
  z-index: 999;
  background-color: #e1e1e171;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.fixed-subnav.blur {
  background-color: #e1e1e1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.services-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.sub-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sub-nav a {
  text-decoration: none;
  color: #1d3a4b;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
  transition: border-color 0.3s ease;
}

.sub-nav a:hover,
.sub-nav a.active {
  border-color: #89C2D9;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

.about-section h2 {
  font-size: 2rem;
  color: #1d3a4b;
  margin-bottom: 1rem;
}

.about-section h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.about-section p {
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: #333;
}

@media (max-width: 767px) {
  .about-section .grid-layout {
    flex-direction: column;
  }

  .about-section .text-content {
    order: 2;
    padding-top: 2rem;
  }

  .about-section .img-wrapper {
    order: 1;
    display: flex;
    justify-content: center;
  }

  .about-section .profile-img {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When in view */
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.our-sessions-section {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 1.5rem;
  position: relative;
}

.session-card {
  background-color: #fdfcf9;
  border-radius: 8px;
  padding: 3rem 2rem;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  font-family: 'Lora', serif;
  text-align: center;
  position: relative;
}

.session-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 1rem;
}

.session-heading {
  font-size: 2rem;
  font-weight: 600;
  padding: 1rem 0;
  margin-bottom: 3rem;
  border-top: 0.15rem dotted black;
  border-bottom: 0.15rem dotted black;
}

.session-subheading {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.session-subheading em {
  font-style: italic;
}

.session-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.session-cta {
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.session-button {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1.5px solid #333;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.session-button:hover {
  background-color: #1d3a4b;
  color: #fff;
}

.booking-section {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 25% 75%;
  padding: 5rem 1rem;
  position: relative;
  color: white;
}

.booking-overlay {
  background: rgba(0, 0, 0, 0.725);
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.booking-header h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.booking-header p {
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
}

.booking-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form fieldset {
  border: none;
  padding: 0;
}

.booking-form legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 90%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #111;
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-form button {
  width: 93%;
  background-color: #ffffff;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-form button:hover {
  background-color: #eee;
  color: #000;
}

.booking-success {
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}


/* TESTIMONIAL PAGE */

/* ========== Testimonial Section Styling ========== */
.section-wrapper {
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 4rem 2rem;
}

.section-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 0;
}

.section-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: white;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

.container-wrapper {
  max-width: 1500px;
  margin: 0 auto;
}

.testimonial-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

/* ========== Swiper Styling ========== */
.swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-wrapper {
  display: flex;
  gap: 1.5rem;
}

.swiper-slide {
  width: auto; /* Allow as many cards as fit */
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

/* ========== Testimonial Card ========== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 350px;
  height: 100%;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 170, 255, 0.4);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #eafafc;
}

.testimonial-meta {
  font-size: 0.95rem;
  color: #d1ecf1;
  text-align: right;
}

.testimonial-type {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #00aaff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 90%;
  }

  .testimonial-heading {
    font-size: 1.5rem;
  }

  p.text-lg {
    font-size: 1rem;
  }

  p.text-sm {
    font-size: 0.8125rem;
  }
}

/* ========== Swiper Arrows + Pagination ========== */
.testimonial-slider-wrapper {
  position: relative;
  padding: 1rem 2rem;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #888;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dot.active {
  background-color: #00aaff;
}

.testimonial-arrows button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: clack
  cursor: pointer;
  transition: transform 0.2s ease;
}

.testimonial-arrows button:hover {
  transform: scale(1.2);
}

/* Toggle Button */
.toggle-btn {
  background: none;
  border: none;
  color: #00aaff;
  cursor: pointer;
  font-weight: bold;
  margin-top: 0.5rem;
  padding: 0;
  font-size: 16px;
}

.toggle-btn:hover {
  text-decoration: underline;
}


 /* Small: Phones */ 
@media (max-width: 768px) {
  
  /* NAVIGATION */

  .hamburger {
    display: flex;
  }

  .hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background-color: var(--color-black-transparent);
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    backdrop-filter: blur(10px); /* Enables blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    transition: all 0.3s ease;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .nav-links a {
    margin: 0.5rem 0;
  }

.nav-links.blur {
  background-color: var(--color-black-transparent);
  border-bottom: 0.1px solid var(--color-white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-wrapper {
  justify-content: flex-start;
}

  /* HOME */

  .hero-section {
    /* background-size: contain;
    background-position: top;
    padding: 1.5rem;
    min-height: 50vh; */
    padding: 3rem 1rem;
    min-height: 80vh;
  }
  
  .hero-section::before {
    background: rgba(0, 0, 0, 0.4);

  }

  .hero-section h2 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
  }
  
  .hero-section h3 {
    font-size: 1rem;
  }

  .hero-content {
    height: 100%;
    justify-content: space-between;
  }

  .hero-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-top {
    margin-top: 1rem;
  }

  .hero-bottom {
    margin-bottom: 2rem;
  }

  .meet-diann-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .image-content {
    /* margin-top: 2rem; */
  }

  .offering-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .fade-container {
    width: 90vw;
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 1.5rem auto;
  }

  .fade-card {
    border-radius: 2rem;
  }

  .frequency-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .flex-side, .flex-img {
    width: 100%;
  }

  .flex-img img {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .flex-side h2 {
    font-size: 1.25rem;
  }

  .flex-side h3 {
    font-size: 1rem;
  }

  .flex-side p {
    font-size: 0.95rem;
  }

}


@media (max-width: 480px) {
  
  /* HOME */

  .hero-section {
    padding: 1rem;
    min-height: 40vh;
  }
  
  
  .hero-section h2 {
    font-size: 1rem;
  }
  
  .hero-section h3 {
    font-size: 0.8rem;
  }

  .fade-back-content p,
  .fade-back-content li {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .fade-back-content ul {
    padding-left: 1rem;
  }
}

/* Medium: Tablets */
@media (min-width: 768px) and (max-width: 1023px) { 

}