/**
 * Ear Theme Main Stylesheet
 * Premium, Modern, and Responsive Design
 */

/* ----------------------------------------------------
   1. Design Tokens & Variables
   ---------------------------------------------------- */
:root {
  --color-primary: #0F199E;
  /* Vivid Royal Blue */
  --color-primary-rgb: 15, 25, 158;
  --color-secondary: #00A7F6;
  /* Fresh Sky Blue */
  --color-secondary-rgb: 0, 167, 246;
  --color-accent: #f39c12;
  /* Golden Orange Accent */
  --color-dark: #1e272e;
  /* Obsidian Black */
  --color-light: #FAFAFE;
  /* Ghost White */
  --color-porcelain: #ffffff;
  /* Porcelain White */
  --color-white: #ffffff;
  --color-text-dark: #2c3e50;
  --color-text-muted: #101010;
  --color-border: #e6edf4;

  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(15, 25, 158, 0.08), 0 4px 6px -2px rgba(15, 25, 158, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 25, 158, 0.12), 0 10px 10px -5px rgba(15, 25, 158, 0.06);
  --shadow-glow: 0 0 20px rgba(0, 167, 246, 0.4);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* ----------------------------------------------------
   2. Reset & Global Styles
   ---------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-porcelain);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

ul,
ol {
  list-style: none;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

p,
.breadcrumbs {
  font-weight: 500;
}

/* Typography Helper */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.25;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto;
}
.mobile{
		display:none !important;
	}
	.desktop{
		display:block !important;
	}
@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1140px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

/* ----------------------------------------------------
   3. Custom Utilities & General Components
   ---------------------------------------------------- */
.section-padding {
  padding: 80px 0;
  background-color: #fff;
}

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

.common-title {
  font-size: 35px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.common-sub-title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.common-text {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* Utilities */
.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.max-w-700 {
  max-width: 700px;
}

.gap-4 {
  gap: 1.5rem !important;
}

.btn-block {
  width: 100% !important;
}

.product-thumb-contain {
  max-height: 160px;
  width: auto;
  object-fit: contain;
}

.banner-overflow-hidden {
  overflow: hidden;
}

.banner-img-cover {
  object-fit: cover;
  max-height: 480px;
  width: 100%;
}

.promo-disclaimer {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 15px;
  margin-bottom: 0px;

}

.text-secondary {
  color: var(--color-secondary) !important;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.logo {
  position: relative;
  height: 90px;
  display: flex;
  align-items: flex-start;
}

.logo a {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0px;
  /* Overlap downward */
  z-index: 1010;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
  /* Slight shadow to separate from hero */
}

.logo img {
  max-height: 75px;
  width: auto !important;
  display: block;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 61, 98, 0.4);
}

.btn-outline {
  color: #fff;
  background-color: #00aeef;
  padding: 10px 25px;
  border-radius: 5px;
  display: inline-flex;
  gap: 10px;
  transition: ease-in-out .3s all;
  text-transform: uppercase;
  align-items: baseline
}

.btn-outline:hover {
  color: #fff;
  background-color: #001c78
}

.product-card .btn-outline {
  padding: 10px 8px;
  text-transform: capitalize;
  background-color: #fff;
  color: #2e3192;
  font-weight: 600;
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ----------------------------------------------------
   4. Header & Navigation Template
   ---------------------------------------------------- */
.top-bar {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right a {
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


.main-header {
  background-color: rgba(255, 255, 255);
  box-shadow: var(--shadow-sm);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  transition: var(--transition-normal);
}

body.admin-bar .main-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .main-header {
    top: 46px;
  }
}

.main-header.scrolled {
/*   padding: 10px 0; */
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* .logo a moved up near .logo */

.logo span {
  color: var(--color-secondary);
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  color: #000000;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu li.current-menu-item a::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--color-secondary);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* ----------------------------------------------------
   5. Mobile Drawer Menu
   ---------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--color-white);
  z-index: 2000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  backdrop-filter: blur(4px);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-close {
  align-self: flex-end;
  font-size: 1.8rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-bottom: 30px;
}

.mobile-nav-links {
  margin-bottom: 40px;
}

.mobile-nav-links li {
  margin-bottom: 20px;
}

.mobile-nav-links a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
}

.mobile-nav-links a:hover {
  color: var(--color-secondary);
}

.drawer-contact {
/*   margin-top: auto; */
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}

.drawer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.drawer-contact p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* ----------------------------------------------------
   6. Hero Banner / Slider Section
   ---------------------------------------------------- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(0, 174, 239, 0.15) 0%, rgba(10, 61, 98, 0.05) 50%, rgba(255, 255, 255, 0) 100%), var(--color-white);
  padding: 100px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

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

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 174, 239, 0.1);
  color: var(--color-secondary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-primary) 30%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-circle-bg {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 90%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ----------------------------------------------------
   7. Quick Action Link Cards (Glassmorphism & Floating Cards)
   ---------------------------------------------------- */
.links-card-section {
  position: relative;
  z-index: 10;
  margin-top: -95px;
  padding-bottom: 30px;
}

.hero-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -160px;
  padding-bottom: 70px;
}

.hero-action-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.hero-action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.hero-action-card a {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
  min-height: 145px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

/* Card 1: Teal */
.hero-action-card.card-teal {
  background-color: #00a2b5;
}

/* Card 2: Sky Blue */
.hero-action-card.card-blue {
  background-color: #00AEF1;
}

/* Card 3: Deep Navy */
.hero-action-card.card-navy {
  background-color: #2b337c;
}

/* .hero-action-link-bg1 {
  background-image: url('../images/card-link-one.png');
  background-position: right;
  background-repeat: no-repeat;
}

.hero-action-link-bg2 {
  background-image: url('../images/card-link-two.png');
  background-position: right;
  background-repeat: no-repeat;
}

.hero-action-link-bg3 {
  background-image: url('https://demo14.antsstaging.com/wp-content/uploads/2026/09/oticon-remote-care-2-.png');
  background-position: right;
  background-repeat: no-repeat;
} */

/* Inner Translucent Card */
.hero-action-inner {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  margin: 12px 40% 10px 10px;
  padding: 14px 18px;
  flex: 1.15;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.hero-action-card.card-navy .hero-action-inner {
  background: rgba(255, 255, 255, 0.38);
}

/* Icon Badges */
.hero-action-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin-bottom: 6px;
}

.hero-action-badge.badge-teal {
  color: #00a2b5;
}

.hero-action-badge.badge-blue {
  color: #00AEF1;
}

.hero-action-badge.badge-red {
  color: #ef4444;
}

/* Card Title */
.hero-action-inner h3 {
  color: var(--color-primary, #0F199E);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 10px 0;
  font-family: var(--font-title, sans-serif);
}

/* Action Button Pill */
.hero-action-btn {
  background-color: #00A7F6;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 167, 246, 0.3);
}

.hero-action-card:hover .hero-action-btn {
  background-color: #0090d4;
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .hero-actions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: -40px;
    padding-bottom: 40px;
  }

  .hero-action-inner {
    margin: 10px;
  }

}

@media (max-width: 768px) {
  .hero-actions-grid {
    grid-template-columns: 1fr;

  }

  .hero-action-inner {
    margin: 12px 50% 10px 10px;
  }

}

/* Home Blog Cards */
.home-blog-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.home-blog-link {
  color: inherit;
  display: block;
  text-decoration: none;
}

.home-blog-thumb {
  height: 240px;
  overflow: hidden;
  background-color: var(--color-light);
}

.home-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-blog-card:hover .home-blog-thumb img {
  transform: scale(1.05);
}

.home-blog-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.home-blog-body {
  padding: 24px;
  flex-grow: 1;
}

.home-blog-category {
  font-size: 0.85rem;
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.home-blog-title {
  font-size: 1.3rem;
  margin-top: 6px;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--color-primary);
}

.home-blog-excerpt {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.action-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.action-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.action-link i {
  transition: var(--transition-fast);
}

.action-card:hover .action-link i {
  transform: translateX(4px);
}

/* ----------------------------------------------------
   8. About & Stats Section
   ---------------------------------------------------- */
.about-section {
  background-color: #eafaff;
}

.blog-card-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.best-brands .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.about-grid .brand-showcase-thumb {
  display: block;
  margin: 0 auto;
}

.about-grid .brand-showcase-thumb {
  height: auto;
  margin-top: 50px;
}

.about-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 50px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  background-color: var(--color-light);
  border-radius: var(--border-radius-sm);
  padding: 24px 16px;
  text-align: center;
  border-bottom: 3px solid var(--color-border);
  transition: var(--transition-normal);
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ----------------------------------------------------
   9. Hearing Aid / Solutions Showcase
   ---------------------------------------------------- */
.products-section {
  background: linear-gradient(180deg, var(--color-light) 0%, rgb(255, 255, 255) 100%);
}

.products-header {
  max-width: 700px;
  margin: 0 auto 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.products-grid .product-info {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.products-section .product-card {
  background: transparent;
  border: none;
  box-shadow: none;
}

.product-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 174, 239, 0.2);
}

.product-img-container {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img-container img {
  max-height: 60%;
  object-fit: contain;
  transition: var(--transition-slow);
  z-index: 1;
}

.product-card:hover .product-img-container img {
  transform: scale(1.08);
}

.product-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-tag {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-info h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.product-info p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* ----------------------------------------------------
   10. Interactive Hearing Test Promotional Block
   ---------------------------------------------------- */
.promo-section {
  background: url('https://www.ear.lk/templates/default/assets/images/hearing-test-background.jpg') no-repeat;
  background-size: cover;
  position: relative;
}

.promo-circle-deco {
  position: absolute;
  width: 600px;
/*   height: 600px; */
  background: radial-gradient(circle, rgba(0, 174, 239, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  top: -200px;
  left: -200px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.promo-content {
  position: relative;
  z-index: 10;
}

.promo-content h2 {
  color: var(--color-white);
}

.promo-content .common-text {
  color: #ffffff;
  font-weight: 500;
}

.promo-list {
  margin-bottom: 30px;
}

.promo-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 600;
}

.promo-list i {
  color: var(--color-secondary);
}

.promo-interactive {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.pulse-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.7);
  animation: pulse-ring 2s infinite;
  transition: var(--transition-normal);
}

.pulse-circle:hover {
  transform: scale(1.05);
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.pulse-circle i {
  font-size: 2rem;
  margin-bottom: 8px;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.7);
  }

  70% {
    box-shadow: 0 0 0 25px rgba(0, 174, 239, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0);
  }
}

/* ----------------------------------------------------
   11. Audiologist Booking Form Section
   ---------------------------------------------------- */
.booking-section {
  background-color: var(--color-white);
  position: relative;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.booking-info {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-info h3 {
  color: var(--color-white);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.booking-info-details {
  margin-top: 30px;
}

.booking-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.booking-info-item i {
  color: var(--color-secondary);
  font-size: 1.2rem;
  margin-top: 4px;
}

.booking-info-item h5 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.booking-info-item p {
  color: #a4b7c6;
  font-size: 0.9rem;
}

.booking-form-container {
  padding: 20px 0;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
  background-color: var(--color-white);
  box-shadow: 0 0 10px rgba(0, 174, 239, 0.1);
}

.booking-success-message {
  background-color: #2ecc71;
  color: var(--color-white);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ----------------------------------------------------
   12. Multi-Column Footer Template
   ---------------------------------------------------- */
.site-footer {
  background-color: #0c1821;
  color: #a4b7c6;
  padding: 80px 0 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-3px);
}

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

.footer-links a {
  color: #a4b7c6;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-info i {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-newsletter p {
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-left-radius: var(--border-radius-sm);
  border-bottom-left-radius: var(--border-radius-sm);
  padding: 12px 16px;
  color: var(--color-white);
}

.newsletter-form button {
  background-color: var(--color-secondary);
  border: none;
  color: var(--color-white);
  padding: 0 20px;
  border-top-right-radius: var(--border-radius-sm);
  border-bottom-right-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #a4b7c6;
}

.footer-bottom-links a:hover {
  color: var(--color-secondary);
}

/* ----------------------------------------------------
   13. Standard Page & Single Post Templates
   ---------------------------------------------------- */
.page-header-banner {
  background-color: #f2f3ff;
/*   height: 320px; */
  padding: 110px 0px;
  text-align: center;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.page-header-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.breadcrumbs {
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumbs a {
  color: #2c3e50;
}

.breadcrumbs span {
  margin: 0 8px;
}

.site-main-content {
  padding: 60px 0;
}

/* .wysiwyg-content {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
} */

.wysiwyg-content p {
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.wysiwyg-content h2,
.wysiwyg-content h3 {
  margin: 30px 0 15px;
}

/* ----------------------------------------------------
   14. Media Queries (Responsive Styling)
   ---------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .actions-grid>*:last-child {
    grid-column: span 2;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

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

  .common-title {
    font-size: 2rem;
  }

  .top-bar-left {
    display: none;
  }




  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-desc {
    margin: 0 auto 24px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-graphic {
    order: -1;
  }

  .hero-circle-bg {
    width: 300px;
    height: 300px;
  }

  .quick-actions {
    margin-top: 20px;
  }

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

  .actions-grid>*:last-child {
    grid-column: span 1;
  }

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

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .promo-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }

  .promo-list {
    display: inline-block;
    text-align: left;
  }

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

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

  .form-group-full {
    grid-column: span 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}


/* ----------------------------------------------------
   15. Custom Slideshow & Accordion Additions
   ---------------------------------------------------- */
.hero-section.hero-slideshow {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
  padding: 0;
  z-index: 0;
  aspect-ratio: 1900 / 790;
}

.hero-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1900 / 790;
  overflow: hidden;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 1900 / 790;
  object-fit: contain;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 25, 158, 0.8) 0%, rgba(15, 25, 158, 0.4) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.hero-section.hero-slideshow .hero-content {
  z-index: 3;
  max-width: 650px;
  position: relative;
}

.hero-section.hero-slideshow .hero-grid {
  display: block;
  /* Override default grid */
}
/* Custom Accordion styling for About Us Page */
.custom-accordion {
  margin-top: 30px;
}

.custom-accordion .accordion-item {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}

.custom-accordion .accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-title);
  color: var(--color-primary);
  font-size: 1.1rem;
}

.custom-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.custom-accordion .accordion-item.active .accordion-content {
  padding-top: 12px;
}

/* Links Card Action Grid styling */
.action-card-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  overflow: hidden;
}

.links-card {
  padding-top: 0px !important;
  margin-top: -140px;
  background-color: #eafaff;
}

.links-card .action-card-item a {
  display: block;
}

/* First item: order -1, red background */
.action-card-item:nth-child(1) {
  order: -1;
  background-color: #00a9bb;
}

/* Second child: blue background */
.action-card-item:nth-child(2) {
  background-color: #00AEF1;
}

/* Third child: green background */
.action-card-item:nth-child(3) {
  background-color: #333680;

}

.action-card-item a {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.action-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.action-card-content h3 {
  font-size: 1.3rem;
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-family: var(--font-title);
  font-weight: 600;
}

.action-card-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 12px;
}

.action-card-img {
  background-color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.action-card-img img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  transition: var(--transition-slow);
}

.action-card-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 167, 246, 0.3);
}

.action-card-item:hover .action-card-img img {
  transform: scale(1.08);
}

.action-btn-text {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.action-card-item:hover .action-btn-text {
  color: var(--color-primary);
}

.action-card-item:hover .action-btn-text i {
  transform: translateX(4px);
}

/* Google Reviews Card styling */
.google-reviews-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-header img {
  width: 50px;
  height: 50px;
}

.reviews-header .google-icon {
  width: 44px;
  height: 44px;
}

.reviews-header .values {
  display: flex;
  flex-direction: column;
}

.reviews-header .avg-values {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-header .stars {
  color: #f1c40f;
  font-size: 1.1rem;
}

.reviews-header .avg-rate {
  font-weight: 800;
  font-family: var(--font-title);
  color: var(--color-primary);
}

.reviews-header .count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Stats List Grid styling */
.stats-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 0;
  list-style: none;
}

.stats-list li {
  padding: 20px 15px;
  text-align: center;
  transition: var(--transition-normal);
  list-style: none;
}

.stats-list li:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.stats-list .stat-icon {
  height: 38px;
  width: auto;
  margin: 0 auto 10px;
  display: block;
  filter: invert(1);
}

.stats-list .stat-number {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.stats-list .number-text {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.stats-list .text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: 8px;
  margin-bottom: 0;
}

/* ----------------------------------------------------
   13. Testimonial Section & Slider
   ---------------------------------------------------- */
.testimonial-section {
  background-color: #f8fafc;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-slider-container {
  position: relative;
  max-width: 920px;
  overflow: hidden;
  margin: 0 auto;
}

@keyframes slideInRight {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}

@keyframes slideOutLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  animation: slideInRight 0.6s ease-in-out forwards;
}

.testimonial-slide.exiting {
  position: absolute;
  opacity: 1;
  visibility: visible;
  animation: slideOutLeft 0.6s ease-in-out forwards;
}

.testimonial-grid {

  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  align-items: center;
}

.testimonial-img {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
  background-color: #0f199e;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.testimonial-slide:hover .testimonial-img img {
  transform: scale(1.04);
}

.play-btn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 25, 158, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 3.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn-overlay:hover {
  background-color: rgba(15, 25, 158, 0.45);
  transform: scale(1.05);
  color: #00A7F6;
}

.testimonial-content {
  padding: 18vh 0px 0px 30px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: linear-gradient(90deg, #020a6c, transparent);
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
}

.testimonial-content .text-quote,
.testimonial-content .name {
  color: #fff !important;
}

.text-quote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 20px;
  position: relative;
  font-weight: 500;
}

.testimonial-content .name {
  font-size: 1.25rem;
  color: #0F199E;
  margin-bottom: 4px;
  font-weight: 600;
}

.testimonial-content .designation {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.control-dot {
  width: 35px;
  height: 4px;
  border-radius: 2px;
  background-color: #a4dcfa;
  cursor: pointer;
  transition: all 0.25s ease;
}

.control-dot.active,
.control-dot:hover {
  background-color: #00A7F6;
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-img {
    height: 240px;
  }

  .testimonial-content {
    padding: 24px 20px;
    text-align: center;
  }

  .text-quote {
    font-size: 0.98rem;
  }
}

/* WhatsApp Floating Widget styles */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #2ecc71;
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-widget i {
  font-size: 1.4rem;
}

.whatsapp-widget:hover {
  transform: scale(1.05);
  background-color: #27ae60;
  box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
}

.whatsapp-widget-popup {
  position: fixed;
  bottom: 95px;
  left: 30px;
  width: 340px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  z-index: 1001;
  overflow: hidden;
  transition: var(--transition-normal);
}

.whatsapp-widget-popup.d-none {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.whatsapp-widget-popup .top {
  background-color: #2ecc71;
  color: var(--color-white);
  padding: 24px;
}

.whatsapp-widget-popup .top h4 {
  color: var(--color-white);
  margin-bottom: 8px;
  font-weight: 600;
}

.whatsapp-widget-popup .top p {
  font-size: 0.85rem;
  opacity: 0.95;
  line-height: 1.5;
  margin: 0;
}

.whatsapp-widget-popup .top a {
  color: var(--color-white);
  text-decoration: underline;
}

.whatsapp-widget-popup .avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.whatsapp-widget-popup .avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-widget-popup .info {
  display: flex;
  flex-direction: column;
}

.whatsapp-widget-popup .info small {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.whatsapp-widget-popup .info span {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.whatsapp-widget-popup .bottom,
.whatsapp-widget-popup .top {
  padding: 20px 25px;
  overflow: hidden
}

.whatsapp-widget i {
  font-size: 22px
}

.whatsapp-widget span {
  margin-left: 10px
}

.whatsapp-widget-popup {
  position: fixed;
  bottom: 80px;
  left: 20px;
  box-shadow: 0 8px 25px -5px rgba(45, 62, 79, .15);
  width: 400px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 9999999;
  transition: 1s ease-in-out
}

.whatsapp-widget-popup .top {
  background-color: #25d366;
  color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px
}

.whatsapp-widget-popup .top p {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 15px
}

.whatsapp-widget-popup .bottom .avatar .avatar-img img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  object-fit: cover
}

.whatsapp-widget-popup .bottom .avatar .avatar-img .whatsapp-icon {
  position: absolute;
  bottom: 0;
  right: 0
}

.whatsapp-widget-popup .bottom .avatar .avatar-img .whatsapp-icon img {
  width: 16px !important;
  height: 16px !important
}

.whatsapp-widget-popup .bottom .info small {
  font-size: 12px;
  color: #333;
  display: block
}

.whatsapp-widget-popup .bottom .info span {
  color: #000;
  font-weight: 600;
  display: block;
  font-size: 15px
}

.whatsapp-widget-popup:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 24px;
  right: auto;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  background-color: #fff
}

@media (max-width: 575px) {
  .whatsapp-widget {
    border-radius: 100%;
    width: 60px;
    height: 60px;
    padding: 15px
  }

  .whatsapp-widget i {
    font-size: 35px
  }

  .whatsapp-widget span {
    display: none
  }

  .whatsapp-widget-popup .bottom,
  .whatsapp-widget-popup .top {
    padding: 20px
  }

  .whatsapp-widget-popup {
    width: 270px;
    bottom: 100px
  }

  .whatsapp-widget-popup .top p {
    font-size: 14.5px
  }

  .whatsapp-widget-popup .bottom .info span {
    font-size: 13px
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

/* Responsiveness adjustments */
@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .testimonial-img {
    height: 260px;
  }

  .testimonial-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .action-card-item a {
    grid-template-columns: 1fr;
  }

  .action-card-img {
    height: 160px;
  }

  .stats-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .whatsapp-widget-popup {
    bottom: 80px;
    right: 20px;
    width: 290px;
  }
}



/* ----------------------------------------------------
   15. Extracted Footer Styles
   ---------------------------------------------------- */
.site-footer-custom {
  background-color: #111646;
  color: #fff;
  position: relative;
  margin-top: 90px;
  padding-top: 0;
  padding-bottom: 20px;
}

.footer-newsletter-box-custom {
  position: relative;
  top: -55px;
  margin: 0 auto -20px;
  background: #ffffff;
  width: 90%;
  max-width: 1000px;
  border-radius: 10px;
  padding: 30px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.footer-newsletter-subtitle {
  color: #00b0f0;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.footer-newsletter-title {
  color: #111646;
  font-size: 1.5rem;
  margin: 0;
  font-weight:600;
  line-height: 1.3;
}

.footer-newsletter-form {
  display: flex;
  gap: 10px;
  width: 50%;
}

.footer-newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.footer-newsletter-btn {
  background-color: #00b0f0;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.footer-newsletter-btn:hover {
  background-color: #0090c5;
}

.footer-container-custom {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-col-logo {
  margin-bottom: 20px;
}

.footer-col-logo .custom-logo,
.footer-col-logo img,
.footer-logo-img img,
.footer-logo-img {
  max-width: 180px;
  height: auto;
  display: block;
  border-radius: 6px;
  /* background: #ffffff; */
  padding: 8px 12px;
}

.footer-col-address p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-col-address a.footer-email-link {
  color: #00b0f0;
  text-decoration: none;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social-icon {
  color: #fff;
  font-size: 1.2rem;
}

.footer-col-links {
  flex: 0 0 25%;
  margin-bottom: 30px;
}

.footer-col-quicklinks {
  flex: 0 0 20%;
  margin-bottom: 30px;
}

.footer-col-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2.2;
  font-size: 0.9rem;
}

.footer-link-item,
.footer-links-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link-item:hover,
.footer-links-list a:hover {
  color: #00b0f0;
}

.footer-dealers-row {
  text-align: center;
  margin-bottom: 40px;
}

.footer-dealers-title {
  color: #00b0f0;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-dealers-logos {
  display: flex;
  justify-content: center;
  gap: 45px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-dealer-logo-img {

  width: 120px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
}

.footer-dealer-logo-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-bottom-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: #cbd5e1;
}

.footer-copyright-text {
  margin: 0;
}

.footer-whatsapp-btn {
  position: absolute;
  left: 30px;
  top: -20px;
  background-color: #25d366;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  font-size: 0.95rem;
}

.footer-whatsapp-icon-inner {
  font-size: 1.3rem;
}

.footer-floating-badge {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  overflow: hidden;
}

.footer-floating-badge-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-logo-fallback {
  color: #ffffff;
}

.footer-badge-fallback {
  color: #111646;
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}


@media (max-width: 992px) {
  .site-footer-custom {
    margin-top: 70px;
  }

  .footer-newsletter-box-custom {
    top: -45px;
    margin: 0 auto 15px;
    width: 92%;
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .footer-newsletter-form {
    width: 100% !important;
    flex-direction: column;
    gap: 10px;
  }

  .footer-top-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .about-grid {
    grid-template-columns: 46% 1fr;
  }
}

@media (max-width: 768px) {
  .site-footer-custom {
    margin-top: 60px;
  }

  .footer-newsletter-box-custom {
    top: -35px;
    margin: 0 auto 20px;
    padding: 20px 16px;
    border-radius: 8px;
  }

  .footer-newsletter-title {
    font-size: 1.25rem;
  }

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col-logo {
    display: flex;
    justify-content: center;
  }

  .footer-col-logo .custom-logo,
  .footer-col-logo img,
  .footer-logo-img img,
  .footer-logo-img {
    margin: 0 auto;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* ----------------------------------------------------
   17. Product Category & Product Showcase Styles
   ---------------------------------------------------- */
.product-category-section {
  padding: 60px 0;
  background-color: var(--color-white, #ffffff);
}

.product-layout-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.product-sidebar {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.product-sidebar-menu-wrap {
  background: var(--color-white, #ffffff);
  border: 1px solid #eaeaea;
  border-radius: var(--border-radius-md, 8px);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-sidebar-menu li {
  border-bottom: 1px solid #eaeaea;
}

.product-sidebar-menu li:last-child {
  border-bottom: none;
}

.product-sidebar-menu a {
  display: block;
  padding: 15px 20px;
  color: #555555;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-normal, 0.3s ease);
}

.product-sidebar-menu a:hover {
  background: #f8f9ff;
  color: var(--color-primary, #0F199E);
}

.product-sidebar-menu .current-menu-item>a {
  background: #00b0f0;
  color: #ffffff;
  font-weight: 600;
}

.product-main-content {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 15px;
}

.category-details {
  margin-bottom: 50px;
}

.category-title {
  color: var(--color-primary, #0F199E);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.category-short-description {
  color: #555555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.category-image {
  margin-bottom: 30px;
  border-radius: var(--border-radius-md, 8px);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.category-image img {
  width: 100%;
  height: auto;
  display: block;
}

.category-long-description {
  color: #444444;
  line-height: 1.85;
  margin-bottom: 35px;
  font-size: 1rem;
}

/* Exploring Products Section */

.bg-product-list {
  padding: 4rem 0;
}

.exploring-products {
  background: #f8f9fa;
  padding: 40px;
  margin-bottom: 50px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.exploring-products-title {
  color: var(--color-primary, #0F199E);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.exploring-products-desc {
  color: #666666;
  font-size: 0.9rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  text-align: center;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product-item {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: var(--border-radius-md, 8px);
  width: 220px;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-item.active {
  border-bottom-width: 3px;
  border-bottom-color: #00b0f0;
}

.product-item.active-up {
  border-color: #00b0f0;
  box-shadow: 0 5px 20px rgba(0, 176, 240, 0.15);
}

.product-item-title {
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.product-item-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  display: block;
}

.active-arrow {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #00b0f0;
}

.active-arrow-up {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #00b0f0;
}

.category-explore-heading {
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  margin: 60px 0 25px;
}

/* Product Carousel & Swiper */
.product-carousel-wrapper {
  position: relative;
  padding: 10px 45px;
  margin-top: 25px;
}

.product-swiper {
  width: 100%;
  padding: 15px 5px 25px !important;
  overflow: hidden;
}

.product-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.product-swiper .product-item {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  display: block;
}

.swiper-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #0F199E);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.swiper-nav-btn:hover {
  background: #00b0f0;
  color: #ffffff;
  border-color: #00b0f0;
}

.swiper-nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.product-swiper-button-prev {
  left: 0;
}

.product-swiper-button-next {
  right: 0;
}

@media (max-width: 576px) {
  .product-carousel-wrapper {
    padding: 10px 30px;
  }

  .swiper-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* Detailed Product View */
.product-details-container {
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  margin-top: 40px;
}

.product-loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 10;
  align-items: center;
  justify-content: center;
}

.product-loader i {
  font-size: 2rem;
  color: var(--color-primary, #0F199E);
}

.pd-title {
  color: var(--color-primary, #0F199E);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.pd-divider {
  border: none;
  border-bottom: 1px solid #d5ddf0;
  margin-bottom: 30px;
}

.pd-divider-spaced {
  border: none;
  border-bottom: 1px solid #d5ddf0;
  margin: 35px 0 25px;
}

.pd-gallery-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 20px 0 35px;
  flex-wrap: wrap;
}

.pd-gallery-item {
  flex: 1 1 200px;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #ffffff;
  border-radius: var(--border-radius-md, 8px);
  transition: transform 0.3s ease;
}

.pd-gallery-item:hover {
  transform: translateY(-4px);
}

.pd-gallery-item img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

.pd-sub-title {
  color: var(--color-primary, #0F199E);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.pd-content {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1rem;
}

.pd-features-title {
  color: #333333;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.pd-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pd-features-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #555555;
  font-size: 0.95rem;
}

.pd-features-list li i {
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 6px;
  color: #888888;
}

.pd-share-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333333;
}

.pd-share-btns {
  display: flex;
  gap: 10px;
}

.pd-share-link {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.pd-share-link:hover {
  transform: translateY(-2px);
}

.pd-share-facebook {
  background: #e8f4fd;
  color: #1877f2;
}

.pd-share-whatsapp {
  background: #e6f9ed;
  color: #25d366;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .product-sidebar,
  .product-main-content {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .product-sidebar {
    margin-bottom: 40px;
  }

  .pd-gallery-wrap {
    gap: 15px;
  }

  .pd-gallery-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ----------------------------------------------------
   18. Online Hearing Test (5-Step Wizard Engine)
   ---------------------------------------------------- */
.hearing-test-page {
  background-color: var(--color-white, #ffffff);
  color: #334155;
  font-family: var(--font-body, 'Montserrat', sans-serif);
}

.oht-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* Collapsible Info Card */
.oht-info-card {
  border: 1.5px solid #00A7F6;
  border-radius: 12px;
  background: #ffffff;
  margin-bottom: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 167, 246, 0.06);
  transition: all 0.3s ease;
}

.oht-info-header {
  padding: 16px 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease;
}

.oht-info-header:hover {
  background: #f8fbff;
}

.oht-info-title {
  color: #0088cc;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.oht-info-toggle-icon {
  color: #0088cc;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oht-info-card.collapsed .oht-info-toggle-icon {
  transform: rotate(180deg);
}

.oht-info-body {
  padding: 24px 30px 30px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid #edf4fa;
  transition: all 0.35s ease;
}

.oht-info-card.collapsed .oht-info-body {
  display: none;
}

.oht-info-body h3 {
  color: #1e293b;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 24px 0 10px;
}

.oht-info-body h4 {
  color: #334155;
  font-size: 1rem;
  font-weight: 600;
  margin: 18px 0 8px;
}

.oht-info-body p {
  margin-bottom: 14px;
  color: #475569;
}

.oht-info-body ul {
  margin: 10px 0 16px 20px;
  list-style-type: disc;
}

.oht-info-body ul li {
  margin-bottom: 6px;
  color: #475569;
}

/* Stepper / Progress Bar */
.oht-stepper-wrapper {
  margin-bottom: 50px;
  padding: 0 10px;
}

.oht-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.oht-stepper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.oht-step-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.oht-step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  color: #64748b;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.oht-step-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  transition: all 0.3s ease;
}

.oht-step-item.active .oht-step-number {
  background: var(--color-primary, #0F199E);
  border-color: var(--color-primary, #0F199E);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 25, 158, 0.25);
}

.oht-step-item.active .oht-step-label {
  color: var(--color-primary, #0F199E);
  font-weight: 600;
}

.oht-step-item.completed .oht-step-number {
  background: #00A7F6;
  border-color: #00A7F6;
  color: #ffffff;
}

.oht-step-item.completed .oht-step-label {
  color: #00A7F6;
}

/* Wizard Panels */
.oht-step-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.oht-step-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* Step 1: About You Layout */
.oht-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.oht-about-left h2 {
  color: var(--color-primary, #0F199E);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.oht-about-left p {
  color: #556987;
  font-size: 0.95rem;
  line-height: 1.7;
}

.oht-form-group {
  margin-bottom: 18px;
}

.oht-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.oht-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.oht-form-label span.req {
  color: #ef4444;
}

.oht-input {
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #1e293b;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.oht-input:focus {
  border-color: #00A7F6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 167, 246, 0.15);
}

.oht-phone-input-group {
  display: flex;
  gap: 8px;
}

.oht-phone-input-group .oht-input {
  flex: 1;
}

.oht-verify-btn {
  background-color: #0c187d;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.oht-verify-btn:hover {
  background-color: #071059;
}

.oht-verify-btn.verified {
  background-color: #10b981;
  cursor: default;
}

.oht-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 24px;
  font-size: 0.9rem;
  color: #475569;
}

.oht-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #00A7F6;
}

.oht-btn-submit {
  width: 100%;
  height: 52px;
  background-color: #00A7F6;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.oht-btn-submit:hover {
  background-color: #0093da;
}

.oht-btn-submit:active {
  transform: scale(0.99);
}

/* Generic Step Boxes */
.oht-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  max-width: 800px;
  margin: 0 auto;
}

.oht-pad-lg {
  padding: 50px 30px 40px;
}

.oht-pad-md {
  padding: 45px 30px 35px;
}

.gauge-needle-group {
  transition: transform 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.oht-step-card-header {
  text-align: center;
  margin-bottom: 35px;
}

.oht-step-card-header h2 {
  color: var(--color-primary, #0F199E);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.oht-step-card-header p {
  color: #64748b;
  font-size: 1rem;
}

/* Step 2: Single Question One-By-One Layout */
.oht-question-single-card {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}

.oht-q-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.oht-q-text {
  color: var(--color-primary, #0F199E);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.35;
  max-width: 680px;
  margin: 0 auto 35px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.oht-q-buttons-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.oht-q-btn {
  background-color: #00A7F6;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  min-width: 120px;
  height: 48px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 167, 246, 0.2);
}

.oht-q-btn:hover {
  background-color: #0093da;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 167, 246, 0.3);
}

.oht-q-btn:active {
  transform: scale(0.98);
}

/* 5 Dashes Pagination Indicator */
.oht-q-dashes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.oht-q-dash {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background-color: #bce3fb;
  transition: all 0.3s ease;
  cursor: pointer;
}

.oht-q-dash.active {
  background-color: #00A7F6;
}

.oht-q-dash.completed {
  background-color: #00A7F6;
}

.oht-q-back-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.oht-q-back-btn:hover {
  color: var(--color-primary, #0F199E);
}

/* Step 3: Single Instruction One-By-One Layout */
.oht-inst-single-card {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}

.oht-inst-icon-wrapper {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.oht-inst-num {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.oht-inst-text {
  color: var(--color-primary, #0F199E);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.35;
  max-width: 680px;
  margin: 0 auto 35px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.oht-inst-buttons-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.oht-inst-btn {
  background-color: #00A7F6;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  min-width: 120px;
  height: 48px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 167, 246, 0.2);
}

.oht-inst-btn:hover {
  background-color: #0093da;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 167, 246, 0.3);
}

.oht-inst-btn:active {
  transform: scale(0.98);
}

/* 3 Dashes Pagination Indicator for Instructions */
.oht-inst-dashes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.oht-inst-dash {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background-color: #bce3fb;
  transition: all 0.3s ease;
  cursor: pointer;
}

.oht-inst-dash.active {
  background-color: #00A7F6;
}

.oht-inst-dash.completed {
  background-color: #00A7F6;
}

/* Step 4: Sound Test Layout */
.oht-sound-tester-card {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}

.oht-sound-circle-btn {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d3ecf9 0%, #8ea1d1 100%);
  box-shadow: 0 0 0 14px rgba(224, 239, 252, 0.7);
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border: none;
}

.oht-sound-circle-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 18px rgba(224, 239, 252, 0.9);
}

.oht-sound-circle-btn.playing {
  animation: soundHaloPulse 1.8s infinite;
}

@keyframes soundHaloPulse {
  0% {
    box-shadow: 0 0 0 12px rgba(0, 167, 246, 0.2);
  }

  50% {
    box-shadow: 0 0 0 24px rgba(0, 167, 246, 0.4);
  }

  100% {
    box-shadow: 0 0 0 12px rgba(0, 167, 246, 0.2);
  }
}

.oht-sound-title {
  color: #00A7F6;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.oht-sound-desc {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 25px;
}

/* Slider Row */
.oht-vol-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.oht-vol-icon {
  color: #00A7F6;
  font-size: 1.25rem;
}

.oht-vol-slider {
  -webkit-appearance: none;
  width: 250px;
  height: 5px;
  border-radius: 3px;
  background: #e2e8f0;
  outline: none;
  cursor: pointer;
}

.oht-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #9d8df1;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.oht-vol-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #9d8df1;
  cursor: pointer;
  border: none;
}

.oht-vol-value {
  color: #00A7F6;
  font-weight: 600;
  font-size: 1rem;
  min-width: 25px;
  text-align: left;
}

.oht-sound-buttons-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.oht-btn-hear {
  background-color: #00A7F6;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  min-width: 130px;
  height: 46px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 167, 246, 0.2);
}

.oht-btn-hear:hover {
  background-color: #0093da;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 167, 246, 0.3);
}

/* Step 5: Results Gauge & Card Layout */
.oht-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 10px;
}

.oht-gauge-column {
  text-align: center;
}

.oht-gauge-title {
  color: #1e293b;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.oht-gauge-svg-wrapper {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.oht-results-card-right {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  padding: 40px 35px;
  border: 1px solid #f1f5f9;
  text-align: left;
}

.oht-results-card-title {
  color: #00A7F6;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 16px;
}

.oht-results-card-desc {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.oht-btn-appointment {
  background-color: #00A7F6;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 167, 246, 0.25);
}

.oht-btn-appointment:hover {
  background-color: #0093da;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 167, 246, 0.35);
}

/* Responsive */
@media (max-width: 900px) {

  .oht-about-grid,
  .oht-results-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .oht-instructions-grid {
    grid-template-columns: 1fr;
  }

  .oht-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .oht-form-row-2 {
    grid-template-columns: 1fr;
  }

  .oht-options-grid {
    grid-template-columns: 1fr;
  }

  .oht-step-label {
    font-size: 0.75rem;
  }

  .oht-step-number {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .oht-about-left h2 {
    font-size: 1.7rem;
  }
}

/* ----------------------------------------------------
   19. Inner Page Templates (Solutions, Hearing Aids, Oticon, Gallery, Contact)
   ---------------------------------------------------- */

/* Hearing Solutions Template */
.solution-section {
  padding: 60px 0;
}

.solution-section.bg-light {
  background-color: #f4fafe;
}

.solution-section.bg-white {
  background-color: #ffffff;
}

.solution-row {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

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

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

.solution-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.solution-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.solution-content h2 {
  color: var(--color-primary, #0F199E);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.solution-content h3 {
  color: var(--color-secondary, #00A7F6);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.solution-content p {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.solution-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
  color: #555555;
}

.solution-content ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-title-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-center h2 {
  color: var(--color-primary, #0F199E);
  font-size: 2.2rem;
  font-weight: 600;
}

/* Hearing Aids Template Cards & Accordion */
.ha-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ha-type-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ha-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ha-type-card-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ha-type-card-img img {
  max-height: 100%;
  max-width: 150px;
  object-fit: contain;
}

.ha-type-card h3 {
  color: var(--color-primary, #0F199E);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.ha-type-card p {
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 0.95rem;
  flex-grow: 1;
}

.ha-type-link {
  color: var(--color-primary, #0F199E);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.ha-type-link:hover {
  color: var(--color-secondary, #00A7F6);
}

.ha-faq-section {
  background-image: linear-gradient(to left, #76daff, #fff);
  padding: 80px 0;
}

.ha-faq-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.ha-accordion-item {
  margin-bottom: 22px;
}

.ha-accordion-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 14px;
}

.ha-accordion-header h4 {
  color: var(--color-primary, #0F199E);
  font-size: 1.12rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.35;
  transition: opacity 0.2s ease;
}

.ha-accordion-header:hover h4 {
  opacity: 0.85;
}

.ha-accordion-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background-color: var(--color-primary, #0F199E);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.ha-accordion-header:hover .ha-accordion-icon {
  transform: scale(1.08);
}

.ha-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
  padding-left: 40px;
}

.ha-accordion-item.active .ha-accordion-body {
  max-height: 600px;
  opacity: 1;
}

.ha-accordion-body-inner {
  padding-top: 12px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

.ha-faq-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Oticon Brand Template */
.oticon-content-section {
  padding: 60px 0;
}

.oticon-quote-wrap {
 
  margin-bottom: 20px;
  padding: 0 20px;
  display: flex;
  justify-content: space-around ;
  align-items: flex-start;
}

.oticon-quote-wrap i {
  color: #111;
  font-size: 1.5rem;
  margin-top: 5px;
}

.oticon-quote-wrap .fa-quote-left {
  margin-right: 15px;
}

.oticon-quote-wrap .fa-quote-right {
  margin-left: 15px;
  align-self: flex-end;
  margin-bottom: 5px;
}

.oticon-quote-text {
  font-size: 1.3rem;
  color: #37a2e3;
  font-weight: 600;
  line-height: 1.6;
  max-width: 100%;
  display: inline-block;
}

.oticon-lead-text {
 
  color: #333;
  line-height: 1.8;
  margin-bottom: 50px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}

.oticon-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.oticon-col-left,
.oticon-col-right {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.oticon-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

/* .oticon-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 30px;
  width: 1px;
  background-color: #cbd5e1;
  z-index: 1;
} */

.oticon-timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.oticon-year-badge {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background-color: #639ce4;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.oticon-timeline-text {
  flex: 1;
  padding-top: 5px;
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
}

.oticon-wordpad-content h2,
.oticon-wordpad-content h3 {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}

.oticon-wordpad-content p {
  color: #333;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.oticon-bottom-card {
  margin-top: 50px;
}

.oticon-bottom-card p {
  color: #333;
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: left;
}

/* Gallery & Single Album */
.gallery-list-section,
.single-gallery-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.gallery-album-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.album-img-wrapper {
  height: 250px;
  overflow: hidden;
}

.album-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-album-card:hover .album-img-wrapper img {
  transform: scale(1.05);
}

.album-info {
  padding: 20px;
}

.album-info h3 {
  color: var(--color-primary, #0F199E);
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.view-images-link {
  color: var(--color-primary, #0F199E);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s ease;
}

.view-images-link:hover {
  opacity: 0.8;
}

.single-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-image-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-image-item a.gallery-item-link,
.gallery-image-item a,
.gallery-image-item div {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
}

.gallery-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  cursor: pointer;
  display: block;
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 25, 158, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
  font-size: 24px;
}

.gallery-image-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-image-item:hover img {
  transform: scale(1.08);
}

/* ====================================================
   Ear Gallery Lightbox Carousel Modal
   ==================================================== */
body.ear-lightbox-open {
  overflow: hidden;
}

.ear-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ear-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.ear-lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 40, 0.94);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.ear-lightbox-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 80px;
  user-select: none;
}

.ear-lightbox-slide {
  position: relative;
  max-width: 90vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ear-lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  transition: opacity 0.25s ease-in-out;
  display: block;
}

/* Lightbox Navigation Buttons */
.ear-lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
  outline: none;
}

.ear-lightbox-btn:hover {
  background: #00A7F6;
  border-color: #00A7F6;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 167, 246, 0.5);
}

.ear-lightbox-prev {
  left: 30px;
}

.ear-lightbox-next {
  right: 30px;
}

.ear-lightbox-close {
  top: 25px;
  right: 30px;
  width: 44px;
  height: 44px;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.ear-lightbox-close:hover {
  background: #ef4444;
  border-color: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

/* Lightbox Counter */
.ear-lightbox-counter-wrap {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.ear-lightbox-counter {
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Spinner Loader */
.ear-lightbox-spinner {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: #00A7F6;
  border-radius: 50%;
  animation: earLightboxSpin 0.8s linear infinite;
  display: none;
}

@keyframes earLightboxSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .ear-lightbox-container {
    padding: 20px;
  }

  .ear-lightbox-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .ear-lightbox-prev {
    left: 12px;
  }

  .ear-lightbox-next {
    right: 12px;
  }

  .ear-lightbox-close {
    top: 15px;
    right: 15px;
  }

  .ear-lightbox-slide {
    max-height: 75vh;
  }

  .ear-lightbox-img {
    max-height: 75vh;
  }
}

/* Contact Page Template */
.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-inquiry-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-inquiry-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-inquiry-form input[type="text"],
.contact-inquiry-form input[type="email"],
.contact-inquiry-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #333333;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-inquiry-form input[type="text"]:focus,
.contact-inquiry-form input[type="email"]:focus,
.contact-inquiry-form textarea:focus {
  border-color: var(--color-primary, #0F199E);
}

.input-with-button {
  display: flex;
}

.input-with-button input {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-with-button button {
  background-color: var(--color-primary, #0F199E);
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: opacity 0.3s ease;
}

.input-with-button button:hover {
  opacity: 0.9;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: #555555;
}

.checkbox-group a {
  color: var(--color-secondary, #00A7F6);
  text-decoration: none;
  font-weight: 500;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background-color: var(--color-secondary, #00A7F6);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  padding: 18px;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #008ccf;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 25px;
}

.contact-info-cards .info-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-cards .info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contact-info-cards .icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 167, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-cards .icon-box i {
  color: var(--color-secondary, #00A7F6);
  font-size: 1.2rem;
}

.contact-info-cards .info-card h4 {
  margin: 0 0 5px 0;
  color: #333333;
  font-size: 1rem;
  font-weight: 600;
}

.contact-info-cards .info-card p,
.contact-info-cards .info-card-content div {
  margin: 0;
  color: #666666;
  font-size: 0.9rem;
}

.contact-info-cards .info-card-content a {
  color: #666666;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}

.contact-info-cards .info-card-content a:hover {
  color: var(--color-secondary, #00A7F6);
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.contact-social-links a {
  color: var(--color-secondary, #00A7F6);
  font-size: 1.1rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-social-links a:hover {
  opacity: 0.8;
}

@media (max-width: 991px) {
  .ha-types-grid {
    grid-template-columns: 1fr;
  }

  .ha-faq-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {

  .oticon-col-left,
  .oticon-col-right {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .oticon-col-left {
    margin-bottom: 40px;
  }

  .contact-inquiry-form .form-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* ----------------------------------------------------
   20. FAQ, Testimonials & Branches Templates
   ---------------------------------------------------- */

/* FAQ Page */
.faq-list-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 15px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  padding: 15px 0;
}

.faq-icon {
  color: var(--color-primary, #0F199E);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question h3 {
  color: var(--color-primary, #0F199E);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  flex: 1;
}

.faq-answer {
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  max-height: 0;
}

.faq-answer-inner {
  padding: 0 0 15px 35px;
  color: #555555;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Testimonials Page */
.testimonials-list-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.testimonial-item {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  background-color: #ffffff;
}

.video-thumbnail-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #000000;
  cursor: pointer;
}

.video-thumbnail-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.video-thumbnail-container:hover img {
  opacity: 1;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: var(--color-secondary, #00A7F6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 167, 246, 0.4);
  transition: transform 0.3s ease;
}

.video-thumbnail-container:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay i {
  color: #ffffff;
  font-size: 1.5rem;
  margin-left: 5px;
}

.testimonial-content {
  padding: 30px;
}

.testimonial-text {
  color: #444444;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author-title {
  color: var(--color-primary, #0F199E);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

/* Video Modal */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.modal-content-video {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000000;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

/* Branches Page */
.branches-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.branches-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

.branch-map-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 600px;
  position: relative;
}

.branch-map-canvas {
  width: 100%;
  height: 100%;
  background: #e5e3df;
}

.branches-list-box {
  background-color: #f8f9ff;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  height: 600px;
  overflow-y: auto;
}

.branch-accordion-item {
  border-bottom: 1px solid #eaeaea;
  padding: 15px 0;
}

.branch-accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.branch-accordion-title h3 {
  color: var(--color-primary, #0F199E);
  font-size: 1.15rem;
  margin: 0;
  font-weight: 600;
}

.branch-accordion-content {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}

.branch-accordion-content.open {
  max-height: 500px;
  margin-top: 15px;
}

.branch-info-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #555555;
}

.branch-info-row i {
  color: var(--color-primary, #0F199E);
  margin-top: 4px;
  margin-right: 12px;
  width: 16px;
}

@media (max-width: 991px) {
  .branches-grid {
    grid-template-columns: 1fr;
  }
}

/* 404 Page */
.page_404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.four_zero_four_bg {
  background-image: url('https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif');
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.four_zero_four_code {
  color: var(--color-primary, #0F199E);
  font-size: 5rem;
  font-weight: 800;
  padding-top: 20px;
}

.four_zero_four_title {
  color: var(--color-primary, #0F199E);
  font-weight: 600;
}

.four_zero_four_text {
  color: #888888;
  font-size: 1.1rem;
}

/* Index and Single Post Styles */
.index-post-item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.index-post-item .entry-title a {
  color: var(--color-primary, #0F199E);
  transition: color 0.2s ease;
}

.index-post-item .entry-title a:hover {
  color: var(--color-secondary, #00A7F6);
}

.post-featured-image {
  margin-bottom: 30px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.post-navigation-links {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding: 25px 0;
  border-top: 1px solid var(--color-border);
  font-weight: 600;
}

/* ----------------------------------------------------
   21. About Us Page Template
   ---------------------------------------------------- */
.about-hero-callout {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444444;
  border-left: 3px solid var(--color-secondary, #00A7F6);
  padding-left: 20px;
  margin-top: 10px;
}

.about-full-thumb {
  margin-top: 30px;
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-full-thumb img {
  object-fit: cover;
  width: 100%;
}

.about-lead-desc {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555555;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.vm-img-box {
  height: 350px;
}

.vm-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-content-box {
  color: #ffffff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 350px;
}

.vm-box-vision {
  background-color: #1a237e;
}

.vm-box-mission {
  background-color: #283593;
}

.vm-icon-circle {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vm-icon-circle i {
  font-size: 20px;
  color: #ffffff;
}

.vm-content-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}

.vm-content-box p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.about-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-feature-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.about-feature-item:hover {
  border-color: #cbd5e1;
}

.about-feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  background: #ffffff;
  user-select: none;
  transition: background 0.2s ease;
}

.about-feature-header:hover {
  background: #f8fafc;
}

.about-feature-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-title-wrap h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary, #0F199E);
}

.about-check-badge {
  width: 24px;
  height: 24px;
  background-color: var(--color-primary, #0F199E);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--color-primary, #0F199E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.about-feature-item.active .about-feature-icon {
  background: var(--color-primary, #0F199E);
  color: #ffffff;
  transform: rotate(180deg);
}

.about-feature-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out, padding 0.3s ease;
  padding: 0 18px;
  background: #ffffff;
}

.about-feature-item.active .about-feature-body {
  max-height: 500px;
  padding: 0 18px 16px 18px;
}

.about-feature-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  border-top: 1px dashed #e2e8f0;
  padding-top: 12px;
}

.tech-banner {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  margin: 40px 0;
}

.vission-mission {
  padding: 0;
}

.tech-banner img {
  width: 100%;
}

.tech-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 45, 0.85);
  z-index: 1;
}

.tech-banner-inner {
  position: relative;
  z-index: 2;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.tech-banner-title {
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  max-width: 600px;
  margin-bottom: 40px;
}

.tech-banner-thumbs {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.tech-banner-thumbs img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.brand-showcase-thumb {
  display: flex;
  justify-content: center;
}

.brand-showcase-thumb img {
  height: auto;
}

@media (max-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .tech-banner-title {
    font-size: 2rem;
  }
}

/* ----------------------------------------------------
   22. Blog Detail Page & Sidebar
   ---------------------------------------------------- */
.post-detail-section {
  background-color: #ffffff;
}

.post-detail-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.single-post-title {
  color: var(--color-primary, #0F199E);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}


.single-post-date {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 10px;
}

.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.single-post-tag-item {
  color: var(--color-secondary, #00A7F6);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.single-post-tag-item:hover {
  color: var(--color-primary, #0F199E);
  text-decoration: underline;
}

.single-post-featured-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.single-post-featured-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.single-post-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}

.single-post-body p {
  margin-bottom: 22px;
  line-height: 1.8;
}

.single-post-body h2,
.single-post-body h3,
.single-post-body h4 {
  color: var(--color-primary, #0F199E);
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 16px;
}

.single-post-body h2 {
  font-size: 1.7rem;
}

.single-post-body h3 {
  font-size: 1.45rem;
}

.single-post-body strong,
.single-post-body b {
  color: #0f172a;
  font-weight: 600;
}

.single-post-body img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.post-share-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
}

.post-share-strip .share-label {
  font-weight: 600;
  color: var(--color-primary, #0F199E);
  font-size: 0.95rem;
}

.post-share-strip .share-buttons {
  display: flex;
  gap: 10px;
}

.btn-share-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff !important;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-share-social.fb {
  background-color: #1877f2;
}

.btn-share-social.wa {
  background-color: #25d366;
}

.btn-share-social:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Sidebar Widgets: Top Views & Recent Blogs */
.sidebar-widget-title {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-primary, #0F199E);
  margin-bottom: 22px;
}

.sidebar-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-post-item {
  display: flex;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.sidebar-post-item:hover {
  transform: translateX(4px);
}

.sidebar-post-thumb {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar-post-info {
  flex-grow: 1;
  min-width: 0;
}

.sidebar-post-date {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 4px;
}

.sidebar-post-item-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-primary, #0F199E);
  line-height: 1.35;
  margin: 0;
  transition: color 0.2s ease;
}

.sidebar-post-item:hover .sidebar-post-item-title {
  color: var(--color-secondary, #00A7F6);
}

@media (max-width: 991px) {
  .post-detail-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .single-post-title {
    font-size: 1.8rem;
  }
}

.btn-spinner {
  display: none;
}

/* ==========================================================================
   Responsive News & Blog Grid (4 Desktop / TV, 3 Laptop, 2 Tablet, 1 Mobile)
   ========================================================================== */

.news-grid-section {
  background-color: #ffffff;
  padding: 60px 0 90px 0;
}

.news-grid-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-responsive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Laptop (992px to 1399px) -> 3 Cards */
@media (max-width: 1399px) {
  .news-responsive-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* Tablet (768px to 991px) -> 2 Cards */
@media (max-width: 991px) {
  .news-responsive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile (< 768px) -> 1 Card */
@media (max-width: 767px) {
  .news-responsive-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* News Card Clean Anatomy */
.news-card-clean {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card-img-link {
  display: block;
  width: 100%;
  height: 230px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: #f1f5f9;
  position: relative;
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.news-card-img-link:hover .news-card-img {
  transform: scale(1.04);
}

.news-card-date {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.news-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18.5px;
  font-weight: 600;
  color: #222f7b;
  line-height: 1.35;
  margin: 0 0 10px 0;
}

.news-card-title a {
  color: #222f7b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card-title a:hover {
  color: #00A7F6;
}

.news-card-excerpt {
  font-size: 13.5px;
  color: #334155;
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex: 1;
}

.news-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.news-card-tag-pill {
  display: inline-block;
  border: 1px solid #00A7F6;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  background-color: transparent;
  transition: all 0.2s ease;
}

.news-card-tag-pill:hover {
  background-color: #00A7F6;
  color: #ffffff;
}

/* News Pagination */
.news-pagination-nav {
  margin-top: 55px;
}

.news-pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0c187d;
  text-decoration: none;
  transition: all 0.2s ease;
}

.news-page-btn:hover {
  background: #00A7F6;
  border-color: #00A7F6;
  color: #ffffff;
}

.news-page-txt {
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  margin: 0 10px;
}

/* ==========================================================================
   Testimonials Page Styles
   ========================================================================== */

.testimonials-page-header {
  background: #f4f6fb;
  padding: 50px 0 35px 0;
  text-align: center;
  border-bottom: 1px solid #e9edf5;
}

.testimonials-page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #222f7b;
  margin: 0 0 10px 0;
}

.testimonials-breadcrumbs {
  font-size: 14px;
  color: #64748b;
}

.testimonials-breadcrumbs a {
  color: #222f7b;
  text-decoration: none;
  font-weight: 500;
}

.testimonials-breadcrumbs a:hover {
  color: #00A7F6;
}

.testimonials-breadcrumbs .sep {
  margin: 0 8px;
  color: #94a3b8;
}

.testimonials-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonials-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.testimonial-video-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #000000;
  cursor: pointer;
  overflow: hidden;
}

.testimonial-video-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000000;
  display: block;
}

.testimonial-play-btn-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.testimonial-video-box:hover .testimonial-play-btn-halo {
  transform: translate(-50%, -50%) scale(1.08);
}

.testimonial-play-btn-core {
  width: 50px;
  height: 50px;
  background: #00A7F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 167, 246, 0.4);
}

.testimonial-play-btn-core i {
  color: #ffffff;
  font-size: 17px;
  margin-left: 3px;
}

.testimonial-info-block {
  padding: 22px 26px;
  background: #ffffff;
}

.testimonial-quote-text {
  font-size: 14.5px;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.65;
  margin: 0 0 14px 0;
}

.testimonial-person-name {
  font-size: 15.5px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 2px 0;
}

.testimonial-person-role {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* Video Modal Dialog */
.video-modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999999;
  align-items: center;
  justify-content: center;
}

.video-modal-window {
  position: relative;
  width: 90%;
  max-width: 800px;
  height: 450px;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
}

.video-modal-close-icon {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  z-index: 1000000;
}

.video-modal-player-frame {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Category, Tag, and Taxonomy Archive Layouts
   ========================================================================== */

.archive-page-header {
  background: #f4f6fb;
  padding: 50px 0 35px 0;
  text-align: center;
  border-bottom: 1px solid #e9edf5;
}

.archive-subheading-tag {
  color: #00A7F6;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

.category-description-callout {
  background: #f8fafc;
  border-left: 4px solid #00A7F6;
  padding: 18px 24px;
  border-radius: 6px;
  margin-bottom: 35px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.archive-sidebar-wrapper {
  position: sticky;
  top: 100px;
}

.archive-sidebar-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}

.archive-sidebar-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0c187d;
  margin: 0 0 18px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #00A7F6;
}

.archive-categories-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.archive-category-row {
  margin-bottom: 10px;
}

.archive-category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.archive-category-link.active {
  color: #00A7F6;
  font-weight: 600;
}

.archive-category-badge {
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 12px;
}

.archive-category-link.active .archive-category-badge {
  background: #e0f2fe;
  color: #0284c7;
}

.archive-recent-post-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.archive-recent-post-thumb {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.archive-recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-recent-post-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 4px 0;
}

.archive-recent-post-title a {
  color: #1e293b;
  text-decoration: none;
}

.archive-recent-post-date {
  font-size: 11px;
  color: #94a3b8;
}

.archive-tags-flex {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.archive-tag-pill {
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.archive-tag-pill.active {
  background: #00A7F6;
  color: #ffffff;
  font-weight: 600;
}

.archive-cta-hearing-card {
  background: linear-gradient(135deg, #0c187d 0%, #00A7F6 100%);
  border-radius: 12px;
  padding: 26px;
  color: #ffffff;
  text-align: center;
}

.archive-cta-hearing-icon {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.archive-cta-hearing-heading {
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.archive-cta-hearing-desc {
  color: #e0f2fe;
  font-size: 13px;
  margin: 0 0 18px 0;
  line-height: 1.5;
}

.archive-cta-hearing-btn {
  background: #ffffff;
  color: #0c187d;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: block;
}

/* ====================================================
   Hearing Aid Prices Page (template-hearing-aid-prices.php)
   ==================================================== */
.prices-page {
  background-color: #ffffff;
}

.prices-main-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}

.prices-intro-section {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 55px;
}

.prices-intro-section .common-title {
  font-size: 32px;
  font-weight: 600;
  color: #222f7b;
  margin-bottom: 16px;
  font-family: var(--font-title);
}

.prices-intro-section .common-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #334155;
  margin: 0;
}

/* Zig-Zag Features */
.prices-zigzag-wrapper {
  display: flex;
  flex-direction: column;
  gap: 55px;
  margin-bottom: 65px;
}

.prices-zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.prices-blue-title {
  font-size: 24px;
  font-weight: 600;
  color: #00A7F6;
  margin-bottom: 16px;
  line-height: 1.35;
  font-family: var(--font-title);
}

.prices-feat-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prices-feat-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.prices-device-glow-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.prices-device-glow-bg {
  background-image: url('https://demo14.antsstaging.com/wp-content/uploads/2026/08/bg-cover-1.png');
  position: absolute;
  width: 400px;
  background-size: cover;
  height: 400px;
}

.prices-device-img {
  position: relative;
  z-index: 2;
  max-height: 270px;
  max-width: 100%;
  object-fit: contain;
}

/* Good Hearing Aids Come at a Price */
.prices-pricey-section {
  margin-bottom: 70px;
}

.prices-pricey-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #00A7F6;
  margin-bottom: 35px;
  font-family: var(--font-title);
}

.prices-pricey-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 25px;
}

.prices-pricey-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prices-pricey-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  display: block;
  object-fit: cover;
}

.prices-pricey-text-col .common-text,
.prices-pricey-bottom-text .common-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #334155;
  margin: 0;
}

/* Pricing Accordion Section */
.prices-accordion-section {
  text-align: center;
}

.prices-acc-sec-title {
  font-size: 28px;
  font-weight: 600;
  color: #222f7b;
  margin-bottom: 16px;
  font-family: var(--font-title);
}

.prices-acc-sec-desc {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #334155;
}

.prices-acc-card-box {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 40px 35px;
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.prices-acc-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prices-acc-showcase-img {
  max-height: 310px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.prices-acc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prices-acc-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.prices-acc-header {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.prices-acc-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #0F199E;
  font-family: var(--font-title);
}

.prices-acc-icon {
  font-size: 13px;
  color: #00A7F6;
  transition: transform 0.25s ease;
}

.prices-acc-item.active .prices-acc-icon {
  transform: rotate(180deg);
}

.prices-acc-body {
  padding: 0 20px 18px 20px;
}

.prices-acc-price {
  font-size: 18px;
  font-weight: 600;
  color: #0c187d;
  margin-bottom: 6px;
  font-family: var(--font-title);
}

.prices-acc-note {
  font-size: 13.5px;
  font-weight: 600;
  color: #ef4444;
  margin-bottom: 8px;
}

.prices-acc-extra {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .prices-zigzag-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .prices-zigzag-item.reverse-on-mobile .prices-feat-text-wrapper {
    order: 2;
  }

  .prices-zigzag-item.reverse-on-mobile .prices-device-glow-wrapper {
    order: 1;
  }

  .prices-pricey-top-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .prices-acc-card-box {
    grid-template-columns: 1fr;
    padding: 28px 18px;
    gap: 30px;
  }

  .prices-acc-img-col {
    order: -1;
  }
}

/* ====================================================
   Hearing Solutions Page (template-hearing-solutions.php)
   ==================================================== */
.hearing-solutions-page {
  background-color: #ffffff;
}

.solutions-main-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.solutions-notice-box {
  margin: 35px 0 20px;
}

.solutions-notice-box .text-box {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 8px 35px;
  text-align: left;
}

.solutions-notice-box .text-box i.fa-quote-left {
  position: absolute;
  top: -8px;
  left: 0;
  color: #334155;
  font-size: 16px;
}

.solutions-notice-box .sub-haeding {
  font-size: 1.25rem;
  color: #00A7F6;
  font-weight: 500;
}

.solutions-notice-box .text-box .sub-haeding {
  font-size: 17.5px;
  line-height: 1.65;
  color: #00A7F6;
  font-weight: 600;
  font-family: inherit;
  margin: 0;
  display: inline;
}

.solutions-notice-box .text-box i.fa-quote-right {
  display: inline-block;
  color: #334155;
  font-size: 16px;
  margin-left: 8px;
  vertical-align: baseline;
}

.sol-block-section {
  padding: 35px 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.bg-image-elec {
  background-image: url(../images/ear-test-background-3.png);
  background-size: cover;
  background-position: center;
}

.sol-bg-tint {
  background-color: #f0f9ff;
}

.sol-grid-2col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  align-items: center;
}

.sol-grid-2col.sol-reverse-desktop .sol-col-text {
  order: 2;
}

.sol-grid-2col.sol-reverse-desktop .sol-col-img {
  order: 1;
}

.sol-title-main {
  font-size: 24px;
  font-weight: 600;
  color: #222f7b;
  margin-bottom: 12px;
  line-height: 1.35;
  font-family: var(--font-title);
}

.sol-title-sub-blue {
  font-size: 18px;
  font-weight: 600;
  color: #00A7F6;
  margin-bottom: 10px;
  font-family: var(--font-title);
}

.sol-title-large {
  font-size: 24px;
}

.sol-paragraph {
  font-size: 14.5px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 12px;
}

.sol-bullet-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}

.sol-bullet-list-ol {
  list-style: decimal-leading-zero;
  margin-left: 30px;
}

.sol-bullet-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
}

.sol-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00A7F6;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}

.sol-feature-img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.sol-center-header {
  text-align: center;
  margin-bottom: 25px;
}

.sol-max-w800 {
  max-width: 800px;
  margin: 0 auto;
}

.watermarek-2 {

  background-image: url(../images/services-background.png);
  background-size: cover;
}

.sol-watermark-card {
  border-radius: 12px;
  padding: 35px 30px;
}

.sol-rich-content h1,
.sol-rich-content h2,
.sol-rich-content h3,
.sol-rich-content h4,
.sol-rich-content h5,
.sol-rich-content h6 {
  color: #222f7b;
  font-family: var(--font-title);
  margin-top: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.sol-rich-content h2 {
  font-size: 22px;
}

.sol-rich-content h3 {
  color: #00A7F6;
  font-size: 18px;
}

.sol-rich-content h4 {
  font-size: 16px;
}

.sol-rich-content p {
  margin-bottom: 12px;
  line-height: 1.75;
}

.sol-rich-content ul,
.sol-rich-content ol {
  margin: 12px 0 16px 22px;
  padding: 0;
}

.sol-rich-content ul li {
  list-style: disc;
  margin-bottom: 7px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #334155;
}

.sol-rich-content ol li {
  list-style: decimal;
  margin-bottom: 7px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #334155;
}

.sol-rich-content a {
  color: #00A7F6;
  text-decoration: underline;
}

.sol-rich-content strong {
  color: #1e293b;
}

/* ====================================================
   Comprehensive Mobile & Tablet Responsive Adjustments
   ==================================================== */

/* Global Overflow & Element Protection */
html,
body {
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
picture,
svg,
video {
  max-width: 100%;
  height: auto;
}

/* 1. Hearing Solutions Page Responsive */
@media (max-width: 900px) {
  .solutions-main-container {
    padding: 25px 15px 50px;
  }

  .solutions-notice-box {
    margin: 25px 0 15px;
  }

  .solutions-notice-box .text-box {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 8px 25px;
    text-align: left;
  }

  .solutions-notice-box .text-box i.fa-quote-left {
    position: absolute;
    top: -6px;
    left: 0;
    color: #334155;
    font-size: 14px;
  }

  .solutions-notice-box .text-box .sub-haeding {
    font-size: 15.5px;
    line-height: 1.6;
    color: #00A7F6;
    font-weight: 600;
    margin: 0;
    display: inline;
  }

  .solutions-notice-box .text-box i.fa-quote-right {
    display: inline-block;
    color: #334155;
    font-size: 14px;
    margin-left: 6px;
    vertical-align: baseline;
  }

  .sol-grid-2col {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .sol-grid-2col.sol-reverse-desktop .sol-col-text {
    order: 2;
  }

  .sol-grid-2col.sol-reverse-desktop .sol-col-img {
    order: 1;
  }

  .sol-block-section {
    padding: 24px 16px;
    margin-bottom: 24px;
  }

  .sol-heading-title {
    font-size: 24px;
  }

  .sol-feature-img {
    max-height: 260px;
    width: 100%;
    object-fit: cover;
    margin: 0 auto;
  }

  .sol-watermark-card {
    padding: 24px 16px;
  }
}

/* 2. Hearing Aid Prices Page Responsive */
@media (max-width: 900px) {
  .prices-main-intro-box {
    padding: 30px 18px;
  }

  .prices-main-intro-box .prices-intro-title {
    font-size: 26px;
  }

  .prices-zigzag-item {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .prices-zigzag-item.reverse-on-mobile .prices-feat-text-wrapper,
  .prices-zigzag-item.reverse .prices-feat-text-wrapper {
    order: 2;
  }

  .prices-zigzag-item.reverse-on-mobile .prices-device-glow-wrapper,
  .prices-zigzag-item.reverse .prices-device-glow-wrapper {
    order: 1;
  }

  .prices-device-glow-wrapper {
    padding: 20px;
  }

  .prices-device-glow-bg {
    width: min(320px, 85vw);
    height: min(320px, 85vw);
    max-width: 100%;
    max-height: 100%;
  }

  .prices-device-img {
    max-height: 220px;
  }

  .prices-pricey-top-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .prices-pricey-img {
    max-height: 260px;
    margin: 0 auto;
  }

  .prices-acc-card-box {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 24px;
  }

  .prices-acc-img-col {
    order: -1;
  }

  .prices-acc-showcase-img {
    max-height: 200px;
  }
}

@media (max-width: 576px) {
  .prices-main-intro-box .prices-intro-title {
    font-size: 22px;
  }

  .prices-acc-header {
    padding: 14px 16px;
    font-size: 14px;
  }

  .prices-acc-body {
    padding: 16px;
  }
}

/* 3. Header, Navigation, & Hero Responsive */
@media (max-width: 768px) {
  .top-bar {
    padding: 8px 0;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .top-bar-left {
    display: none;
  }

  .top-bar-right {
    width: 100%;
    justify-content: center;
  }



  .logo a {
    padding: 10px 15px 20px 15px;
    margin-bottom: -80px;
  }

  .logo img {
    max-height: 100px;
    width: auto !important;
  }

     .hero-slide-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

  .about-grid,
  .blog-card-section .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ht-banner-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .ht-banner-img-col {
    order: -1;
  }

  .ht-banner-img {
    max-height: 240px;
    margin: 0 auto;
  }

  .footer-grid,
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col-logo {
    display: flex;
    justify-content: center;
  }

  .footer-col-logo .custom-logo,
  .footer-col-logo img,
  .footer-logo-img img,
  .footer-logo-img {
    margin: 0 auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-dealers-logos {
    gap: 25px;
    justify-content: center;
  }

  .footer-dealer-logo-img {
    width: 105px;
    max-width: 115px;
  }

  .footer-whatsapp-btn {
    right: 15px;
    bottom: 15px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .actions-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .actions-grid>*:last-child {
    grid-column: span 1;
  }

  .stats-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stats-list li {
    padding: 10px 5px;
  }

  .stats-list .stat-number {
    font-size: 1.1rem;
  }

  .stats-list .text {
    font-size: 0.65rem;
  }

  .stats-list .stat-icon {
    width: 25px;
    height: 25px;
    margin-bottom: 5px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-posts-grid,
  .brands-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .common-title {
    font-size: 1.6rem;
  }

  .hero-actions-grid {
    gap: 10px;
    margin-top: -20px;
    padding-bottom: 20px;
  }
.product-info {
    padding: 20px;
	}
  .hero-action-card a {
    padding: 10px;
  }

  .hero-action-inner h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .hero-action-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
	  .hero-title {
    font-size: 2.2rem;
  }
	.mobile{
		display:block !important;
	}
	.desktop{
		display:none !important;
	}
  .about-stats {
    grid-template-columns: 1fr;
  }
	.hero-action-inner {
        margin: 2px 0% 0px 0px;
    }
.hero-action-inner h3 {
       
        margin-bottom: 30px;
    }
	    .whatsapp-widget {
  
        padding: 10px 15px;
	}
	    body.admin-bar .main-header {
        top: 0;
    }
	.footer-copyright-text {
    
    text-align: center;
}
	.common-text {
		text-align:left;
	}
	.vm-content-box{
		    padding: 20px !important;
	}
	.vm-box-mission{
		order: 2;
	}
	.best-brands .about-grid{
		    grid-template-columns: 1fr !important; 
	}
	.about-grid .brand-showcase-thumb{
		    order: 1;    margin-top: 0px;
	}
	.stats-list { grid-template-columns: 1fr; }
	.oht-form-group {
    margin-bottom: 0px !important;
}
	.top-bar-right #text-span{
display:none;
}

	.top-bar-right{
		justify-content:space-between;
	}
	.stats-list{
	grid-template-columns: repeat(3, 1fr);
	}
	.oht-step-label{
	display: none;
	}
	#sib-form {
width:100% !important;
    display: flex;
    gap: 6px;
    flex-direction: column;
}
	.best-brands .text-center {
    text-align: left;
}
	.page-header-banner h1 {
    font-size: 1.5rem;
	}
	.promo-content h2, .promo-content .common-sub-title{
		    text-align: left;
		margin-bottom:10px;
	}
	.text-quote {
		text-align: left;
        width: 230px;
	}
	.testimonial-content .name{
		font-size: 1rem;
		text-align:left;
	}
}

/* ========== FAQ Video Grid Styles ========== */
.faq-videos-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
}

.faq-videos-intro {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 20px;
  font-weight: 500;
}

.faq-video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.faq-video-card {
  width: calc(24.333% - 10px);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #000;
}

@media (max-width: 991px) {
  .faq-video-card {
    width: calc(50% - 7.5px);
  }
}

@media (max-width: 575px) {
  .faq-video-card {
    width: 100%;
  }
}

.faq-video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.faq-video-card:hover .faq-video-thumb {
  opacity: 1;
}

.faq-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-video-card:hover .faq-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
}

.faq-video-grid .video-thumbnail-container {

  padding-top: 12.25%;

}

.promo-content .promo-disclaimer::after {
  content: '';
  position: absolute;
  width: 17%;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: #00aeef;
  transition: ease-in-out .3s all
}

.promo-content .promo-disclaimer:hover::after {
  width: 50%
}

.promo-section .promo-grid {
  width: 80%;
  margin: 0 auto;
}

.tax-product_category .swiper-slide-active {
  border: 1px solid #00aeef;
  border-radius: 15px;
}
#sprout-chat-widget-wrapper{
	    z-index: 10;
}

.tax-product_category .swiper-slide-active::after {
  border-color: #00aeef transparent transparent;
  border-style: solid;
  border-width: 18px 19px 0;
  content: "";
  display: block;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  width: 0;
  bottom: -16px;
  z-index: 0;
}

.tax-product_category .product-swiper {
  width: 100%;
  padding: 15px 5px 45px !important;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 130px;
  right: 30px;
  background-color: var(--color-primary, #00aeef);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--color-secondary, #00305b);
  color: #fff;
  transform: translateY(-3px);
}
.contact-info-cards .info-card-content a  .fab{
	font-size: 26px;
    color: #04a7f7;
	
}
.google-translater{
	height:30px;
}

/* ----------------------------------------------------
   Global Scroll Animations
   ---------------------------------------------------- */
/* We only apply initial hidden state if body has the class (JS is active) */
body.has-scroll-animations .animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

/* When the intersection observer adds the .visible class */
body.has-scroll-animations .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Testamonialas */
/* Container wrapper must clip slides entering and exiting */

.post-type-archive-gallery_album .news-card-clean {
    border: 1px solid #e9e6e6;
    padding: 10px;
	border-radius: 20px;
}
#sib-form {
  width: 60%;
  display: flex;
  gap: 10px;
}
#google_translate_element .goog-te-gadget .goog-te-combo{
	color:#000 !important;
	background:#fff;
	
}