@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

:root {
  --body-font-family: "DM Sans", sans-serif;
  --heading-font-family: "Lato", sans-serif;
  --body-color: #485b60;
  --body-bg-color: #fdfbf7;
  --body-bg-color-two: #f4ffff;
  --heading-color: #030917;
  --border-color: #e4e3e1;
  --white-color: #ffffff;
  --black-color: #030917;
  --primary-color: #f9d67c;
}

html,
body {
  color: var(--body-color);
  font-family: var(--body-font-family);
  background-color: var(--body-bg-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  overflow-x: hidden;
  scroll-behavior: auto;
  padding: 0 !important;
}

body.body-bg-color-two {
  background-color: var(--body-bg-color-two);
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  padding: 0;
  margin: 0;
  font-weight: 400;
  line-height: normal;
  font-style: normal;
}

h1 { font-size: 62px; }
h2 { font-size: 50px; }
h3 { font-size: 36px; }
h4 { font-size: 28px; }
h5 { font-size: 20px; }
h6 { font-size: 17px; }

p { font-size: 16px; margin-bottom: 0; }
ul { margin: 0; padding: 0; }
ul li { list-style: none; }

/* Buttons */
button, .btn {
  font-family: var(--body-font-family);
}
button:focus, .btn:focus { outline: none; }
.btn { border: none; cursor: pointer; }

/* Header */
.ak-site_header {
  position: relative;
  z-index: 100001;
}
.ak-site_header.ak-style1 .ak-main_header_in {
  display: flex;
  align-items: center;
}
.ak-main-header-left .ak-site_branding img {
  max-height: 80px !important;
}
.ak-main_header_center {
  display: flex;
  align-items: center;
}
.ak-nav_list {
  display: flex;
  flex-wrap: wrap;
}
.ak-nav_list_item a {
  position: relative;
  display: inline-block;
  color: var(--heading-color);
  text-decoration: none;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}
.ak-nav_list_item a:hover {
  color: var(--primary-color);
}
.ak-nav_list_item a:before {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: 0.4s;
}
.ak-nav_list_item a:hover:before {
  left: 0;
  width: 100%;
}
.ak-main-header-right .common-btn {
  margin-left: 10px;
}

/* Common Button Style */
.common-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--primary-color);
  padding: 10px 25px;
  font-family: var(--body-font-family);
  color: var(--heading-color);
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.common-btn span {
  z-index: 1;
}
.common-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--heading-color);
  visibility: hidden;
  transition: right 0.4s ease;
}
.common-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}
.common-btn:hover span {
  color: var(--white-color);
}
.common-btn:hover::before {
  right: 0;
  visibility: visible;
}

/* Animations */
.anim-pulse {
  animation: pulseAnimation 1.5s infinite;
  animation-timing-function: ease-in-out;
}
@keyframes pulseAnimation {
  0% { transform: scale(0.95); }
  50% { transform: scale(1.05); }
  100% { transform: scale(0.95); }
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section .ak-hero-bg {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.hero-section .mini-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.hero-main-title {
  font-size: 48px;
  line-height: 1.2;
  margin: 15px 0;
}
.hero-main-title .text-warning {
  color: var(--primary-color);
}
.main-desp {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .hero-main-title { font-size: 62px; }
  .main-desp { font-size: 18px; }
}

/* Form inside hero */
.bg-white {
  background-color: #fff;
}
.bg-white input.form-control, .bg-white select.form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 16px;
  width: 100%;
}
.bg-white input.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

/* "Meet the Doctor" Section */
.meet-doctor-section {
  padding: 60px 0;
  background-color: #fff;
}
.doctor-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.doctor-image {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 30px;
}
.doctor-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (min-width: 992px) {
  .doctor-image { flex: 0 0 40%; max-width: 40%; margin-bottom: 0; }
}
.doctor-text {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .doctor-text { flex: 0 0 60%; max-width: 60%; padding-left: 30px; }
}
.doctor-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.doctor-text h5 {
  font-size: 18px;
  color: var(--primary-color);
}
.doctor-text p {
  font-size: 16px;
  margin: 10px 0;
}

/* Services/Cards */
.ak-whiteLite-bg {
  background-color: #fdfbf7;
}
.feature-card-two {
  display: inline-flex;
  flex-direction: column;
  height: 208px;
  background-color: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.feature-card-two .feature-icon {
  margin-bottom: 15px;
}
.feature-title {
  margin-bottom: 10px;
  font-weight: 600;
}
.feature-subtitle {
  margin: 0;
  font-size: 14px;
  color: #787878;
}

/* Highlights Section */
.ak-whiteLite-bg .feature-card-two .feature-desc {
  font-size: 14px;
  color: #787878;
}

/* Buttons in cards */
.more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-family: var(--body-font-family);
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.more-btn .svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  transition: all 0.3s;
}
.more-btn:hover {
  color: var(--primary-color);
}
.more-btn:hover .svg-icon path {
  fill: var(--primary-color);
}

/* About Section ("Why Choose Us") */
.about-us-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 0;
}
.image-content {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 30px;
}
.image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.info-content {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .image-content { flex: 0 0 46%; max-width: 46%; margin-bottom: 0; }
  .info-content { flex: 0 0 54%; max-width: 54%; padding-left: 4%; }
}
.ak-section-heading .ak-section-title {
  font-size: 32px;
  margin-bottom: 20px;
}
.ak-section-heading .ak-section-desp {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}
.ak-list {
  margin-top: 20px;
  padding-left: 20px;
}
.ak-list li {
  font-size: 16px;
  margin-bottom: 10px;
}
.ak-list li strong {
  color: var(--primary-color);
}

/* Features Section ("Our Key Features") */
.ak-white-bg {
  background-color: #fff;
}
.feature-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  align-items: center;
  text-align: center;
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-card .feature-title {
  font-weight: 600;
  margin-bottom: 15px;
}
.feature-card .feature-desp {
  margin-bottom: 20px;
  font-size: 14px;
  color: #787878;
}

/* Testimonials Slider */
.ak-slider-testmonial .swiper-slide {
  width: 100%;
}
.testmonial-slider {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}
.testmonial-img img {
  width: 100%;
  border-radius: 8px;
}
.testmonial-info {
  padding: 20px 0 0 0;
}
.testmonial-title {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
}
.person-info .name {
  font-weight: 600;
  margin: 0;
}
.ak-height-50 { height: 50px; }
.ak-height-60 { height: 60px; }
.ak-height-70 { height: 70px; }

/* Testimonial navigation buttons */
.testmonial-controller .slider-btn {
  border: none;
  background: transparent;
  cursor: pointer;
}
.testmonial-controller svg path {
  stroke: var(--heading-color);
}

/* Accordion (FAQs) */
.ak-accordion .ak-accordion-item {
  border-bottom: 1px solid #e4e3e1;
}
.ak-accordion-title-content {
  cursor: pointer;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ak-accordion-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.accordion-icon {
  transition: transform 0.3s;
}
.ak-accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}
.ak-accordion-tab {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.ak-accordion-item.active .ak-accordion-tab {
  max-height: 500px; /* enough to show content */
}

/* Contact Form */
.contact-form-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 0;
  background-color: #f4ffff;
}
.contact-form-img {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 30px;
}
.contact-form-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.contact-form {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .contact-form-img { flex: 0 0 50%; max-width: 50%; }
  .contact-form { flex: 0 0 50%; max-width: 50%; padding-left: 4%; }
}
.contact-title {
  font-size: 24px;
  margin-bottom: 15px;
}
.form-inputs .type_1 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form-inputs .type_1 label {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--black-color);
}
.form-inputs .type_1 input,
.form-inputs .type_1 select,
.contact-form .form-inputs .type_1 textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px 4px;
  font-size: 16px;
  color: #030917;
  resize: none;
}
.form-inputs .type_1 input:focus,
.form-inputs .type_1 select:focus {
  border-bottom: 1px solid var(--primary-color);
  outline: none;
}
.form-inputs .type_1 textarea:focus {
  border-bottom: 1px solid rgba(3, 9, 23, 0.1);
}

/* Footer */
.ak-footer {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.ak-footer .company-info a img {
  max-height: 80px;
}
.ak-footer .company-info p {
  font-size: 14px;
  margin-top: 10px;
  color: #555;
}
.ak-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
}
.ak-footer .footer-link {
  flex: 1 0 200px;
  margin-bottom: 20px;
}
.ak-footer .short-title {
  font-size: 16px;
  margin-bottom: 10px;
}
.ak-footer .linek-all {
  padding: 0;
  list-style: none;
}
.ak-footer .linek-all li {
  margin-bottom: 8px;
}
.ak-footer .linek-all li a {
  color: var(--body-color);
  text-decoration: none;
  font-size: 14px;
}
.ak-footer .linek-all li a:hover {
  color: var(--primary-color);
}
.copy-right {
  background-color: #fdfbf7;
  text-align: center;
  padding: 20px 0 10px;
}
.copy-right .copyright-text {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Sticky Scrollup (top arrow) */
.ak-scrollup {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: none; /* shown via JS on scroll */
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ak-scrollup svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

/* Mobile Sticky Bottom Navigation */
@media (max-width: 768px) {
  .mobile-sticky-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
  }
  .sticky-nav-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #030917;
    text-decoration: none;
    padding: 8px;
  }
  .footer-spacing {
    height: 100px;
    width: 100%;
  }
  body {
    padding-bottom: 60px;
  }
}

