.readmore-lite {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;

  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Underline animation */
.readmore-lite::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.readmore-lite:hover::after {
  width: 100%;
  background: #fff; /* white on hover */
}

.readmore-lite span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.readmore-lite:hover {
  color: #fff;
}

.readmore-lite:hover span {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .readmore-lite {
    font-size: 14px;
  }
  .readmore-lite span {
    font-size: 16px;
  }
}

.footer-widget .links-list {
  display: flex;
  flex-direction: column; /* force single column */
}

.footer-widget .links-list li {
  list-style: none;
  margin-bottom: 10px;
  width: 100%; /* ensures full width */
  white-space: nowrap; /* text will not go to new line */
}

.footer-widget .links-list li a {
  display: inline-block;
}

.header-upper {
  background-image: url("/mnt/data/WhatsApp Image 2025-11-22 at 13.22.55_792eb32a.jpg");
  background-size: cover;
  background-position: center;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.header-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo-box img {
  height: 80px;
  width: auto;
}

/* Right Info */
.header-info .info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.header-info .info-list li {
  margin-bottom: 8px;
  color: #444;
  font-size: 16px;
}

.theme-btn {
  background: #2f4f6f;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .header-info {
    margin-top: 20px;
  }

  .header-info .info-list {
    text-align: center;
  }
}
/* about aravinda */
.about-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.about-section .image-block {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s;
}

.about-section .image-block:hover {
  transform: scale(1.03);
}

.about-section .image-wrapper {
  position: relative;
}

.about-section .image-wrapper .image img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.about-section .image-wrapper .image.image-2 {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 90%;
  opacity: 0.8;
}

.about-section .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-section .video-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(255, 107, 107, 0.8);
  border-radius: 50%;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.about-section .video-btn a:hover {
  background-color: #ff4757;
}

.about-section .content-block {
  padding: 20px 30px;
}

.about-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #222;
}

.about-section .subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ff6b6b;
  font-weight: 500;
}

.about-section .description {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.about-section .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #ff6b6b;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.about-section .btn-primary:hover {
  background: #ff4757;
}

/* Responsive */
@media (max-width: 992px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-section .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .about-section .subtitle {
    text-align: center;
    font-size: 1.1rem;
  }

  .about-section .description {
    text-align: center;
  }

  .about-section .btn-primary {
    display: block;
    margin: 20px auto 0;
    text-align: center;
  }

  .about-section .image-wrapper .image.image-2 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    margin-top: 20px;
  }
}
/* how ic ca help */
.service-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.service-section .section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card .icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.service-card .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #222;
}

.service-card h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.service-card h3 a:hover {
  color: #ff6b6b;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card .read-more {
  font-weight: 600;
  font-size: 0.95rem;
  color: #ff6b6b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.service-card .read-more:hover {
  color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .service-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .service-card {
    padding: 25px 15px;
  }
}

therapy-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.therapy-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.confidentiality-strip {
  margin-top: 3rem;
  padding-top: 1.2rem;
  font-size: 0.85rem;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 500; /* slightly bold */
}

/* Tablet */
@media (max-width: 768px) {
  .therapy-title {
    font-size: 1.7rem;
  }

  .therapy-inner p {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .therapy-fullwidth {
    padding: 80px 15px;
  }

  .therapy-title {
    font-size: 1.45rem;
  }

  .confidentiality-strip {
    font-size: 0.8rem;
  }
}
/* Full-width section */
.therapy-fullwidth {
  width: 100%;
  padding: 100px 20px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

/* Inner container */
.therapy-inner {
  max-width: 800px;
  width: 100%;
}

/* Title */
.therapy-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #000;
}

/* Paragraphs */
.therapy-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: #000;
}

/* Confidentiality strip */
.confidentiality-strip {
  margin-top: 3rem;
  padding-top: 1.2rem;
  font-size: 0.85rem;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 500;
}

/* Tablet */
@media (max-width: 768px) {
  .therapy-fullwidth {
    padding: 80px 20px;
  }

  .therapy-title {
    font-size: 1.7rem;
  }

  .therapy-inner p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .therapy-fullwidth {
    padding: 70px 15px;
  }

  .therapy-title {
    font-size: 1.45rem;
    margin-bottom: 1.5rem;
  }

  .therapy-inner p {
    font-size: 0.95rem;
  }

  .confidentiality-strip {
    font-size: 0.8rem;
  }
}

/* Wrapper */
.wa-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.wa-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: 0.3s;
}

.wa-button img {
  width: 30px;
}

.wa-button:hover {
  transform: scale(1.1);
}

/* Chatbox */
.wa-chatbox {
  width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: 80px;
  right: 0;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

.wa-header {
  background: #25d366;
  color: #fff;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.wa-header button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Body */
.wa-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-body input,
.wa-body textarea,
.wa-body select {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

/* Focus effect (premium feel) */
.wa-body input:focus,
.wa-body textarea:focus,
.wa-body select:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

/* Footer */
.wa-footer {
  padding: 12px;
}

.wa-footer button {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  padding: 11px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.wa-footer button:hover {
  background: #1ebe5d;
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .wa-chatbox {
    width: 92vw;
    right: 4vw;
  }
}
.footer-widget .links-list {
  display: flex;
  flex-direction: column; /* force single column */
}

.footer-widget .links-list li {
  list-style: none;
  margin-bottom: 10px;
  width: 100%; /* ensures full width */
  white-space: nowrap; /* text will not go to new line */
}

.footer-widget .links-list li a {
  display: inline-block;
}

.header-upper {
  background-image: url("/mnt/data/WhatsApp Image 2025-11-22 at 13.22.55_792eb32a.jpg");
  background-size: cover;
  background-position: center;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.header-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo-box img {
  height: 80px;
  width: auto;
}

/* Right Info */
.header-info .info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.header-info .info-list li {
  margin-bottom: 8px;
  color: #444;
  font-size: 16px;
}

.theme-btn {
  background: #2f4f6f;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .header-info {
    margin-top: 20px;
  }

  .header-info .info-list {
    text-align: center;
  }
}
/* benefit */
.skills-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.skills-section .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s;
}

.skills-section .image-box:hover {
  transform: scale(1.05);
}

.skills-section .image-box img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.skills-section .content-box {
  padding: 20px;
}

.skills-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.skills-section .description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.skills-section .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #ff6b6b;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.skills-section .btn-primary:hover {
  background: #ff4757;
}

/* Responsive */
@media (max-width: 1200px) {
  .skills-section .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .skills-section {
    padding: 50px 20px;
  }

  .skills-section .row {
    display: flex;
    flex-direction: column;
  }

  .skills-section .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .skills-section .description {
    text-align: center;
  }

  .skills-section .btn-primary {
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  .skills-section .image-box {
    margin-bottom: 30px;
  }
}
/* service icon */
/* Section */
.therapy-services {
  padding: 80px 20px;
  background: #f7f9f8;
  font-family: "Poppins", sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.section-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 16px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* hover stays same */
.service-card:hover {
  transform: translateY(-30px);
}

/* CLICK animation (swol / swell effect) */
.service-card.active {
  transform: scale(1.06);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.service-card:hover h3,
.service-card:hover p {
  color: #000;
}

/* Icon */
.service-card img {
  width: 60px;
  margin-bottom: 20px;
}

/* Title */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Text */
.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Mobile */
@media (max-width: 576px) {
  .section-heading {
    font-size: 28px;
  }
}
html {
  scroll-behavior: smooth;
}
/* READMORE */
.read-more {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  color: #333; /* dark text */
  background: #f5f5f5; /* light gray background */
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid #ddd; /* subtle border */
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
}

.read-more span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Hover effect */
.read-more:hover {
  background: #e0e0e0; /* slightly darker gray */
  color: #000; /* dark text on hover */
}

.read-more:hover span {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
  .read-more {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
/* Full width light background */
.therapy-closing-full {
  width: 100%;
  background: #f0f4f8; /* soft light pastel background */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* Centered text container */
.closing-container {
  max-width: 900px;
  background: #ffffff; /* light card inside */
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
  color: #2c3e50;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Paragraph styling */
.closing-container p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Hover effect */
.closing-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .therapy-closing-full {
    padding: 40px 15px;
  }
  .closing-container {
    padding: 25px 20px;
  }
  .closing-container p {
    font-size: 15px;
  }
}
/* Techniques Heading Inside Grid */
.therapy-techniques-heading {
  grid-column: 1 / -1;
  background: #f5faf8;
  padding: 40px 20px;
  border-radius: 14px;
  text-align: center;
  margin: 30px 0;
}

.therapy-techniques-heading h1 {
  font-size: 30px;
  font-weight: 600;
  color: #2f3a3f;
  max-width: 900px;
  margin: 0 auto 10px;
  line-height: 1.4;
}

.therapy-techniques-heading p {
  font-size: 16px;
  color: #7a8a8f;
}

/* Responsive */
@media (max-width: 768px) {
  .therapy-techniques-heading h1 {
    font-size: 22px;
  }

  .therapy-techniques-heading p {
    font-size: 14px;
  }
}
html {
  scroll-behavior: smooth;
}
.clinical-focus-section {
  background: #f9fafb;
  padding: 80px 20px;
  width: 100%;
}

.container {
  width: 100%;
  margin: auto;
}

/* Heading */
.focus-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.focus-heading h2 {
  font-size: 36px;
  color: #1f2933;
  margin-bottom: 15px;
}

.focus-heading p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Card */
.focus-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px 25px 25px 45px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.focus-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* Dot Icon */
.focus-card .dot {
  position: absolute;
  left: 20px;
  top: 30px;
  width: 10px;
  height: 10px;
  background: #5a8dee;
  border-radius: 50%;
}

/* How I Work */
.how-i-work {
  margin-top: 80px;
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.how-i-work h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1f2933;
}

.how-i-work p {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .focus-heading h2,
  .how-i-work h2 {
    font-size: 28px;
  }

  .how-i-work {
    padding: 35px 25px;
  }
}

/* =========================
   CHOOSE US / BENEFITS
========================= */
.chooseus-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2f4f6f, #1e2f45);
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.chooseus-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.chooseus-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.chooseus-section .sec-title h6 {
  color: #ffffff;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.chooseus-section .sec-title h2 {
  color: #ffffff;
  font-size: 2.8rem;
  margin-bottom: 30px;
}

/* Content Wrapper */
.benefits-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Grid layout */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card Style */
.benefits-list li {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 18px 20px;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left icon dot */
.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 18px;
  font-size: 14px;
  color: #00e0a4;
  font-weight: bold;
}

.benefits-list li {
  padding-left: 35px;
}

/* Hover effect */
.benefits-list li:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .chooseus-section {
    padding: 70px 20px;
  }

  .chooseus-section .sec-title h2 {
    font-size: 2rem;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .benefits-list li {
    font-size: 14px;
  }
}
