/*
Theme Name: HTPVT Theme
Theme URI: https://helpthoughts.com
Author: Help Thoughts
Author URI: https://helpthoughts.com
Description: Customizable homepage theme for Help Thoughts Pvt Ltd. All homepage content is editable via Appearance → Customize.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: htpvttheme
*/

/* ==========================================================================
   CSS Variables (customizable via Customizer)
   ========================================================================== */
:root {
  --ht-primary: #3C71DA;
  --ht-primary-dark: #2d5bc2;
  --ht-text: #1a1a1a;
  --ht-text-muted: #6b7280;
  --ht-bg: #ffffff;
  --ht-bg-alt: #f8fafc;
  --ht-border: #e5e7eb;
  --ht-tag-bg: #dbeafe;
  --ht-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ht-radius: 8px;
  --ht-radius-lg: 12px;
  --ht-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --ht-container: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--ht-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ht-text);
  background: var(--ht-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ht-primary);
  text-decoration: none;
}

a:hover {
  color: var(--ht-primary-dark);
}

/* Container */
.ht-container {
  max-width: var(--ht-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Customizer image max width/height – applied when set in Customize */
.ht-custom-size-image img {
  max-width: var(--ht-img-max-w, 100%);
  max-height: var(--ht-img-max-h, none);
  object-fit: contain;
}
.ht-custom-size-image.ht-about-vision-placeholder,
.ht-custom-size-image.ht-contact-info-image-placeholder {
  max-width: var(--ht-img-max-w, 100%);
  max-height: var(--ht-img-max-h, none);
}
.ht-custom-size-image .ht-hero-image-placeholder,
.ht-custom-size-image .ht-hero-two-image-placeholder,
.ht-custom-size-image .ht-work-process-placeholder,
.ht-custom-size-image .ht-about-intro-placeholder,
.ht-custom-size-image .ht-about-vision-placeholder,
.ht-custom-size-image .ht-service-offerings-placeholder,
.ht-custom-size-image .ht-contact-info-image-placeholder {
  max-width: var(--ht-img-max-w, 100%);
  max-height: var(--ht-img-max-h, none);
}

/* ==========================================================================
   Header
   ========================================================================== */
.ht-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ht-bg);
  border-bottom: 1px solid var(--ht-border);
  padding: 16px 0;
}

/* Align logo with hero/banner content – same container as rest of page */
.ht-header .ht-logo {
  margin-left: 0;
}

.ht-header .custom-logo-link {
  display: flex;
  align-items: center;
  margin-left: 0;
  padding: 0;
}

.ht-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ht-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ht-text);
  text-decoration: none;
}

.ht-logo:hover {
  color: var(--ht-text);
}

.ht-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--ht-primary);
  color: #fff;
  border-radius: var(--ht-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

.ht-logo-text-script {
  font-style: italic;
  font-weight: 600;
}

.ht-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ht-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ht-nav-menu li {
  position: relative;
}

.ht-nav-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--ht-text);
  font-weight: 500;
  border-radius: var(--ht-radius);
}

.ht-nav-menu a:hover,
.ht-nav-menu .current-menu-item a {
  color: var(--ht-primary);
}

.ht-nav-menu .current-menu-item a {
  text-decoration: underline;
}

.ht-nav .dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  vertical-align: middle;
}

/* Mobile menu toggle (hidden on desktop) */
.ht-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius);
  cursor: pointer;
  color: var(--ht-text);
  transition: background 0.2s, color 0.2s;
}

.ht-nav-toggle:hover,
.ht-nav-toggle:focus {
  background: var(--ht-bg-alt);
  color: var(--ht-primary);
  outline: none;
}

.ht-nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.ht-header.ht-mobile-nav-open .ht-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ht-header.ht-mobile-nav-open .ht-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.ht-header.ht-mobile-nav-open .ht-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--ht-radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ht-btn-primary {
  background: var(--ht-primary);
  color: #fff;
}

.ht-btn-primary:hover {
  background: var(--ht-primary-dark);
  color: #fff;
}

.ht-btn-text {
  background: transparent;
  color: var(--ht-primary);
  padding: 8px 0;
}

.ht-btn-text:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Section common
   ========================================================================== */
.ht-section {
  padding: 80px 0;
}

.ht-section-alt {
  background: var(--ht-bg-alt);
}

.ht-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--ht-tag-bg);
  color: var(--ht-primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 12px;
}

.ht-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ht-text);
}

.ht-heading .ht-highlight {
  color: var(--ht-primary);
}

.ht-subheading {
  font-size: 1.125rem;
  color: var(--ht-text-muted);
  margin: 0 0 24px;
  max-width: 560px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.ht-hero {
  padding: 60px 0 80px;
}

.ht-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ht-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ht-text);
}

.ht-hero-content .ht-hero-desc {
  font-size: 1.125rem;
  color: var(--ht-text-muted);
  margin: 0 0 28px;
}

.ht-hero-image {
  position: relative;
}

.ht-hero-image img {
  width: 100%;
  border-radius: var(--ht-radius-lg);
}

.ht-hero-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ht-bg-alt) 0%, #e0e7ff 100%);
  border-radius: var(--ht-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ht-text-muted);
  font-size: 0.875rem;
}

/* ==========================================================================
   Hero two-column (Startups / Consulting)
   ========================================================================== */
.ht-hero-two {
  padding: 80px 0;
}

.ht-hero-two-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ht-hero-two-content .ht-heading {
  margin-bottom: 16px;
}

.ht-hero-two-points {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.ht-hero-two-points li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.ht-hero-two-points .ht-point-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--ht-primary);
  color: #fff;
  border-radius: var(--ht-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.ht-hero-two-points .ht-point-text {
  margin: 0;
  color: var(--ht-text-muted);
  font-size: 1rem;
}

.ht-hero-two-image img {
  width: 100%;
  border-radius: var(--ht-radius-lg);
}

.ht-hero-two-image-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-radius: var(--ht-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ht-text-muted);
  font-size: 0.875rem;
}

/* ==========================================================================
   Services
   ========================================================================== */
.ht-services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.ht-services-header .ht-subheading {
  margin-left: auto;
  margin-right: auto;
}

.ht-services-slider {
  position: relative;
  overflow: hidden;
}

.ht-services-track {
  display: flex;
  gap: 24px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.ht-services-track::-webkit-scrollbar {
  display: none;
}

.ht-service-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
  background: var(--ht-bg);
  border-radius: var(--ht-radius-lg);
  overflow: hidden;
  box-shadow: var(--ht-shadow);
  border: 1px solid var(--ht-border);
  display: flex;
  flex-direction: column;
}

.ht-service-card-top {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ht-service-card-top.ht-bg-lavender { background: #ede9fe; }
.ht-service-card-top.ht-bg-mint { background: #d1fae5; }
.ht-service-card-top.ht-bg-blue { background: #dbeafe; }
.ht-service-card-top.ht-bg-yellow { background: #fef3c7; }
.ht-service-card-top.ht-bg-peach { background: #ffedd5; }

.ht-service-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ht-bg);
  border: 2px solid var(--ht-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.ht-service-card-body {
  padding: 24px;
  flex: 1;
}

.ht-service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ht-text);
}

.ht-service-card p {
  margin: 0 0 16px;
  color: var(--ht-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.ht-services-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.ht-services-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ht-border);
  background: var(--ht-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--ht-text);
}

.ht-services-nav button:hover {
  background: var(--ht-primary);
  border-color: var(--ht-primary);
  color: #fff;
}

.ht-services-counter {
  font-size: 0.875rem;
  color: var(--ht-text-muted);
}

/* ==========================================================================
   Work Process (wireframe: top row = tag+heading | paragraph+button; image full-width below)
   ========================================================================== */
.ht-work-process-inner {
  display: block;
}

.ht-work-process-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}

.ht-work-process-left .ht-tag {
  margin-bottom: 12px;
}

.ht-work-process-left .ht-heading {
  margin-bottom: 0;
}

.ht-work-process-right .ht-subheading {
  margin-bottom: 24px;
  max-width: 100%;
}

.ht-work-process-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.ht-work-process-image-link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
  width: 100%;
}

.ht-work-process-image-link:hover {
  opacity: 0.92;
}

.ht-work-process-image-link img,
.ht-work-process-image-link .ht-work-process-placeholder {
  display: block;
  pointer-events: none;
}

.ht-work-process-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--ht-radius-lg);
  display: block;
  object-fit: contain;
}

.ht-work-process-placeholder {
  aspect-ratio: 16/10;
  width: 100%;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  border-radius: var(--ht-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ht-text-muted);
  font-size: 0.875rem;
  padding: 24px;
  text-align: center;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.ht-why-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}

.ht-why-content {
  max-width: 420px;
}

.ht-why-content .ht-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.ht-why-content .ht-heading {
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.25;
}

.ht-why-content .ht-subheading {
  margin-bottom: 24px;
  line-height: 1.6;
}

.ht-why-decor {
  margin-top: 16px;
}

.ht-why-decor-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ht-why-decor-image img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

.ht-why-decor-image.ht-custom-size-image img {
  width: auto;
  height: auto;
  max-width: var(--ht-img-max-w, 64px);
  max-height: var(--ht-img-max-h, 64px);
}

.ht-why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ht-why-card {
  background: var(--ht-bg);
  border-radius: var(--ht-radius-lg);
  padding: 24px;
  border: 1px solid var(--ht-border);
  box-shadow: var(--ht-shadow);
  text-align: left;
}

.ht-why-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-why-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ht-text);
}

.ht-why-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ht-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Clients
   ========================================================================== */
.ht-clients-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.ht-clients-header .ht-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.ht-clients-header .ht-heading {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.25;
}

.ht-clients-header .ht-subheading {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  line-height: 1.6;
  text-align: center;
}

.ht-clients-slider {
  position: relative;
}

.ht-clients-track {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.ht-client-item {
  flex: 0 0 160px;
  width: 160px;
  text-align: center;
  padding: 24px 16px;
  background: var(--ht-bg);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-lg);
  box-shadow: var(--ht-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 140px;
}

.ht-client-logo {
  width: 100%;
  min-height: 80px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.ht-client-logo img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ht-client-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ht-text-muted);
  letter-spacing: 0.02em;
}

.ht-client-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ht-text);
  line-height: 1.3;
}

.ht-clients-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.ht-clients-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ht-border);
  background: var(--ht-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--ht-text);
}

.ht-clients-nav button:hover {
  background: var(--ht-primary);
  border-color: var(--ht-primary);
  color: #fff;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.ht-faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.ht-faq-visual {
  position: relative;
  min-height: 280px;
}

.ht-faq-visual img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/* Let Customizer image size options override the default when set */
.ht-faq-visual.ht-custom-size-image img {
  max-width: var(--ht-img-max-w, 280px);
  max-height: var(--ht-img-max-h, none);
  object-fit: contain;
}

.ht-faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ht-faq-item {
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.ht-faq-question {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  background: var(--ht-bg);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ht-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ht-faq-item.is-open .ht-faq-question {
  background: var(--ht-primary);
  color: #fff;
}

.ht-faq-question .ht-faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
}

.ht-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.ht-faq-item.is-open .ht-faq-answer {
  max-height: 500px;
}

.ht-faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.ht-footer {
  background: var(--ht-bg-alt);
  padding: 60px 0 40px;
  border-top: 1px solid var(--ht-border);
}

.ht-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.ht-footer-brand .ht-logo {
  margin-bottom: 12px;
}

.ht-footer-tagline {
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
  margin: 0 0 20px;
  max-width: 280px;
}

.ht-footer-address h4,
.ht-footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ht-text);
}

.ht-footer-address p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ht-text-muted);
  line-height: 1.6;
}

.ht-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ht-footer-menu li {
  margin-bottom: 8px;
}

.ht-footer-menu a {
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
}

.ht-footer-menu a:hover {
  color: var(--ht-primary);
}

/* ==========================================================================
   About Us Page
   ========================================================================== */

/* About Hero */
.ht-about-hero {
  position: relative;
  padding: 60px 0 80px;
  background: #f0f4f8;
  overflow: hidden;
}

.ht-about-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  max-width: 480px;
  pointer-events: none;
  z-index: 0;
}

.ht-about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ht-about-hero-bg-left {
  left: 0;
  object-position: left bottom;
}

.ht-about-hero-bg-right {
  right: 0;
  left: auto;
  object-position: right bottom;
}

.ht-about-hero-bg-shape.ht-about-hero-bg-left {
  background: radial-gradient(ellipse 80% 60% at 0% 100%, rgba(59, 113, 218, 0.12) 0%, transparent 60%);
}

.ht-about-hero-bg-shape.ht-about-hero-bg-right {
  background: radial-gradient(ellipse 80% 60% at 100% 100%, rgba(59, 113, 218, 0.12) 0%, transparent 60%);
}

.ht-about-hero-decor {
  position: absolute;
  top: 20%;
  left: 15%;
  z-index: 1;
  opacity: 0.9;
}

.ht-about-hero-decor img {
  max-width: 48px;
  height: auto;
}

.ht-about-hero-decor.ht-custom-size-image img {
  max-width: var(--ht-img-max-w, 48px);
  max-height: var(--ht-img-max-h, none);
  width: auto;
  height: auto;
  object-fit: contain;
}

.ht-about-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ht-about-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ht-text);
  margin: 0 0 12px;
}

.ht-about-breadcrumb {
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
  margin-bottom: 32px;
}

.ht-about-breadcrumb a {
  color: var(--ht-text-muted);
}

.ht-about-breadcrumb-sep {
  margin: 0 8px;
}

.ht-about-hero-image {
  max-width: 720px;
  margin: 0 auto;
}

.ht-about-hero-image img {
  width: 100%;
  border-radius: var(--ht-radius-lg);
}

/* About Intro */
.ht-about-intro {
  position: relative;
  overflow: hidden;
}

.ht-about-intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.ht-about-intro-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.ht-about-intro-bg-shape {
  background: radial-gradient(ellipse 70% 80% at 0% 20%, rgba(219, 234, 254, 0.6) 0%, transparent 50%),
              radial-gradient(ellipse 60% 70% at 0% 90%, rgba(219, 234, 254, 0.4) 0%, transparent 45%);
}

.ht-about-intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.ht-about-intro-image-col img {
  width: 100%;
  border-radius: var(--ht-radius-lg);
}

.ht-about-intro-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  border-radius: var(--ht-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ht-text-muted);
  font-size: 0.875rem;
  padding: 24px;
}

.ht-about-intro-content p {
  margin: 0 0 16px;
  color: var(--ht-text-muted);
}

.ht-about-intro-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ht-border);
}

.ht-about-intro-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ht-about-intro-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ht-primary);
  line-height: 1.2;
}

.ht-about-intro-stat-label {
  font-size: 0.9375rem;
  color: var(--ht-text);
  margin-top: 4px;
}

/* About Vision */
.ht-about-vision-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ht-about-vision-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.ht-about-vision-card {
  padding: 24px;
  border-radius: var(--ht-radius-lg);
  border: 1px solid var(--ht-border);
  background: var(--ht-bg);
  box-shadow: var(--ht-shadow);
}

.ht-about-vision-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-about-vision-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ht-about-vision-card-icon-placeholder {
  font-size: 1.5rem;
  color: var(--ht-text-muted);
  font-weight: 700;
}

.ht-about-vision-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ht-text);
}

.ht-about-vision-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
  line-height: 1.5;
}

.ht-about-vision-image {
  position: sticky;
  top: 24px;
}

.ht-about-vision-image img {
  width: 100%;
  border-radius: var(--ht-radius-lg);
}

.ht-about-vision-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  border-radius: var(--ht-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ht-text-muted);
  font-size: 0.875rem;
  padding: 24px;
}

/* Key Players */
.ht-about-key-players {
  position: relative;
  overflow: hidden;
}

.ht-about-key-players-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.ht-about-key-players-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.ht-about-key-players-bg-shape {
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(219, 234, 254, 0.5) 0%, transparent 55%),
              radial-gradient(ellipse 50% 60% at 10% 80%, rgba(219, 234, 254, 0.35) 0%, transparent 50%);
}

.ht-about-key-players-inner {
  position: relative;
  z-index: 1;
}

.ht-about-key-players-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.ht-about-key-players-header .ht-subheading {
  margin-left: auto;
  margin-right: auto;
}

.ht-about-key-players-track {
  display: flex;
  gap: 48px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  scrollbar-width: none;
}

.ht-about-key-players-track::-webkit-scrollbar {
  display: none;
}

.ht-about-key-player-card {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--ht-bg);
  border-radius: var(--ht-radius-lg);
  padding: 48px;
  border: 1px solid var(--ht-border);
  box-shadow: var(--ht-shadow);
}

.ht-about-key-player-image-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.ht-about-key-player-image-wrap .ht-about-key-player-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ht-primary);
}

.ht-about-key-player-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--ht-primary);
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-about-key-player-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ht-primary);
  margin: 0 0 8px;
}

.ht-about-key-player-title {
  font-size: 1rem;
  color: var(--ht-text);
  margin: 0 0 16px;
}

.ht-about-key-player-bio {
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.ht-about-key-player-bio p {
  margin: 0 0 12px;
}

.ht-about-key-player-social {
  display: flex;
  gap: 12px;
}

.ht-about-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ht-primary);
  background: var(--ht-bg);
  color: var(--ht-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.ht-about-social-link:hover {
  background: var(--ht-primary);
  color: #fff;
}

.ht-about-key-players-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.ht-about-key-players-prev,
.ht-about-key-players-next {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--ht-border);
  background: var(--ht-bg);
  color: var(--ht-text);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-about-key-players-prev:hover,
.ht-about-key-players-next:hover {
  background: var(--ht-primary);
  border-color: var(--ht-primary);
  color: #fff;
}

.ht-about-key-players-counter {
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
}

/* Meet Team */
.ht-about-meet-team-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.ht-about-meet-team-header .ht-subheading {
  margin-left: auto;
  margin-right: auto;
}

.ht-about-meet-team-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ht-primary);
  margin: 24px 0 0;
}

.ht-about-meet-team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.ht-about-meet-team-member {
  flex: 0 0 auto;
  text-align: center;
  max-width: 160px;
}

.ht-about-meet-team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 12px;
  overflow: hidden;
  border: 3px solid #dbeafe;
  background: var(--ht-bg);
}

.ht-about-meet-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ht-about-meet-team-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ht-primary);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.ht-about-meet-team-name {
  display: block;
  font-weight: 600;
  color: var(--ht-primary);
  font-size: 1rem;
}

.ht-about-meet-team-role {
  display: block;
  font-size: 0.875rem;
  color: var(--ht-text-muted);
  margin-top: 4px;
}

/* Footer decorative background (curved shape on left) */
.ht-footer {
  position: relative;
  background: var(--ht-bg-alt);
  padding: 60px 0 40px;
  border-top: 1px solid var(--ht-border);
  overflow: hidden;
}

.ht-footer::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 45%;
  max-width: 500px;
  height: 140%;
  background: radial-gradient(ellipse 80% 50% at 30% 20%, rgba(219, 234, 254, 0.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.ht-footer-inner {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Service Single Page
   ========================================================================== */

/* Service Hero */
.ht-service-hero {
  position: relative;
  padding: 60px 0 80px;
  background: #f0f4f8;
  overflow: hidden;
}

.ht-service-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  max-width: 480px;
  pointer-events: none;
  z-index: 0;
}

.ht-service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ht-service-hero-bg-left {
  left: 0;
  object-position: left bottom;
}

.ht-service-hero-bg-right {
  right: 0;
  left: auto;
  object-position: right bottom;
}

.ht-service-hero-bg-shape.ht-service-hero-bg-left {
  background: radial-gradient(ellipse 80% 60% at 0% 100%, rgba(59, 113, 218, 0.12) 0%, transparent 60%);
}

.ht-service-hero-bg-shape.ht-service-hero-bg-right {
  background: radial-gradient(ellipse 80% 60% at 100% 100%, rgba(59, 113, 218, 0.12) 0%, transparent 60%);
}

.ht-service-hero-decor {
  position: absolute;
  top: 20%;
  left: 15%;
  z-index: 1;
  opacity: 0.9;
}

.ht-service-hero-decor img {
  max-width: 48px;
  height: auto;
}

.ht-service-hero-decor.ht-custom-size-image img {
  max-width: var(--ht-img-max-w, 48px);
  max-height: var(--ht-img-max-h, none);
  width: auto;
  height: auto;
  object-fit: contain;
}

.ht-service-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ht-service-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ht-primary);
  margin: 0 0 12px;
}

.ht-service-breadcrumb {
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
  margin-bottom: 32px;
}

.ht-service-breadcrumb a {
  color: var(--ht-text-muted);
}

.ht-service-breadcrumb a:hover {
  color: var(--ht-primary);
}

.ht-service-breadcrumb-sep {
  margin: 0 8px;
}

.ht-service-hero-image {
  max-width: 720px;
  margin: 0 auto;
}

.ht-service-hero-image img {
  width: 100%;
  border-radius: var(--ht-radius-lg);
}

/* Service Offerings */
.ht-service-offerings {
  position: relative;
  overflow: hidden;
}

.ht-service-offerings-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.ht-service-offerings-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.ht-service-offerings-bg-shape {
  background: radial-gradient(ellipse 60% 70% at 0% 10%, rgba(219, 234, 254, 0.4) 0%, transparent 50%);
}

.ht-service-offerings-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.ht-service-offerings-visual img {
  width: 100%;
  border-radius: var(--ht-radius-lg);
}

.ht-service-offerings-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  border-radius: var(--ht-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ht-text-muted);
  font-size: 0.875rem;
  padding: 24px;
}

.ht-service-offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.ht-service-offering-card {
  padding: 20px;
  border-radius: var(--ht-radius-lg);
  border: 1px solid var(--ht-border);
  background: var(--ht-bg);
  box-shadow: var(--ht-shadow);
}

.ht-service-offering-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-service-offering-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ht-service-offering-card-icon-placeholder {
  font-size: 1.25rem;
  color: var(--ht-primary);
  font-weight: 700;
}

.ht-service-offering-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ht-text);
}

.ht-service-offering-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
  line-height: 1.5;
}

/* Service Why Choose Us */
.ht-service-why {
  position: relative;
  overflow: hidden;
}

.ht-service-why-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.ht-service-why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.ht-service-why-bg-shape {
  background: radial-gradient(circle 50% at 50% 50%, rgba(219, 234, 254, 0.35) 0%, transparent 60%);
}

.ht-service-why-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.ht-service-why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.ht-service-why-header .ht-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.ht-service-why-header .ht-heading {
  margin-bottom: 12px;
}

.ht-service-why-header .ht-subheading {
  margin: 0 0 16px;
}

.ht-service-why-decor {
  margin-top: 8px;
}

.ht-service-why-decor img {
  max-width: 48px;
  height: auto;
}

.ht-service-why-decor-default {
  font-size: 2rem;
  color: var(--ht-primary);
  opacity: 0.8;
}

.ht-service-why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.ht-service-why-card {
  padding: 28px;
  border-radius: var(--ht-radius-lg);
  border: 1px solid var(--ht-border);
  background: var(--ht-bg);
  box-shadow: var(--ht-shadow);
  text-align: center;
}

.ht-service-why-card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-service-why-color-purple {
  background: rgba(147, 51, 234, 0.15);
}

.ht-service-why-color-orange {
  background: rgba(249, 115, 22, 0.15);
}

.ht-service-why-color-blue {
  background: rgba(59, 113, 218, 0.15);
}

.ht-service-why-color-green {
  background: rgba(34, 197, 94, 0.15);
}

.ht-service-why-card-icon {
  width: 28px;
  height: 28px;
}

.ht-service-why-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ht-service-why-card-icon-placeholder {
  font-size: 1.5rem;
  line-height: 1;
}

.ht-service-why-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ht-text);
}

.ht-service-why-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
  line-height: 1.5;
}

/* Service FAQ */
.ht-service-faq .ht-service-faq-heading {
  margin-bottom: 24px;
}

.ht-service-faq-placeholder {
  font-size: 120px;
  line-height: 1;
  color: var(--ht-primary);
  opacity: 0.3;
  font-weight: 700;
}

/* ==========================================================================
   Contact Us Page
   ========================================================================== */

.ht-contact-hero {
  position: relative;
  padding: 60px 0 48px;
  background: #f0f4f8;
  overflow: hidden;
}

.ht-contact-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  max-width: 480px;
  pointer-events: none;
  z-index: 0;
}

.ht-contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ht-contact-hero-bg-left {
  left: 0;
  object-position: left bottom;
}

.ht-contact-hero-bg-right {
  right: 0;
  left: auto;
  object-position: right bottom;
}

.ht-contact-hero-bg-shape.ht-contact-hero-bg-left {
  background: radial-gradient(ellipse 80% 60% at 0% 100%, rgba(59, 113, 218, 0.12) 0%, transparent 60%);
}

.ht-contact-hero-bg-shape.ht-contact-hero-bg-right {
  background: radial-gradient(ellipse 80% 60% at 100% 100%, rgba(59, 113, 218, 0.12) 0%, transparent 60%);
}

.ht-contact-hero-decor {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.9;
}

.ht-contact-hero-decor img {
  max-width: 48px;
  height: auto;
}

.ht-contact-hero-decor.ht-custom-size-image img {
  max-width: var(--ht-img-max-w, 48px);
  max-height: var(--ht-img-max-h, none);
  width: auto;
  height: auto;
  object-fit: contain;
}

.ht-contact-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ht-contact-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ht-text);
  margin: 0 0 12px;
}

.ht-contact-hero-subtitle {
  font-size: 1.125rem;
  color: var(--ht-text-muted);
  margin: 0 0 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.ht-contact-breadcrumb {
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
  margin-bottom: 0;
}

.ht-contact-breadcrumb a {
  color: var(--ht-text-muted);
}

.ht-contact-breadcrumb a:hover {
  color: var(--ht-primary);
}

.ht-contact-breadcrumb-sep {
  margin: 0 8px;
}

.ht-contact-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ht-contact-form-card {
  background: var(--ht-bg);
  border-radius: var(--ht-radius-lg);
  padding: 40px;
  box-shadow: var(--ht-shadow);
  border: 1px solid var(--ht-border);
}

.ht-contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ht-text);
  margin: 0 0 24px;
}

.ht-contact-message {
  padding: 12px 16px;
  border-radius: var(--ht-radius);
  margin-bottom: 20px;
}

.ht-contact-message-success {
  background: #d1fae5;
  color: #065f46;
}

.ht-contact-message-error {
  background: #fee2e2;
  color: #991b1b;
}

.ht-contact-form .ht-contact-field {
  margin: 0 0 20px;
}

.ht-contact-form label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ht-text);
  margin-bottom: 6px;
}

.ht-contact-form input[type="text"],
.ht-contact-form input[type="email"],
.ht-contact-form input[type="tel"],
.ht-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius);
  background: var(--ht-bg);
  color: var(--ht-text);
  font-family: inherit;
}

.ht-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.ht-contact-form input:focus,
.ht-contact-form textarea:focus {
  outline: none;
  border-color: var(--ht-primary);
  box-shadow: 0 0 0 3px rgba(59, 113, 218, 0.15);
}

.ht-contact-field-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.ht-contact-field-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--ht-primary);
}

.ht-contact-submit {
  margin: 24px 0 0;
}

.ht-contact-info-image {
  margin-bottom: 24px;
  border-radius: var(--ht-radius-lg);
  overflow: hidden;
}

.ht-contact-info-image img {
  width: 100%;
  height: auto;
}

.ht-contact-info-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  border-radius: var(--ht-radius-lg);
  margin-bottom: 24px;
}

.ht-contact-info-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ht-text);
  margin: 0 0 12px;
}

.ht-contact-info-desc {
  font-size: 1rem;
  color: var(--ht-text-muted);
  margin: 0 0 28px;
  line-height: 1.6;
}

.ht-contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ht-contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ht-contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ht-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.ht-contact-info-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ht-contact-info-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ht-text);
}

.ht-contact-info-item a {
  color: var(--ht-primary);
  font-size: 0.9375rem;
}

.ht-contact-info-item a:hover {
  text-decoration: underline;
}

.ht-contact-info-address {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ht-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .ht-hero-inner,
  .ht-hero-two-inner,
  .ht-why-inner,
  .ht-faq-inner {
    grid-template-columns: 1fr;
  }

  /* Home hero: image on top, then text (mobile/tablet) */
  .ht-hero-inner .ht-hero-image {
    order: -1;
  }

  .ht-why-content {
    max-width: none;
  }

  .ht-work-process-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ht-work-process-image {
    margin-top: 40px;
  }

  .ht-contact-form-inner {
    grid-template-columns: 1fr;
  }

  .ht-hero-two-inner .ht-hero-two-image {
    order: -1;
  }

  .ht-service-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 260px;
  }

  .ht-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .ht-about-key-player-card {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width: 768px) {
  .ht-header-inner {
    flex-wrap: wrap;
    position: relative;
  }

  .ht-nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .ht-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    margin: 0 -16px;
    margin-top: 16px;
    background: var(--ht-bg);
    border-top: 1px solid var(--ht-border);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  }

  .ht-header.ht-mobile-nav-open .ht-nav {
    display: flex;
  }

  .ht-nav-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .ht-nav-menu li {
    border-bottom: 1px solid var(--ht-border);
  }

  .ht-nav-menu li:last-child {
    border-bottom: none;
  }

  .ht-nav-menu a {
    padding: 14px 0;
    width: 100%;
  }

  .ht-nav .ht-btn {
    margin-top: 12px;
    justify-content: center;
  }

  body.ht-mobile-nav-open {
    overflow: hidden;
  }

  .ht-hero,
  .ht-section {
    padding: 48px 0;
  }

  .ht-service-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .ht-why-cards {
    grid-template-columns: 1fr;
  }

  .ht-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ht-footer-brand .ht-logo {
    justify-content: center;
  }

  .ht-footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  /* About page responsive */
  .ht-about-intro-inner,
  .ht-about-vision-inner {
    grid-template-columns: 1fr;
  }

  .ht-about-intro-inner .ht-about-intro-image-col {
    order: -1;
  }

  .ht-about-intro-stats {
    flex-direction: column;
    gap: 16px;
  }

  .ht-about-key-player-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ht-about-key-player-image-wrap {
    margin: 0 auto;
  }

  .ht-about-key-player-social {
    justify-content: center;
  }

  .ht-about-meet-team-grid {
    gap: 24px;
  }

  .ht-about-meet-team-member {
    max-width: 140px;
  }

  .ht-about-meet-team-avatar {
    width: 100px;
    height: 100px;
  }

  /* Service Single page responsive */
  .ht-service-offerings-inner {
    grid-template-columns: 1fr;
  }

  .ht-service-offerings-inner .ht-service-offerings-visual {
    order: -1;
  }

  .ht-service-offerings-grid {
    grid-template-columns: 1fr;
  }

  .ht-service-why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
