/*
Theme Name: Rehabilitation
Theme URI: https://centreforrehabilitation.com
Author: Antigravity
Author URI: https://google.com
Description: Custom theme for Centre for Rehabilitation, replicating the live site design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rehabilitation
*/

:root {
  --primary-color: #0056b3;
  --secondary-color: #f8f9fa;
  --text-color: rgb(33, 37, 41);
  --bg-color: rgb(254, 254, 255);
  --font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --heading-font: "Playfair Display", serif;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

/* Basic Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

.btn {
  display: inline-block;
  padding: 14px 35px ;
  background: #003366 !important;
  color: #fff !important;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
  border: none !important;
  cursor: pointer;
  font-weight: 600;
  font-size: 1em;
}

.btn:hover {
  background: #fff !important;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #6c757d;
}

.btn-secondary:hover {
  background: #5a6268;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 0;
  font-size: 0.9em;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.site-branding {
  padding: 20px 0;
}

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

.site-title a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.5em;
  font-weight: bold;
}

/* Navigation */
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
  padding: 10px 15px;
  display: block;
}

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

.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 250px;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 1000;
  padding: 10px 0;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
  display: flex;
}

.main-navigation .sub-menu li {
  width: 100%;
}

.main-navigation .sub-menu a {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.main-navigation .sub-menu a:hover {
  background: #003366;
  color: #fff;
}

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
  }
	.lcdir-search-box {
		display:block;
	}
	   
  .main-navigation ul {
    display: none;
    flex-direction: column;
  }
	.service-card-rust a {
    margin-top: 10px;
}
	    .card-about-abt {
        margin-bottom: 20px !important;
    }

  .main-navigation ul.active {
    display: flex;
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 600px;
  background: #333;
  overflow: hidden;
}

.hero-slider .slide {
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-content-main {
  max-width: 600px;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.hero-content-main h1 {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.hero-content-main p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Find Centers Box */
.find-centers-section {
  background: var(--primary-color);
  padding: 40px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.lcdir-search-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.lcdir-search-box h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.search-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.lcdir-select,
.lcdir-btn {
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1em;
}

.lcdir-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.lcdir-btn:hover {
  background: #004494;
}

/* About Section */
.about-us-section {
  padding: 40px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.abt-head {
  font-size: 3rem;
  color: #4a5568;
  margin-bottom: 20px;
  animation: glow 2s ease-in-out infinite alternate;
  color: #000 !important;
}
.abt-para {
  font-size: 1.2rem;
  color: #718096;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.abt-btn {
  display: inline-block;
  padding: 15px 30px;
  background: #003366 !important;
  color: white;
  text-decoration: none !important;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-image {
    box-shadow: none !important;
    animation: none !important;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #003366 !important;
}

.card-features .ul{
	     padding-left: 0px !important;
}
.uix_hear_special_highlight {
    background: fff !important;
}

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

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}
.service-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff !important;
  font-size: 22px;
  padding-top: 40px;
}
.service-para {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  margin-top: 2rem;
}

.section-tag {
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5em;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card h4 {
  color: var(--primary-color);
  font-size: 1.3em;
  margin-bottom: 15px;
}

.service-card a {
  color: #003366 !important;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

/* Stats Section */
.stats-section {
  background: var(--primary-color);
  color: #fff;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item .num {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
}

/* Page Hero Sections */
.page-hero,
.service-hero,
.contact-hero {
  background: linear-gradient(135deg, var(--primary-color), #004494);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-hero h1,
.service-hero h1,
.contact-hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: #fff;
}

.service-hero .subtitle {
  font-size: 1.2em;
  opacity: 0.9;
}

/* About Page */
.about-content-section {
  padding: 40px 0;
  background-color: #fff;
}

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

.our-story-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.story-content {
  max-width: 800px;
  margin: 30px auto;
}

/* Service Page */
.service-content-section {
  padding: 20px;
  background-color: #fff;
}

.service-layout {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 0px ;
}

@media (max-width: 992px) {
  .service-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.service-main-content h2 {
  color: var(--primary-color);
  margin-top: 30px;
}

.service-main-content ul {
  list-style: none;
  padding: 0;
}

.service-main-content li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.service-main-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
.service-sidebar{
  margin-top: 40px;
}
.service-sidebar .widget {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.service-sidebar h3 {
  color: #003366;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
}
 .service-card{
  align-items: center;
}

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

.service-links li {
  margin: 10px 0;
}

.service-links a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s;
  display: block;
  padding: 10px;
  border-radius: 4px;
}

.service-links a:hover,
.service-links .current a {
  background: #003366;
  color: #fff !important;
}

.contact-widget {
  background: transparent;
  color: #fff;
}

.contact-widget h3 {
  color: #fff;
}

.phone-number {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

/* Contact Page */
.contact-content-section {
  padding: 40px 0;
  background-color: #fff;
}
.contact-form-area {
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) !important;
}
.contact-info-area {
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) !important;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.hero-content-main h1 {
    font-size: 2em;
    margin-bottom: 10px;
   
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Footer */
.site-footer {
  background: #222;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: #fff;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: inline-block;
}

.site-info {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 0.9em;
  color: #aaa;
}

.site-info a {
  color: #fff;
  text-decoration: none;
}

/* Form Styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
  font-family: var(--font-family);
}

input.error,
textarea.error {
  border-color: #dc3545;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animated {
  animation: fadeInUp 0.6s ease-out;
}

/* Footer Enhancements */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s;
}

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

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  margin-bottom: 0;
  color: #fff;
}

.btn-subscribe {
  padding: 12px 25px !important;
  white-space: nowrap;
  border: 2px solid #fff !important;
  border-radius: 20px !important;
}

/* Location Cards */
.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.location-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

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

.location-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.location-card h4 {
  color: var(--primary-color);
  margin: 15px 0 10px;
}

.location-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
}

/* Therapy Services Section */
.therapy-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.therapy-card {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border-top: 4px solid var(--primary-color);
}

.therapy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.therapy-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
  display: block;
}

.therapy-card h3 {
  margin: 15px 0;
}

.therapy-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.therapy-card h3 a:hover {
  color: #004494;
}

.service-icon {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
}

/* Enhanced Testimonials */
.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.author-info h5 {
  margin: 0 0 5px 0;
  color: var(--primary-color);
}

.author-info span {
  color: #888;
  font-size: 0.9em;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  background: var(--primary-color);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2em;
  transition: all 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #004494;
  transform: scale(1.1);
}

/* Improved Location Cards Layout */
.location-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .location-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .location-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width:768px){
	.about-image {
		height: 275px !important;}
	    .service-card-rust h4 {
        
        padding-top: 20px !important;
    }
	.about-us-section {
    padding: 15px 0;
}
	.about-image {
    height: 240px !important;
	}
	.service-card-rust h4 {
    padding-top: 20px !important;
}
}

@media (max-width: 768px) {
    .service-card-rust h4 {
        font-size: 19px;
        padding-top: 20px !important;
    }
}

.location-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.location-icon {
  font-size: 2.5em;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.location-card h4 {
  color: var(--primary-color);
  margin: 12px 0 8px;
  font-size: 1.2em;
  font-weight: 600;
}

.location-card p {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 12px;
}

.location-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: color 0.3s;
}

.location-link:hover {
  color: #004494;
}

/* Improved Therapy Services Grid */
.therapy-services-section {
  padding: 40px 0;
  background: #fff;
}

.therapy-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .therapy-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .therapy-services-grid {
    grid-template-columns: 1fr;
  }
}

.therapy-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid #003366;
  position: relative;
  overflow: hidden;
}

.therapy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 86, 179, 0.05),
    transparent
  );
  transition: left 0.5s;
}

.therapy-card:hover::before {
  left: 100%;
}

.therapy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 86, 179, 0.2);
  border-top-color: #004494;
}

.therapy-icon {
  font-size: 4em;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.therapy-card h3 {
  margin: 18px 0 15px;
  font-size: 1.4em;
}

.therapy-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.therapy-card h3 a:hover {
  color: #004494;
}

.therapy-card p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}

/* Improved Testimonials */
.testimonials-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-slider {
  position: relative;
  max-width: 850px;
  margin: 50px auto;
}

.testimonial-card {
  background: #fff;
  padding: 45px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: none;
  position: relative;
}

.testimonial-card::before {
  content: \201C;
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5em;
  color: rgba(0, 86, 179, 0.1);
  font-family: Georgia, serif;
}

.testimonial-card.active {
  display: block;
  animation: fadeInScale 0.5s ease-in;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.8em;
  margin-bottom: 25px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 1.15em;
  line-height: 1.9;
  margin-bottom: 30px;
  font-style: italic;
  color: #333;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

.author-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #004494);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.author-info {
  text-align: left;
}

.author-info h5 {
  margin: 0 0 5px 0;
  color: var(--primary-color);
  font-size: 1.1em;
  font-weight: 600;
}

.author-info span {
  color: #888;
  font-size: 0.9em;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 35px;
}

.testimonial-prev,
.testimonial-next {
  background: var(--primary-color);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3em;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #004494;
  transform: scale(1.15);
  box-shadow: 0 6px 15px rgba(0, 86, 179, 0.4);
}

.testimonial-prev:active,
.testimonial-next:active {
  transform: scale(1.05);
}

/* Section Spacing Improvements */
.find-centers-section {
  background: var(--primary-color);
  padding: 50px 0 60px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.lcdir-search-box {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  text-align: center;
  margin-bottom: 50px;
}

.lcdir-search-box h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 25px;
}

/* Register Yourself Section */
.register-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #004494 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.register-section h2 {
  color: #fff;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.register-section p {
  font-size: 1.2em;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.btn-register {
  background: #fff;
  color: var(--primary-color) !important;
  padding: 16px 45px;
  font-size: 1.1em;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-register:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Fix Therapy Services Background */
.therapy-services-section {
  background: #f9f9f9 !important;
}

/* Hero Slider Improvements */
.hero-slider {
  position: relative;
  height: 600px;
  background: #333;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  display: flex;
  opacity: 1;
  align-items: center;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
  background: rgba(0, 0, 0, 0.65);
  padding: 50px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #fff;
}

.hero-content p {
  font-size: 1.25em;
  margin-bottom: 35px;
  color: #fff;
  opacity: 0.95;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Enhanced Card Styling */
.location-card,
.therapy-card {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}
.therapy-card{
	padding:0px !important;
}
.therapy-card p {
	text-align:start ;
}
.therapy-card h3 {
	text-align:start;
}
.card-content {
	padding-bottom:90px !important;
	padding-left:30px !important;
	padding-right:30px !important;
	padding-top:10px !important;
}
.card-button {
	bottom:10px !important;
	    left: 23% !important;
	    margin-bottom: 15px !important;
}
.location-card:hover,
.therapy-card:hover {
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.2) !important;
}

/* new  */

/* Services Section */
.services-section {
  background-color: #ffffff;
  padding: 40px 0px !important;
  text-align: center;
}

.section-tag {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.section-description {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card-rust {
  background-color: #003366;
  color: white;
}

.service-card-rust h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000 !important;
  font-size: 22px;
  padding-top: 40px;
}

.service-card-rust p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  margin-top: 2rem;
}

.service-card-rust a {
  color: #003366;
  text-decoration: none;
  font-weight: 600;
  align-self: center;
}

.service-card-image {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  min-height: 250px;
}

.service-card-light {
  background-color: #003366;
  color: white;
}

.service-card-light h4 {
  font-size: 22px;
  margin-bottom: 1rem;
  padding-top: 40px;
  color: #000 !important;
}
.service-card {
	padding:1rem !important;
}
.service-card-rust h4{
	padding-top: 0px !important;
}
.service-card-rust p {
    margin-bottom: 0px !important;
    margin-top: 12px !important;
}
.service-para {
    margin-bottom: 1rem !important;
    margin-top: 0rem !important;
}
.service-card-light h4 {
    padding-top: 15px !important;
}
service-card-image {
    border-radius: 20px 20px 0 0;
}
/* CTA Section */
.consultation-cta {
  padding: 4rem 5%;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(0, 100, 200, 0.1),
    rgba(0, 212, 255, 0.05)
  );
  border-top: 2px solid rgba(0, 212, 255, 0.2);
  animation: fadeIn 0.8s ease;
}

.consultation-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: fadeInDown 0.6s ease;
}

.consultation-cta p {
  font-size: 1.1rem;
  color: var(--gray-medium);
  max-width: 500px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.cta-button {
  padding: 12px 28px;
  background: #003366;
  color: white;
  text-decoration: none !important;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95rem;
}
.cta-button:hover {
  padding: 12px 28px;
  background: #fff;
  color: #003366;
  text-decoration: none !important;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95rem;
}

/* OUR-SERVICES */

.card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  display: inline-block;
  background: linear-gradient(135deg, #003366, #004d99);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: slideInLeft 0.6s ease-out 0.3s both;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  animation: slideInLeft 0.6s ease-out 0.4s both;
}

.service-card:hover .card-title {
  color: #004d99;
}

.card-description {
  color: #000 !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-features {
  list-style: none;
  margin-bottom: 20px;
  animation: slideInLeft 0.6s ease-out 0.6s both;
}

.card-features li {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  left: 0;
  text-align: start;
}

.card-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #003366;
  font-weight: bold;
}

/* Creative Button */
.card-button {
  display: inline-block;
  padding: 12px 28px;
  background: #003366;
  color: white;
  text-decoration: none !important;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95rem;
  position: absolute;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: buttonBreathe 4s ease-in-out infinite;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.card-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.card-button:active::before {
  width: 300px;
  height: 300px;
}

.card-button:hover {
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

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

  .card-image {
    height: 180px;
  }

  .header h1 {
    font-size: 2rem;
  }
}
/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title h1 {
    font-size: 1.8rem;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .card-image-wrapper {
    height: 200px;
  }

  .card-content {
    padding: 20px;
  }
}

/* Hero Section */
.hero {
  background-color: #ffffff;
  padding: 40px 20px;
  overflow: hidden;
}

.hero-content {
  max-width: 500px;
}

.hero h1 {
  font-size: 3.5rem;
  color: #1a1a1a !important;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.scroll-indicator {
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary-rust);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.hero-image {
  border-radius: 30px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
j
        /* form  */
        .head-1 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-size: 3.5rem;
  color: #1a1a1a !important;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.paraform {
  color: #666666;
  font-size: 1rem !important;
}

/* About us Page  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --secondary: #a0644e;
  --accent: #06b6d4;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

.card-about-abt {
   
    box-shadow: 0px 1px 0px 1px #003366;
}

/* ==================== HERO SECTION ==================== */
.hero {
  background: linear-gradient(135deg, #003366 0%, #003366 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="1100" cy="500" r="100" fill="rgba(255,255,255,0.05)"/></svg>');
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q50,20 80,50" stroke="rgba(255,255,255,0.1)" fill="none" stroke-width="2"/></svg>');
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}
.abt-hero-heading {
  color: #fff !important;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-content-abt {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: slideInDown 0.8s ease;
  color: white !important;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInUp 0.8s ease 0.2s both;
}

.cta-button {
  display: inline-block;
  border: 2px solid white;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
  animation: slideInUp 0.8s ease 0.4s both;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.6);
  background: white;
  color: black;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  nav ul {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero {
    padding: 4rem 1rem;
  }
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ABOUT CARDS SECTION */
.about-cards-section-abt {
  padding: 40px 20px;
  background: white;
}

.section-title-abt {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
}

.section-subtitle-abt {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.card-about-abt {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.card-about-abt::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.card-about-abt:hover::before {
  left: 100%;
}

.card-about-abt:hover {
  border-color: #003366;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.card-icon-abt {
  font-size: 3rem;
  color: #003366;
  margin-bottom: 20px;
  display: inline-block;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-about-abt h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #003366;
}

.card-about-abt p {
  color: var(--text-light);
  line-height: 1.6;
}

/* WHY CHOOSE US SECTION */
.why-choose-section {
  padding: 40px 0px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.feature-item {
  display: flex;
  margin-bottom: 40px;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #003366, #003366);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 2rem;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

.feature-content h6 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #003366;
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
/* COUNTER SECTION */
.counter-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #64748b 0%, #003366 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.counter-item {
  text-align: center;
  margin-bottom: 40px;
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  display: block;
  animation: countUp 2.5s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.counter-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.counter-plus {
  color: var(--accent-color);
  font-size: 2rem;
  margin-left: 5px;
}

/* WHY PARENTS CHOOSE US SECTION */
.parents-section-abt {
  padding: 40px 20px;
  background: white;
}

.parent-card-abt {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;

  transition: all 0.4s ease;
  position: relative;
}

.parent-card-abt:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
}

.parent-card-abt.secondary {
  border-left-color: #64748b;
}

.parent-card-abt.accent {
  border-left-color: #f59e0b;
}

.parent-icon-abt {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #003366 !important;
}

.parent-card-abt.primary .parent-icon {
  color: #003366;
}

.parent-card-abt.secondary .parent-icon {
  color: #64748b;
}

.parent-card-abt.accent .parent-icon {
  color: #f59e0b;
}

.parent-card-abt h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #003366;
}

.parent-card-abt p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
.detail {
    display: block !important ;
	}

  .section-title-abt {
    font-size: 2rem;
  }
	.lcdir-search-box select {
    padding: 5px;
    border-radius: 20px;
	}

  .counter-number {
    font-size: 2.5rem;
  }

  .feature-item-abt {
    margin-bottom: 30px;
  }

  .feature-icon-abt {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-right: 15px;
  }
}

/* CONTACT PAGE  */
.contact-container-con {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  gap: 4rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Contact Info */
.contact-info-con {
  border-radius: 20px;

  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.contact-info-con h2 {
  color: #003366;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
  animation: slideInFromLeft 1s ease-out 0.3s both;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem;
  background: rgba(160, 100, 78, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
  animation: slideInFromRight 1s ease-out 0.5s both;
  position: relative;
  overflow: hidden;
}

.detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(160, 100, 78, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.detail:hover::before {
  left: 100%;
}

.detail:hover {
  background: rgba(160, 100, 78, 0.1);
  transform: scale(1.02);
}

.detail i {
  font-size: 1.5rem;
  color: #a0644e;
  flex-shrink: 0;
}

.detail span {
  font-weight: bold;
}
.contact-heading {
  text-align: center;
  padding-top: 20px;
}

/* MAP  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f5f0;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(160, 100, 78, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(216, 164, 143, 0.05) 0%,
      transparent 50%
    );
  z-index: -1;
  animation: subtleShift 20s ease-in-out infinite alternate;
}

@keyframes subtleShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(10px, -10px);
  }
}

/* Map Section */
.map-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  animation: fadeInUp 1.5s ease-out 1s both;
}

.map-section h2 {
  text-align: center;
  color: #003366;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.map-container {
  background: white;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 10px 40px rgba(160, 100, 78, 0.15);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.map-container::after {
  content: "🗺️";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.1;
  z-index: 1;
}

.map-container:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 60px rgba(160, 100, 78, 0.25);
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 15px;
  z-index: 2;
}

/* Team Section */
.team-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  animation: fadeInUp 1.5s ease-out 1.1s both;
}

.team-section h2 {
  text-align: center;
  color: #003366;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(160, 100, 78, 0.15);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(160, 100, 78, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 60px rgba(160, 100, 78, 0.25);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.team-card h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.team-card .role {
  color: #888;
  margin-bottom: 1rem;
  font-style: italic;
}

.team-card .contact-link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.team-card .contact-link:hover {
  color: #d8a48f;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .map-section,
  .team-section {
    padding: 0 1rem;
  }

  .iframe {
    height: 300px;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

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

/* Occupational therapy  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #003366;
  --light-blue: #e8f4ff;
  --accent-teal: #a0644e;
  --dark-text: #1a202c;
  --light-text: #4a5568;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Services Section */
.services {
  padding: 0;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #003366 !important;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #003366, #003366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: #003366;
  font-size: 1.1rem;
  margin-bottom: 4rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: scaleIn 0.6s ease-out forwards;
  opacity: 0;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
  border-top: 4px solid #003366;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #003366, #003366);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #003366, #003366);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #003366;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: var(--light-text);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #003366 0%, #003366 100%);
  padding: 4rem 2rem;
  color: var(--white);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  animation: countUp 1.5s ease-out forwards;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
  padding: 6rem 2rem;
  background: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--dark-text);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #003366;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-detail:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.1);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: #fff;
  margin-bottom: 0.3rem;
}

.contact-text p {
  color: #fff;
  font-size: 0.9rem;
}

.contact-form {
  background: #003366;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .nav-container nav {
    display: none;
  }

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

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .btn-secondary {
    display: block;
    margin: 1rem 0 0 0;
  }
}

/* Scroll Animation */
.scroll-fade {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

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

/* Physiotherapy Page */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #a0644e;
  --secondary-blue: #87ceeb;
  --accent-orange: #ff8c42;
  --dark-text: #2c3e50;
  --light-bg: #f8f9fa;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

/* Main Content */
.container {
  max-width: 1200px;
}

.section {
  padding: 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  position: relative;
  color: #003366 !important;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #003366, #003366);
  margin: 15px auto 0;
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out;
}

/* Intro Section */

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: slideInLeft 1s ease-out;
}

.intro-image img {
  width: 100%;
  display: block;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.intro-image:hover img {
  transform: scale(1.05);
}

.intro-text {
  animation: slideInRight 1s ease-out;
}

.intro-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #003366;
}

.intro-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.highlight {
  color: #003366;
  font-weight: 600;
}

/* Advantages Section */


.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.advantage-box {
  background: linear-gradient(135deg, #003366 70%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s ease-out;
}

.advantage-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  animation: moveBackground 30s linear infinite;
}

.advantage-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  color: white;
}

.advantage-box p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.advantage-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

/* Contact Section */
.contact-section {
  background-color: #003366;
  text-align: center;
}

.contact-content {
  background: var(--white);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.contact-content h2 {
  color: var(--primary-blue);
  font-size: 28px;
  margin-bottom: 30px;
}

.contact-info {
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-info strong {
  color: black;
}

.contact-phone {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #a0644e 100%, #ff6b6b 0%);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.contact-phone:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 140, 66, 0.4);
}

/* FAQ Section */


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

.faq-item {
  background: #003366;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  animation: slideInUp 0.6s ease-out;
}

.faq-question {
  padding: 20px;
  background: linear-gradient(135deg, #003366, var(--secondary-blue));
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: 600;
}

.faq-question:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.faq-toggle {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

@keyframes moveBackground {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    gap: 15px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

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

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

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

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

  .contact-content {
    padding: 30px;
  }

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

@media (max-width: 480px) {
  .nav-menu {
    gap: 10px;
    font-size: 12px;
  }

  .hero {
    padding: 50px 15px;
  }

  .hero h1 {
    font-size: 24px;
  }

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

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

/* speech therapy page  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --secondary: #a0644e;
  --accent: #06b6d4;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

/* ==================== ABOUT SECTION ==================== */
.about {
  padding: 0px;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #003366;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #003366, #003366, var(--accent));
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 1rem;
  gap:20px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #003366;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(236, 72, 153, 0.1) 100%
  );
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #003366;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.feature-item h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.about-image {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* ==================== SERVICES SECTION ==================== */
.services { 

}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) .service-icon {
  animation-delay: 0.4s;
}

.service-card:nth-child(4) .service-icon {
  animation-delay: 0.6s;
}

.service-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--gray);
  line-height: 1.6;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(236, 72, 153, 0.05) 100%
  );
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  position: absolute;
  top: -10px;
  left: 1rem;
  opacity: 0.3;
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}

.testimonial-text {
  color: var(--gray);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
  padding: 40px 20px;
  background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.contact-wrapper {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: row;
  gap: 15rem;
}

.info-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #003366;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.info-box h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-box p {
  color: var(--gray);
  margin: 0;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 8px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.submit-btn {
  background: linear-gradient(135deg, #a0644e 0%, #a0644e 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  nav ul {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero {
    padding: 4rem 1rem;
  }
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Audiologist  */
/* UNIQUE GLOBAL RESET */
.uniqueReset_992aa7 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body.uniqueReset_992aa7 {
  background: #f3f7fc;
  color: #1c2a3a;
  line-height: 1.6;
}

/* SECTION 1 – ABOUT */
.sectionAbout_aa23bb44 {
  padding: 20px ;
}
.sectionAbout_aa23bb44 h2 {
  text-align: start;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}
.aboutContent_f9911x {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.aboutLeft_f9911x p {
  margin-bottom: 14px;
  font-size: 16px;
  color: #3a4a5a;
}
.aboutCard_commit_jjs9922 {
  border-left: 4px solid #0a3871;
  padding: 20px;
  background: #eef4fb;
  border-radius: 10px;
  margin-top: 25px;
}
.aboutCard_commit_jjs9922 h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}
.aboutRight_f9911x {
  background: linear-gradient(135deg, #6b7c93, #a56a52);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.aboutRight_f9911x img {
  width: 120px;
}

/* SECTION 2 – SERVICES */
.sectionServices_vv00993x {
  padding: 20px ;
  text-align: center;
}
.sectionServices_vv00993x h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}
.servicesGrid_kk2277 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.serviceBox_kk2277 {
  background: #eef4fb;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: left;
  border-top: 4px solid #0a3871;
  transition: 0.3s;
}
.serviceBox_kk2277:hover {
  transform: translateY(-4px);
}
.serviceBox_kk2277 img {
  width: 50px;
  margin-bottom: 15px;
}
.serviceBox_kk2277 h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}
.serviceBox_kk2277 p {
  font-size: 15px;
  color: #3a4a5a;
}

/* SECTION 3 – WHY CHOOSE US */
.sectionWhy_yy2288 {
  padding: 40px;
  background: #eef4fb;
  text-align: center;
}
.sectionWhy_yy2288 h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}
.whyGrid_xx9911 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.whyCard_xx9911 {
  background: #fff;
  padding: 35px 20px;
  border-radius: 14px;
  border-top: 4px solid #0a3871;
}
.whyCard_xx9911 h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0a3871;
  margin-bottom: 10px;
}
.whyCard_xx9911 p {
  font-size: 15px;
  color: #3a4a5a;
}

/* SECTION 4 – TESTIMONIALS */
.sectionTesti_zz1199 {
  padding: 20px ;
}
.sectionTesti_zz1199 h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}
.testiGrid_zz1199 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.testiCard_zz1199 {
  background: #eef4fb;
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid #0a3871;
}
.testiCard_zz1199 p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #3a4a5a;
}
.testiCard_zz1199 h4 {
  font-weight: 700;
  margin-bottom: 4px;
}
.testiCard_zz1199 span {
  font-size: 13px;
  color: #5c6d7a;
}

/* Hearing Aids  */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f8fcff;
  color: #0d233b;
}

/* TOP FEATURES */
.uix_hear_section_features {
  padding: 20px 0;
}

.uix_hear_container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.uix_hear_feature_box {
  width: 30%;
  border: 2px solid #0d3b66;
  padding: 30px;
  border-radius: 12px;
  background: #ffffff;
  transition: 0.3s;
}

.uix_hear_feature_box:hover {
  transform: translateY(-6px);
}

.uix_hear_icon {
  font-size: 34px;
  display: inline-block;
  margin-bottom: 10px;
}

/* TYPES SECTION */
.uix_hear_types_section {
  padding: 20px 0;
  background: #eef5ff;
}

.uix_hear_main_title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
}

.uix_hear_types_container {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
  gap: 25px;
}

.uix_hear_type_card {
  width: 24%;
  padding: 20px;
  border-left: 3px solid #113a6b;
}

/* BENEFITS SECTION */
.uix_hear_benefit_section {
  padding: 20px 0;
}

.uix_hear_benefits_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.uix_hear_benefit_card {
  background: #ffffff;
  border: 2px solid #0e2c52;
  padding: 25px;
  border-radius: 12px;
}

.uix_hear_benefit_card span {
  font-size: 24px;
}

.uix_hear_special_highlight {
  background: #e9f5ff;
}

/* CTA SECTION */
.uix_hear_cta_section {
  text-align: center;
  padding: 20px ;
  background: linear-gradient(135deg, #dce9f9, #f1f7ff);
}

.uix_hear_cta_title {
  font-size: 32px;
  margin-bottom: 10px;
}

.uix_hear_cta_btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0a3d7a;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  margin-top: 20px;
  transition: 0.3s;
}

.uix_hear_cta_btn:hover {
  background: #082d57;
}

/* Prosthesis Page  */

/* UNIQUE + FULLY CUSTOM CSS */
:root {
  --hp-blue: #0d3c7a;
  --hp-light: #f7faff;
  --hp-border: #c9d7e8;
  --hp-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #1c1c1c;
}

/* Section Wrapper */
.hp-section-wrapper-9982 {
  padding: 20px ;
  
}
.hp-section-wrapper-grey-9982 {
  padding: 20px ;
  
}
.hp-title-9982 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* Card Grid */
.hp-grid-9982 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.hp-card-9982 {
  padding: 35px;
  background: #fff;
  border: 2px solid var(--hp-border);
  border-radius: 14px;
  box-shadow: var(--hp-shadow);
  transition: 0.3s;
}
.hp-card-9982:hover {
  transform: translateY(-6px);
  border-top: 4px solid var(--hp-blue);
}
.hp-card-title-9982 {
  font-size: 20px;
  font-weight: 700;
  color: var(--hp-blue);
  margin: 15px 0 10px;
}
.hp-card-text-9982 {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}
.hp-emoji-9982 {
  font-size: 38px;
}

/* Blue Highlight Box */
.hp-highlight-blue-9982 {
  
  
}

/* CTA Section */
.hp-cta-9982 {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #dce6f7, #f9fbff);
}
.hp-cta-title-9982 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}
.hp-cta-sub-9982 {
  font-size: 17px;
  margin-bottom: 30px;
  color: #444;
}
.hp-cta-btn-9982 {
  padding: 14px 32px;
  background: var(--hp-blue);
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  display: inline-block;
  box-shadow: var(--hp-shadow);
}

/* Blog page  */

/* ---------- UNIQUE CLASSES: tps (therapy simple) ---------- */
:root {
  --tps-bg: #f6f9fb;
  --tps-accent: #0f4b78;
  --tps-accent-2: #0b6fb3;
  --tps-muted: #55616a;
  --tps-card: #ffffff;
  --tps-radius: 14px;
}
html,
body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, Arial, sans-serif;
  background: var(--tps-bg);
  color: #122029;
}
.tps_wrap_01 {
  max-width: 1100px;
  margin: 0 auto;
}
/* HERO */
.tps_hero_01 {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(8, 40, 80, 0.06);
}
.tps_hero_left_01 {
  flex: 1;
}
.tps_hero_title_01 {
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--tps-accent);
  font-weight: 800;
}
.tps_hero_sub_01 {
  margin: 0 0 14px;
  color: var(--tps-muted);
  line-height: 1.6;
}
.tps_hero_cta_01 {
  display: inline-block;
  padding: 10px 18px;
  background: var(--tps-accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.tps_hero_img_01 {
  width: 160px;
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eaf6ff, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: var(--tps-accent);
}
/* SERVICES */
.tps_section_title_01 {
  font-size: 22px;
  color: var(--tps-accent);
  margin: 34px 0 18px;
  font-weight: 800;
  text-align: center;
}
.tps_services_grid_01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tps_service_card_01 {
  background: var(--tps-card);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(6, 30, 60, 0.04);
  transition: transform 0.22s;
}
.tps_service_card_01:hover {
  transform: translateY(-6px);
}
.tps_service_emoji_01 {
  font-size: 26px;
}
.tps_service_h_01 {
  margin: 10px 0 6px;
  font-weight: 700;
  color: #0d3553;
}
.tps_service_p_01 {
  margin: 0;
  color: var(--tps-muted);
  line-height: 1.6;
  font-size: 14px;
}
/* ABOUT */
.tps_about_01 {
  margin: 28px 0;
  padding: 22px;
  background: linear-gradient(90deg, #ffffff, #f7fbff);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(6, 30, 60, 0.03);
}
.tps_about_h_01 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--tps-accent);
  font-weight: 800;
}
.tps_about_p_01 {
  margin: 0;
  color: var(--tps-muted);
}
/* CTA FOOTER */
.tps_cta_01 {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 18px;
  border-radius: 12px;
  background: var(--tps-accent);
  color: #fff;
  height: 120px;
}
.tps_cta_text_01 {
  font-weight: 700;
}
.tps_cta_btn_01 {
  background: #fff;
  color: var(--tps-accent);
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .tps_services_grid_01 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tps_hero_01 {
    flex-direction: column;
    align-items: flex-start;
  }
  .tps_hero_img_01 {
    width: 100%;
    height: 140px;
  }
  .tps_cta_01 {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .tps_services_grid_01 {
    grid-template-columns: 1fr;
  }
  .tps_hero_title_01 {
    font-size: 22px;
  }
  .tps_wrap_01 {
    padding: 16px;
  }
}



/* Hide desktop menu on mobile */
.main-navigation {
    display: none;
}

@media (min-width: 992px) {
    .main-navigation {
        display: block;
    }
}

/* Hamburger Icon */
.mobile-menu-toggle {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 3px;
}

/* Mobile menu box */
.mobile-menu {
    display: none;
    background: #ffffff;
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-menu.open {
    display: block;
}

/* Mobile submenu hidden by default */
@media (max-width: 991px) {
    #mobile-primary-menu .sub-menu {
        display: none;
        padding-left: 15px;
        border-left: 2px solid #0A3E91;
        margin-top: 5px;
    }
	.mobile-menu-toggle.d-lg-none.btn{
		background:transparent !important;
		box-shadow:none !important;
	}
	.mobile-menu-toggle{
		margin-right:20px;
	}
	#mobile-primary-menu{
		list-style:none;
	}

	.sub-menu{
		list-style:none;
		border:none !important;
	}
    /* Add arrow icon */
    #mobile-primary-menu li.menu-item-has-children > a {
        position: relative;
        padding-right: 25px;
    }

    #mobile-primary-menu li.menu-item-has-children > a::after {
        content: "➤";
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        font-size: 12px;
        color: #0A3E91;
        transition: 0.3s;
    }

    /* Arrow rotate when opened */
    #mobile-primary-menu li.open > a::after {
        transform: translateY(-50%) rotate(270deg);
    }
	
	/* Main menu items */
    #mobile-primary-menu > li > a {
        display: block;
        padding: 14px 0;
        font-size: 17px;
        color: #0A3E91;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid #e8e8e8;
    }

    /* Hover effect */
    #mobile-primary-menu > li > a:hover {
        color: #06306e;
    }

    /* Submenu links */
    #mobile-primary-menu .sub-menu li a {
        display: block;
        padding: 10px 0;
        font-size: 15px;
        color: #444;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid #f3f3f3;
    }

    /* Submenu hover */
    #mobile-primary-menu .sub-menu li a:hover {
        color: #0A3E91;
    }

    /* Parent menu spacing */
    #mobile-primary-menu li.menu-item-has-children {
        margin-bottom: 6px;
    }

}









