/**
* Template Name: Clinic
* Template URL: https://bootstrapmade.com/clinic-bootstrap-template/
* Updated: Jul 23 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Lato", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #3c4049;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #112344;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1F8A70;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3c4049;
  /* The default color of the main navmenu links */
  --nav-hover-color: #35b17b;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3c4049;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #175cdd;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f8ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Emergency Text
--------------------------------------------------------------*/
.emergency-text {
  font-size: 15px;
  color: #666;

  margin-top: 15px;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {

  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 9999;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Mobile Menu Styling - Slide from Right */
@media (max-width: 1199px) {
  .navmenu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 80%;
    background: #fff;
    z-index: 9997;
    padding-top: 60px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
  }
  
  .mobile-nav-active .navmenu {
    transform: translateX(0);
    visibility: visible;
  }
  
  .navmenu>ul {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-nav-active .navmenu>ul {
    display: flex !important;
    flex-direction: column;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    gap: 0;
  }
  
  .mobile-nav-active .navmenu>ul>li {
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    display: block;
    width: 100%;
  }
  
  .mobile-nav-active .navmenu>ul>li:last-child {
    border-bottom: none;
  }
  
  /* Ensure no duplicate menus */
  .mobile-nav-active .navmenu {
    display: block !important;
  }
  
  .mobile-nav-active #navmenu {
    display: block !important;
  }
  
  /* Fix for duplicate menu items */
  .mobile-nav-active .navmenu>ul>li>a {
    display: block;
    width: 100%;
  }
  
  /* Remove any potential pseudo-elements that might cause duplication */
  .mobile-nav-active .navmenu>ul>li>a::before,
  .mobile-nav-active .navmenu>ul>li>a::after {
    display: none !important;
  }
  
  .mobile-nav-active .navmenu a {
    padding: 16px 20px;
    font-size: 16px;
    color: #333;
    display: block;
    text-align: left;
    border-radius: 0;
    pointer-events: auto;
  }
  
  /* Disable hover effects on mobile menu */
  .mobile-nav-active .navmenu .dropdown:hover>ul,
  .mobile-nav-active .navmenu .dropdown .dropdown:hover>ul {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  
  /* Close button styling - inside the menu */
  .mobile-nav-active .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9999;
    color: #333;
    font-size: 24px;
  }
  
  /* Overlay background - click to close */
  body.mobile-nav-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 280px;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9996;
    cursor: pointer;
  }
  
}

/* Mobile Header Book Appointment Button */
.btn-book-header {
  display: inline-block;
  padding: 8px 16px;
  background: #1F8A70;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  margin-right: 10px;
  transition: background 0.3s;
}

.btn-book-header:hover {
  background: #176B5A;
  color: #fff;
}

@media (min-width: 1200px) {
  .btn-book-header {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background: url("../img/banner/4.jpg") no-repeat center center;
  background-size: cover;
  padding: 200px 20px 160px;
}

.page-title .heading {
  padding: 0;
  
}

.page-title .heading-title {
  font-size: 3rem;
  font-weight: 700;
}



.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* Right Image */
.psy-image img {
  width: 300px;
  border-radius: 8px;
  padding-top: -50px;
}

.psy-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;

}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.cta-section {
  background: #E9ECEF;
  ;
}

.cta-section h2 {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;

}

.cta-section h2::before,
.cta-section h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 310px;
  height: 1px;
  background: linear-gradient(to right, rgb(190, 188, 188));
}


.cta-section h2::before {
  right: 100%;
  margin-right: 20px;
}

.cta-section h2::after {
  left: 100%;
  margin-left: 20px;
}


.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Professionals CTA Section
--------------------------------------------------------------*/

.professionals-cta {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.professionals-cta h2 {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.professionals-cta h2::before,
.professionals-cta h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 380px;
  height: 1px;
  background: linear-gradient(to right, rgb(190, 188, 188));
  transform: translateY(-50%);
}

.professionals-cta h2::before {
  right: 100%;
  margin-right: 20px;
}

.professionals-cta h2::after {
  left: 100%;
  margin-left: 20px;
}

.professionals-cta p {
  margin-bottom: 20px;
  color: #555;
}

/* Button Styling */
.professionals-cta .btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background: #1F8A70;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.professionals-cta .btn-primary:hover {
  background: #1F8A70;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  background: #f1f3f5;
  /* light grey background */
  padding: 10px 0;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #555;
}

.footer .container {
  max-width: 1300px;
  margin: auto;
}

.footer-description {
  text-align: center;
  margin-bottom: 20px;
  color: #666;
}

.footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;


  padding-top: 15px;
  margin-top: 10px;
}

.footer-contact p {
  margin: 0;
  border-bottom: 1px solid #867e7e;
  padding-bottom: 10px;

}

.footer-contact a {
  color: #007b8f;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-links {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  padding: 0 15px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-legal {
  margin-top: 15px;
  font-size: 12px;
  color: #777;

}

/* New Footer Layout */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo .sitename {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #333;
}

.footer-links .separator {
  color: #999;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  color: #666;
}

.footer-bottom p {
  margin: 0;
}

/* Footer Contact Bar */
.footer-contact-bar {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 10px 0;
}

.footer-contact-bar p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.footer-contact-bar strong {
  color: #333;
  font-weight: 600;
}

.footer-contact-bar a {
  color: #007b8f;
  text-decoration: none;
}

.footer-contact-bar a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  background: url("../img/banner/4.jpg") no-repeat center center;
  background-size: cover;
}


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/banner/4.jpg") center/cover;
  opacity: 0.08;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {

  padding: 3rem 0;
}

.hero .hero-content .trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero .hero-content .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero .hero-content .trust-badges .badge-item i {
  font-size: 1rem;
}

@media (max-width: 576px) {
  .hero .hero-content .trust-badges {
    gap: 0.75rem;
  }

  .hero .hero-content .trust-badges .badge-item {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

.hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1.5rem 0;
  color: var(--heading-color);
}

.hero .hero-content h1 .highlight {
  color: var(--accent-color);
  position: relative;
}

.hero .hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .hero-content .hero-subtitle {
  font-size: 1.1rem;
  color: #1F8A70;
  /* light grey color */
  margin: 0 0 20px 0;
  /* niche thodu spacing */
  font-weight: 400;
  letter-spacing: 0.5px;
  /* thodu spacing letters ma */
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

/* Primary Button */
.btn-primary {
  background-color: #1F8A70;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #176B5A;
}

/* Secondary Button */
.btn-secondary {
  background-color: #f8f9fa;
  color: #333;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #dcdcdc;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #e9ecef;
}

.hero .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 2rem;
}

.hero .hero-content .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-content .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
}

.hero .hero-content .hero-stats .stat-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    gap: 1rem;
  }

  .hero .hero-content .hero-stats .stat-item h3 {
    font-size: 1.5rem;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero .hero-content .hero-actions .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero .hero-content .hero-actions .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .hero-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.hero .hero-content .hero-actions .btn.btn-outline {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: transparent;
}

.hero .hero-content .hero-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .hero-content .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }
}

.hero .hero-content .emergency-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.hero .hero-content .emergency-contact .emergency-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero .hero-content .emergency-contact .emergency-info small {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.hero .hero-content .emergency-contact .emergency-info strong {
  color: var(--heading-color);
  font-size: 1.125rem;
  font-weight: 600;
}

.hero .hero-visual {
  position: relative;
  height: 600px;
}

.hero .hero-visual .main-image {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-visual .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-visual .main-image .floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-visual .main-image .floating-card.appointment-card {
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-content h6 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.875rem;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-content p {
  margin: 0 0 0.25rem 0;
  color: var(--default-color);
  font-weight: 600;
  font-size: 1rem;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-content small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
}

.hero .hero-visual .main-image .floating-card.rating-card {
  bottom: 20px;
  left: 20px;
  text-align: center;
  min-width: 140px;
}

.hero .hero-visual .main-image .floating-card.rating-card .rating-stars {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.hero .hero-visual .main-image .floating-card.rating-card .rating-stars i {
  font-size: 1rem;
}

.hero .hero-visual .main-image .floating-card.rating-card h6 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.125rem;
}

.hero .hero-visual .main-image .floating-card.rating-card small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .hero .hero-visual .main-image .floating-card.appointment-card {
    right: 10px;
    top: 10px;
    padding: 1rem;
    min-width: 160px;
  }

  .hero .hero-visual .main-image .floating-card.rating-card {
    left: 10px;
    bottom: 10px;
    padding: 1rem;
    min-width: 120px;
  }
}

.hero .hero-visual .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero .hero-visual .background-elements .element {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.1;
}

.hero .hero-visual .background-elements .element.element-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  animation: float1 6s ease-in-out infinite;
}

.hero .hero-visual .background-elements .element.element-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -30px;
  animation: float2 8s ease-in-out infinite;
}

.hero .hero-visual .background-elements .element.element-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  animation: float3 7s ease-in-out infinite;
}

@media (max-width: 992px) {
  .hero .hero-visual {
    height: 400px;
    margin-top: 2rem;
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(-180deg);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }

  50% {
    transform: translateY(-70%) rotate(180deg);
  }
}

/* Psychiatry Section */
.psy-section {
  padding: 60px 0;
  background: #f4f7f8;
}

/* Container */
.psy-container {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(to right, #eef3f5, #ffffff);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Left Content */
.psy-content {
  max-width: 500px;
}

.psy-content h2 {
  font-size: 28px;
  color: #2f4858;
  margin-bottom: 10px;
}

.psy-subtitle {
  font-size: 15px;
  color: #5f7a87;
  margin-bottom: 20px;
}

/* Button */
.psy-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #2c7a7b;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
}

.psy-btn:hover {
  background: #245f61;
}

/* Right Image */
.psy-image img {
  width: 300px;
  border-radius: 8px;
}

/* Responsive */
@media(max-width:768px) {

  .psy-container {
    flex-direction: column;
    text-align: center;
  }

  .psy-image img {
    margin-top: 20px;
    width: 220px;
  }

}

/*--------------------------------------------------------------
# Featured Departments Section
--------------------------------------------------------------*/
.featured-departments .specialty-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-departments .specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-departments .specialty-content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-departments .specialty-meta {
  margin-bottom: 15px;
}

.featured-departments .specialty-meta .specialty-label {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
}

.featured-departments h3 {
  font-size: 28px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured-departments .specialty-card p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
}

.featured-departments .specialty-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.featured-departments .specialty-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.featured-departments .specialty-features span i {
  color: var(--accent-color);
  font-size: 16px;
}

.featured-departments .specialty-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-departments .specialty-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateX(5px);
}

.featured-departments .specialty-link i {
  transition: transform 0.3s ease;
}

.featured-departments .specialty-link:hover i {
  transform: translateX(3px);
}

.featured-departments .specialty-visual {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.featured-departments .specialty-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-departments .specialty-visual .visual-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.featured-departments .specialty-visual .visual-overlay i {
  color: var(--accent-color);
  font-size: 24px;
}

.featured-departments .specialty-card:hover .specialty-visual img {
  transform: scale(1.08);
}

.featured-departments .department-highlight {
  background: linear-gradient(180deg, #f5f9fa 0%, #e8f2f4 100%);
  border-radius: 12px;
  padding: 35px 25px;
  height: 100%;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
}

.featured-departments .department-highlight:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  transform: translateY(-3px);
}

.featured-departments .section-title {
  text-align: center;
  /* margin-bottom: 40px; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.featured-departments .section-title::before,
.featured-departments .section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c5d5d8, transparent);
  max-width: 200px;
}

.featured-departments .section-title h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--heading-color);
  white-space: nowrap;
}

.featured-departments .highlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.featured-departments .highlight-icon i {
  color: var(--contrast-color);
  font-size: 32px;
}

.featured-departments h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1a6b5c;
  margin-bottom: 15px;

}

.featured-departments .department-highlight p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.featured-departments .highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.featured-departments .highlight-list li {
  padding: 8px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  position: relative;
}

.featured-departments .highlight-list li:before {
  content: "→";
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 10px;
}

.featured-departments .highlight-cta {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-departments .highlight-cta:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.featured-departments .emergency-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
  color: var(--contrast-color);
}

.featured-departments .emergency-banner h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.featured-departments .emergency-banner p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.featured-departments .emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.featured-departments .emergency-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  color: var(--accent-color);
}

.featured-departments .emergency-btn i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .featured-departments .specialty-card {
    flex-direction: column;
  }

  .featured-departments .specialty-visual {
    height: 200px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .featured-departments .specialty-content {
    padding: 30px 25px;
  }

  .featured-departments h3 {
    font-size: 24px;
  }

  .featured-departments .department-highlight {
    padding: 30px 20px;
    text-align: center;
  }

  .featured-departments .highlight-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .featured-departments .highlight-icon i {
    font-size: 24px;
  }

  .featured-departments h4 {
    font-size: 20px;
  }

  .featured-departments .emergency-banner {
    padding: 30px 25px;
    text-align: center;
  }

  .featured-departments .emergency-banner h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .featured-departments .emergency-banner .emergency-btn {
    margin-top: 20px;
    padding: 14px 25px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .specialty-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-services .specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-services .specialty-content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-services .specialty-meta {
  margin-bottom: 15px;
}

.featured-services .specialty-meta .specialty-label {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
}

.featured-services h3 {
  font-size: 28px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured-services .specialty-card p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
}

.featured-services .specialty-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.featured-services .specialty-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.featured-services .specialty-features span i {
  color: var(--accent-color);
  font-size: 16px;
}

.featured-services .specialty-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-services .specialty-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateX(5px);
}

.featured-services .specialty-link i {
  transition: transform 0.3s ease;
}

.featured-services .specialty-link:hover i {
  transform: translateX(3px);
}

.featured-services .specialty-visual {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.featured-services .specialty-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-services .specialty-visual .visual-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.featured-services .specialty-visual .visual-overlay i {
  color: var(--accent-color);
  font-size: 24px;
}

.featured-services .specialty-card:hover .specialty-visual img {
  transform: scale(1.08);
}

.featured-services .department-highlight {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.featured-services .department-highlight:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  transform: translateY(-3px);
}

.featured-services .highlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.featured-services .highlight-icon i {
  color: var(--contrast-color);
  font-size: 32px;
}

.featured-services h4 {
  font-size: 22px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.featured-services .department-highlight p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.featured-services .highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.featured-services .highlight-list li {
  padding: 8px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  position: relative;
}

.featured-services .highlight-list li:before {
  content: "→";
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 10px;
}

.featured-services .highlight-cta {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-services .highlight-cta:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.featured-services .emergency-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
  color: var(--contrast-color);
}

.featured-services .emergency-banner h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.featured-services .emergency-banner p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.featured-services .emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.featured-services .emergency-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  color: var(--accent-color);
}

.featured-services .emergency-btn i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .featured-services .specialty-card {
    flex-direction: column;
  }

  .featured-services .specialty-visual {
    height: 200px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .featured-services .specialty-content {
    padding: 30px 25px;
  }

  .featured-services h3 {
    font-size: 24px;
  }

  .featured-services .department-highlight {
    padding: 30px 20px;
    text-align: center;
  }

  .featured-services .highlight-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .featured-services .highlight-icon i {
    font-size: 24px;
  }

  .featured-services h4 {
    font-size: 20px;
  }

  .featured-services .emergency-banner {
    padding: 30px 25px;
    text-align: center;
  }

  .featured-services .emergency-banner h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .featured-services .emergency-banner .emergency-btn {
    margin-top: 20px;
    padding: 14px 25px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Find A Doctor Section
--------------------------------------------------------------*/
.find-a-doctor .search-section {
  max-width: 100%;
  margin: 0 auto;
}

.find-a-doctor .search-section .search-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.find-a-doctor .search-section .search-subtitle {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 300;
}

.find-a-doctor .search-section .search-form .search-input-group {
  display: flex;
  align-items: stretch;
  background: var(--surface-color);
  border-radius: 60px;
  padding: 8px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: all 0.4s ease;
}

.find-a-doctor .search-section .search-form .search-input-group:focus-within {
  box-shadow: 0 25px 80px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.find-a-doctor .search-section .search-form .input-wrapper,
.find-a-doctor .search-section .search-form .select-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.find-a-doctor .search-section .search-form .input-wrapper i,
.find-a-doctor .search-section .search-form .select-wrapper i {
  position: absolute;
  left: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1.1rem;
  z-index: 2;
}

.find-a-doctor .search-section .search-form .form-control,
.find-a-doctor .search-section .search-form .form-select {
  border: none;
  background: transparent;
  padding: 20px 20px 20px 50px;
  font-size: 1rem;
  color: var(--default-color);
  border-radius: 0;
}

.find-a-doctor .search-section .search-form .form-control:focus,
.find-a-doctor .search-section .search-form .form-select:focus {
  box-shadow: none;
  background: transparent;
}

.find-a-doctor .search-section .search-form .form-control::placeholder,
.find-a-doctor .search-section .search-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 300;
}

.find-a-doctor .search-section .search-form .search-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  padding: 18px 32px;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.find-a-doctor .search-section .search-form .search-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.find-a-doctor .search-section .search-form .search-btn i {
  font-size: 1.1rem;
}

.find-a-doctor .doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.find-a-doctor .doctor-profile {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.find-a-doctor .doctor-profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.find-a-doctor .doctor-profile .profile-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar {
  position: relative;
  flex-shrink: 0;
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid var(--surface-color);
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar .status-indicator.available {
  background: #10b981;
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar .status-indicator.busy {
  background: #f59e0b;
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar .status-indicator.offline {
  background: color-mix(in srgb, var(--default-color), transparent 40%);
}

.find-a-doctor .doctor-profile .profile-header .doctor-details {
  flex: 1;
}

.find-a-doctor .doctor-profile .profile-header .doctor-details h4 {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.find-a-doctor .doctor-profile .profile-header .doctor-details .specialty-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.find-a-doctor .doctor-profile .profile-header .doctor-details .experience-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.find-a-doctor .doctor-profile .profile-header .doctor-details .experience-info i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-size: 1rem;
}

.find-a-doctor .doctor-profile .rating-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.find-a-doctor .doctor-profile .rating-section .stars {
  display: flex;
  gap: 2px;
}

.find-a-doctor .doctor-profile .rating-section .stars i {
  color: #fbbf24;
  font-size: 1rem;
}

.find-a-doctor .doctor-profile .rating-section .rating-score {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--heading-color);
}

.find-a-doctor .doctor-profile .rating-section .review-count {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
}

.find-a-doctor .doctor-profile .action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.find-a-doctor .doctor-profile .action-buttons .btn-secondary,
.find-a-doctor .doctor-profile .action-buttons .btn-primary {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid;
}

.find-a-doctor .doctor-profile .action-buttons .btn-secondary:hover,
.find-a-doctor .doctor-profile .action-buttons .btn-primary:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.find-a-doctor .doctor-profile .action-buttons .btn-secondary {
  background: transparent;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.find-a-doctor .doctor-profile .action-buttons .btn-secondary:hover {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.find-a-doctor .doctor-profile .action-buttons .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.find-a-doctor .doctor-profile .action-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
}

.find-a-doctor .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 16px 32px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.find-a-doctor .btn-view-all:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.find-a-doctor .btn-view-all i {
  transition: transform 0.3s ease;
}

.find-a-doctor .btn-view-all:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .find-a-doctor .search-section .search-title {
    font-size: 2rem;
  }

  .find-a-doctor .search-section .search-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .find-a-doctor .search-section .search-input-group {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 24px;
  }

  .find-a-doctor .search-section .search-input-group .search-btn {
    border-radius: 16px;
    justify-content: center;
  }

  .find-a-doctor .search-section .search-input-group .form-control,
  .find-a-doctor .search-section .search-input-group .form-select {
    padding: 16px 20px;
  }

  .find-a-doctor .search-section .search-input-group .input-wrapper i,
  .find-a-doctor .search-section .search-input-group .select-wrapper i {
    display: none;
  }

  .find-a-doctor .doctors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .find-a-doctor .doctor-profile {
    padding: 1.5rem;
  }

  .find-a-doctor .doctor-profile .profile-header {
    gap: 1rem;
  }

  .find-a-doctor .doctor-profile .profile-header .doctor-avatar img {
    width: 60px;
    height: 60px;
  }

  .find-a-doctor .doctor-profile .profile-header .doctor-details h4 {
    font-size: 1.25rem;
  }

  .find-a-doctor .doctor-profile .action-buttons {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .find-a-doctor .search-section .search-title {
    font-size: 1.75rem;
  }

  .find-a-doctor .doctor-profile {
    border-radius: 16px;
    padding: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0 100px;
}

.call-to-action .hero-content {
  margin-bottom: 120px;
}

.call-to-action .hero-content .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .call-to-action .hero-content .content-wrapper {
    padding-right: 0;
    margin-bottom: 60px;
    text-align: center;
  }
}

.call-to-action .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .call-to-action .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .call-to-action .hero-content h1 {
    font-size: 2rem;
  }
}

.call-to-action .hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 50px;
}

.call-to-action .hero-content .cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 992px) {
  .call-to-action .hero-content .cta-wrapper {
    align-items: center;
  }
}

.call-to-action .hero-content .cta-wrapper .primary-cta,
.call-to-action .hero-content .cta-wrapper .secondary-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  width: fit-content;
}

.call-to-action .hero-content .cta-wrapper .primary-cta span,
.call-to-action .hero-content .cta-wrapper .secondary-cta span {
  margin-right: 8px;
}

.call-to-action .hero-content .cta-wrapper .primary-cta i,
.call-to-action .hero-content .cta-wrapper .secondary-cta i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.call-to-action .hero-content .cta-wrapper .primary-cta:hover i,
.call-to-action .hero-content .cta-wrapper .secondary-cta:hover i {
  transform: translateX(4px);
}

.call-to-action .hero-content .cta-wrapper .primary-cta {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 2px;
}

.call-to-action .hero-content .cta-wrapper .primary-cta:hover {
  color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.call-to-action .hero-content .cta-wrapper .secondary-cta {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action .hero-content .cta-wrapper .secondary-cta:hover {
  color: var(--default-color);
}

.call-to-action .hero-content .image-container {
  position: relative;
}

.call-to-action .hero-content .image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .call-to-action .hero-content .image-container img {
    height: 300px;
  }
}

.call-to-action .features-section {
  margin-bottom: 120px;
}

.call-to-action .features-section .feature-block {
  padding: 60px 40px;
  text-align: left;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

@media (max-width: 992px) {
  .call-to-action .features-section .feature-block {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    text-align: center;
  }
}

.call-to-action .features-section .feature-block:last-child {
  border-right: none;
}

@media (max-width: 992px) {
  .call-to-action .features-section .feature-block:last-child {
    border-bottom: none;
  }
}

.call-to-action .features-section .feature-block .feature-icon {
  margin-bottom: 30px;
}

.call-to-action .features-section .feature-block .feature-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.call-to-action .features-section .feature-block h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.call-to-action .features-section .feature-block p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.call-to-action .contact-block {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 60px 40px;
  border-radius: 4px;
}

.call-to-action .contact-block .contact-content h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .call-to-action .contact-block .contact-content h2 {
    font-size: 1.6rem;
  }
}

.call-to-action .contact-block .contact-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .call-to-action .contact-block .contact-content p {
    margin-bottom: 30px;
  }
}

.call-to-action .contact-block .contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

@media (max-width: 992px) {
  .call-to-action .contact-block .contact-actions {
    align-items: center;
  }
}

.call-to-action .contact-block .contact-actions .emergency-call {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.call-to-action .contact-block .contact-actions .emergency-call i {
  margin-right: 10px;
  font-size: 16px;
}

.call-to-action .contact-block .contact-actions .emergency-call:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action .contact-block .contact-actions .contact-link {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.call-to-action .contact-block .contact-actions .contact-link:hover {
  color: var(--default-color);
}

@media (max-width: 992px) {
  .call-to-action .contact-block {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
  background: #f3f6f5;

}

.about .about-content h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.3;
  margin-left: 65px;
  margin-top: -66px;
}

.about .about-content p.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about .about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}


/* Section */

.philo-section {
  padding: 60px 20px;
}

.philo-container {
  max-width: 1300px;
  margin: auto;
}


/* Heading */

.philo-heading {
  text-align: center;
  margin-bottom: 35px;
}

.philo-heading h2 {
  font-size: 26px;
  color: #2b3c4d;
  font-weight: 600;

  display: flex;
  /* IMPORTANT */
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* center content */
  gap: 15px;
}

/* left line */
.philo-heading h2::before,
.philo-heading h2::after {
  content: "";
  display: block;
  width: 400px;
  height: 1px;
  background: #c0c1c3;
}



/* icon size */
.philo-heading h2 img {
  height: 40px;
}

/* Cards wrapper */

.philo-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* flex-wrap: wrap; */
}


/* Single Card */

.philo-card {
  width: 450px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.philo-card img.philo-icon {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

/* Hover */

.philo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}


/* Icon */

.philo-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}


/* Title */

.philo-card h3 {
  font-size: 20px;
  color: #2b3c4d;
  margin-bottom: 12px;
  margin-left: 0;
  margin-top: 0;
}


/* Text */

.philo-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  text-align: center;
  margin-left: 0;
}


/* Responsive */

@media(max-width: 768px) {
  .philo-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .philo-card {
    width: 100%;
    max-width: 320px;
    padding: 25px 20px;
  }
  
  .philo-card img.philo-icon {
    height: 45px;
  }
  
  .philo-card h3 {
    font-size: 18px;
  }
  
  .philo-card p {
    font-size: 14px;
  }
}

.serenest-different {
  background: white;
  padding: 60px 0;
}


/* container */
.container2 {
  width: 85%;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  align-items: center;
}


/* heading full width */
.different-heading {
  grid-column: span 2;
  text-align: center;
  margin-bottom: 20px;
}


/* heading with lines */
.different-heading h2 {
  font-size: 28px;
  color: #2b3c4d;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.different-heading h2::before,
.different-heading h2::after {
  content: "";
  width: 400px;
  height: 1px;
  background: #b8b9bc;
}


/* features */
.different-features {
  list-style: none;
  padding: 0;
}

.different-features li {
  display: flex;
  align-items: flex-start;

  font-size: 22px;
  color: #4b5563;

  margin-bottom: 15px;

  line-height: 1.6;
}


/* check icon */
.check-icon {
  color: #5fa3a3;
  font-size: 18px;
  margin-right: 12px;
  margin-top: 2px;
}


/* image */
.serenest-different .different-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.different-image img {

  width: 100%;
  max-width: 500px;

  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}


/* responsive */
@media (max-width: 768px) {
  .container2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .different-heading {
    grid-column: span 1;
  }

  .different-heading h2::before,
  .different-heading h2::after {
    display: none;
  }

  .different-features li {
    justify-content: center;
  }
}

.ethics-section {

  background: #f6f8fa;
  padding: 60px 0;

}


.ethics-wrapper {

  width: 80%;
  margin: auto;
  text-align: center;

}


/* Heading layout */
.ethics-heading {

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  margin-bottom: 30px;

}


/* Lines */
.ethics-heading .line {

  flex: 1;
  height: 1px;
  background: #d1d5db;

}


/* center icon + text */
.heading-center {

  display: flex;
  align-items: center;
  gap: 10px;

}


.heading-center img {

  height: 28px;

}


.heading-center h3 {

  font-size: 26px;
  color: #2b3c4d;
  font-weight: 600;

}


/* list */
.ethics-points {

  list-style: none;
  padding: 0;

  max-width: 600px;
  margin: auto;

  text-align: left;

}


/* list items */
.ethics-points li {

  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 15px;

}

/* check icon */
.ethics-points li::before,
.ethics-points li::after {
  content: "";
  width: 800px;
  height: 1px;
  background: #b8b9bc;
}

/*--------------------------------------------------------------
# Departments Tabs Section
--------------------------------------------------------------*/
.departments-tabs .section-label {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
  display: block;
}

.departments-tabs .medical-specialties {
  margin-top: 3rem;
}

.departments-tabs .specialty-navigation {
  margin-bottom: 2rem;
}

.departments-tabs .specialty-navigation .nav-pills {
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}

@media (max-width: 768px) {
  .departments-tabs .specialty-navigation .nav-pills {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.departments-tabs .specialty-navigation .department-tab {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border: none;
  border-radius: 0;
  color: var(--default-color);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

@media (max-width: 992px) {
  .departments-tabs .specialty-navigation .department-tab {
    font-size: 1rem;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .departments-tabs .specialty-navigation .department-tab {
    width: 100%;
    margin-bottom: 0;
  }
}

.departments-tabs .specialty-navigation .department-tab:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.departments-tabs .specialty-navigation .department-tab.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.departments-tabs .specialty-navigation .department-tab.active::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--accent-color);
}

@media (max-width: 768px) {
  .departments-tabs .specialty-navigation .department-tab.active::after {
    display: none;
  }
}

.departments-tabs .department-content {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 3rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .departments-tabs .department-content {
    padding: 2rem 1.5rem;
  }
}

.departments-tabs .department-layout {
  align-items: stretch;
}

.departments-tabs .department-image {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.departments-tabs .department-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.departments-tabs .department-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .departments-tabs .department-image {
    height: 300px;
    margin-bottom: 2rem;
  }
}

.departments-tabs .department-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 992px) {
  .departments-tabs .department-info {
    height: auto;
  }
}

.departments-tabs .department-title {
  color: var(--heading-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .departments-tabs .department-title {
    font-size: 1.8rem;
  }
}

.departments-tabs .department-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}


.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.check-list li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 16px;
  color: #2f4f4f;
}

.check-list li::before {
  content: "✔";
  width: 22px;
  height: 22px;
  background-color: #3a5f4c;
  color: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

/* BUTTON */
.btn-1 {
  display: block;
  width: 50%;
  background: linear-gradient(180deg, #5f8f76, #4f7f6a);
  color: #fff;
  padding: 8px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(79, 127, 106, 0.25);
}

.btn-1:hover {
  background: linear-gradient(180deg, #4f7f6a, #3e6756);
}

/* LEARN MORE */
.learn-more {
  display: block;
  text-align: center;
  color: #4f7f6a;
  font-weight: 500;
  text-decoration: none;
}



.departments-tabs .service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.departments-tabs .service-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateY(-2px);
}

.departments-tabs .service-icon {
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.departments-tabs .service-icon i {
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.departments-tabs .service-content {
  flex: 1;
}

.departments-tabs .service-content h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.departments-tabs .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.departments-tabs .tab-pane {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.departments-tabs .tab-pane.show.active {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments .department-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.departments .department-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.departments .department-card:hover .department-image img {
  transform: scale(1.05);
}

.departments .department-card:hover .department-icon {
  transform: scale(1.1);
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
}

.departments .department-card:hover .learn-more {
  color: var(--accent-color);
}

.departments .department-card:hover .learn-more i {
  transform: translateX(5px);
}

.departments .department-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 24px;
  transition: all 0.4s ease;
  z-index: 2;
}

.departments .department-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.departments .department-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.departments .department-content {
  padding: 30px 25px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.departments .department-content h3 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.3;
}

.departments .department-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.departments .department-content .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.departments .department-content .learn-more span {
  font-family: var(--heading-font);
}

.departments .department-content .learn-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .departments .department-card {
    margin-bottom: 20px;
  }

  .departments .department-image {
    height: 200px;
  }

  .departments .department-content {
    padding: 25px 20px 20px;
  }

  .departments .department-content h3 {
    font-size: 20px;
  }

  .departments .department-content p {
    font-size: 14px;
  }

  .departments .department-icon {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Department Details Section
--------------------------------------------------------------*/
.department-details .department-hero {
  padding: 2rem 0;
}

.department-details .department-hero .badge-wrap {
  margin-bottom: 1.5rem;
}

.department-details .department-hero .badge-wrap .specialty-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.department-details .department-hero .department-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.department-details .department-hero .department-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
  max-width: 90%;
}

.department-details .department-hero .key-highlights {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.department-details .department-hero .key-highlights .highlight-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.department-details .department-hero .key-highlights .highlight-item .highlight-number {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.department-details .department-hero .key-highlights .highlight-item .highlight-text {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.department-details .department-hero .action-group {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.department-details .department-hero .action-group .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  border-radius: 0;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-color);
}

.department-details .department-hero .action-group .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateX(5px);
}

.department-details .department-hero .action-group .btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.department-details .department-hero .action-group .btn-secondary i {
  transition: transform 0.3s ease;
}

.department-details .department-hero .action-group .btn-secondary:hover {
  color: var(--accent-color);
}

.department-details .department-hero .action-group .btn-secondary:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .department-details .department-hero .department-title {
    font-size: 2.5rem;
  }

  .department-details .department-hero .key-highlights {
    gap: 1.5rem;
  }

  .department-details .department-hero .action-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.department-details .department-visual .image-container {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.department-details .department-visual .image-container .primary-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.department-details .department-visual .image-container .floating-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 280px;
}

.department-details .department-visual .image-container .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.department-details .department-visual .image-container .floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.department-details .department-visual .image-container .floating-card .card-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.department-details .department-visual .image-container .floating-card .card-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .department-details .department-visual {
    margin-top: 3rem;
  }

  .department-details .department-visual .image-container {
    min-height: 400px;
  }

  .department-details .department-visual .image-container .floating-card {
    bottom: 1rem;
    left: 1rem;
    max-width: 250px;
  }
}

.department-details .services-overview {
  margin-top: 8rem;
  margin-bottom: 6rem;
}

.department-details .services-overview .overview-header {
  text-align: center;
  margin-bottom: 4rem;
}

.department-details .services-overview .overview-header h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.department-details .services-overview .overview-header p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
  margin: 0 auto;
}

.department-details .services-overview .services-grid .service-item {
  text-align: left;
  padding: 2rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.department-details .services-overview .services-grid .service-item:hover {
  padding-left: 1rem;
}

.department-details .services-overview .services-grid .service-item:hover .service-icon {
  background-color: var(--accent-color);
}

.department-details .services-overview .services-grid .service-item:hover .service-icon i {
  color: var(--contrast-color);
}

.department-details .services-overview .services-grid .service-item .service-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.department-details .services-overview .services-grid .service-item .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.department-details .services-overview .services-grid .service-item h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.department-details .services-overview .services-grid .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.department-details .expert-care-section {
  margin-top: 6rem;
}

.department-details .expert-care-section .expert-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.department-details .expert-care-section .expert-content {
  padding-left: 3rem;
}

.department-details .expert-care-section .expert-content h3 {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.department-details .expert-care-section .expert-content .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.department-details .expert-care-section .expert-content .expertise-list {
  margin-bottom: 3rem;
}

.department-details .expert-care-section .expert-content .expertise-list .expertise-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.department-details .expert-care-section .expert-content .expertise-list .expertise-item i {
  color: var(--accent-color);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.department-details .expert-care-section .expert-content .expertise-list .expertise-item span {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.6;
}

.department-details .expert-care-section .expert-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.department-details .expert-care-section .expert-content .contact-info .contact-item i {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.department-details .expert-care-section .expert-content .contact-info .contact-item div {
  display: flex;
  flex-direction: column;
}

.department-details .expert-care-section .expert-content .contact-info .contact-item div .contact-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.department-details .expert-care-section .expert-content .contact-info .contact-item div .contact-value {
  font-weight: 500;
  color: var(--default-color);
}

@media (max-width: 991px) {
  .department-details .expert-care-section .expert-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .department-details .expert-care-section .expert-content h3 {
    font-size: 1.875rem;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/

#featured-services {
  padding: 80px 0;
  background-color: #f3f6f5;
}

.section-title h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #2f4f4f;
  margin-bottom: 50px;
}

/* Layout */
.services-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.service-card {
  background: #ffffff;
  width: 410px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  /* transition: 0.3s ease; */
  text-align: center;
}



/* Image */
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.card-content {
  padding: 20px;
}

.card-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2f4f4f;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Button */
.btn-service {
  display: inline-block;
  padding: 8px 18px;
  background-color: #1F8A70;
  color: #fff;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-service:hover {
  background-color: #176B5A;
}

/* Responsive */
@media (max-width: 992px) {
  .services-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Featured how-it-work Section
--------------------------------------------------------------*/

#featured-how-it-work {
  padding: 80px 0;
  background-color: #f8faf9;
}

#featured-how-it-work .section-title h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #2f4f4f;
  margin-bottom: 50px;
}

/* Service Card */
.service-highlight {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-highlight:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Service Title */
.service-highlight h4 {
  font-size: 22px;
  font-weight: 600;
  color: #2f4f4f;
  margin-bottom: 15px;
}

/* Service Text */
.service-highlight p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Read More Link */
.service-highlight .read-more {
  font-size: 14px;
  font-weight: 600;
  color: #4f7f5f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-highlight .read-more:hover {
  color: #2f5f3f;
}

/* Responsive */
@media (max-width: 768px) {
  #featured-services {
    padding: 60px 0;
  }

  #featured-services .section-title h2 {
    font-size: 26px;
  }

  .service-highlight {
    padding: 30px 25px;
  }
}

/*--------------------------------------------------------------
# Doctors  Section
--------------------------------------------------------------*/
.doctors .doctor-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.doctors .doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.doctors .doctor-card:hover .doctor-overlay {
  opacity: 1;
}

.doctors .doctor-image {
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
}

.doctors .doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.doctors .doctor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.doctors .doctor-overlay .social-links {
  display: flex;
  gap: 10px;
}

.doctors .doctor-overlay .social-links a {
  width: 35px;
  height: 35px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.doctors .doctor-overlay .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.doctors .doctor-overlay .social-links a i {
  font-size: 16px;
}

.doctors .doctor-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.doctors .doctor-content .specialty {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
}

.doctors .doctor-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.doctors .doctor-meta {
  margin-bottom: 20px;
}

.doctors .doctor-meta .experience,
.doctors .doctor-meta .department {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 8px;
}

.doctors .doctor-meta .experience i,
.doctors .doctor-meta .department i {
  color: var(--accent-color);
  font-size: 14px;
}

.doctors .doctor-meta .department {
  margin-bottom: 0;
}

.doctors .btn-appointment {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.doctors .btn-appointment:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .doctors .doctor-card {
    padding: 20px;
  }

  .doctors .doctor-image {
    width: 120px;
    height: 120px;
  }

  .doctors .doctor-content h4 {
    font-size: 20px;
  }

  .doctors .doctor-content .specialty {
    font-size: 14px;
  }

  .doctors .doctor-content p {
    font-size: 13px;
  }

  .doctors .btn-appointment {
    padding: 10px 25px;
    font-size: 13px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.intake-section {
  background: #f3f4f6;
  width: 100%;
  padding: 60px 20px;
}

.intake-card {
  max-width: 1300px;
  margin: auto;
  background: #faf7f7;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.intake-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: #111827;
}

.form-1 {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(168, 167, 167, 0.06);

  width: 90%;
  margin: auto;
  padding: 35px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  width: 50%;
}

.full {
  width: 100%;
}

/* Phone input */
.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
}

.country-code {
  background: #f9fafb;
  padding: 10px 12px;
  font-size: 14px;
  border-right: 1px solid #d1d5db;
}

.phone-input input {
  border: none;
  padding: 12px;
  flex: 1;
}

/* Button */
.button-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: center;

}

.button-1 .submit-btn {
  width: 30%;

  margin-top: 10px;
  background: #0f766e;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #115e59;
}

.note {
  margin-top: 20px;
  font-size: 15px;
  color: #6b7280;
  text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .form-row .form-group {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Featured Testimonials Section
--------------------------------------------------------------*/
.featured-testimonials .testimonial-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.featured-testimonials .testimonial-item .stars {
  margin-bottom: 16px;
  color: #f7b50d;
}

.featured-testimonials .testimonial-item .stars i {
  font-size: 18px;
  margin: 0 2px;
}

.featured-testimonials .testimonial-item p {
  font-size: 15px;
  font-style: italic;
  margin: 0 0 20px 0;
}

.featured-testimonials .testimonial-item .profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.featured-testimonials .testimonial-item .profile .testimonial-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.featured-testimonials .testimonial-item .profile .info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.featured-testimonials .testimonial-item .profile .info h4 i {
  font-size: 14px;
  color: var(--accent-color);
  margin-left: 4px;
}

.featured-testimonials .testimonial-item .profile .info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.featured-testimonials .swiper-wrapper {
  height: auto !important;
}

.featured-testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.featured-testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.featured-testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 1199.98px) {
  .featured-testimonials .testimonial-item {
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  color: #FFD700;
}

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    font-size: 16px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
  color: var(--accent-color);
  font-weight: 500;
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  color: var(--accent-color);
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  gap: 0;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
  transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
  transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--heading-color);
  transition: all 0.3s ease;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-right: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 80px 40px 80px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 30px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 60px;
    font-size: 1rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 60px 30px 60px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 25px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 50px;
    font-size: 0.9rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
    margin-right: 10px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 50px 25px 50px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact .contact-info-item .info-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .contact-info-item .info-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-item .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.contact .contact-info-item .info-content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.contact .contact-form-card h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-form-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact .contact-form-card .form-control {
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 15px 20px;
  height: calc(3.5rem + 2px);
  background-color: var(--surface-color);
  color: var(--default-color);
  margin-bottom: 20px;
}

.contact .contact-form-card .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-card .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-card textarea.form-control {
  min-height: 150px;
  margin-bottom: 25px;
}

.contact .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.contact .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact .map-container {
  position: relative;
  margin-top: 50px;
  padding: 0;
}

.contact .map-container .map-overlay {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--background-color), transparent);
  z-index: 10;
}

.contact .map-container iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form-card {
    padding: 30px;
  }

  .contact .map-container {
    margin-top: 40px;
  }

  .contact .map-container .map-overlay {
    top: -25px;
    height: 50px;
  }

  .contact .map-container iframe {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-wrapper {
    gap: 25px;
  }

  .contact .contact-info-item {
    gap: 15px;
  }

  .contact .contact-info-item .info-icon {
    width: 50px;
    height: 50px;
  }

  .contact .contact-form-card {
    padding: 25px;
  }

  .contact .contact-form-card h2 {
    font-size: 24px;
  }

  .contact .map-container {
    margin-top: 30px;
  }

  .contact .map-container .map-overlay {
    top: -20px;
    height: 40px;
  }

  .contact .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact .contact-form-card {
    padding: 20px;
  }

  .contact .map-container {
    margin-top: 25px;
  }

  .contact .map-container .map-overlay {
    top: -15px;
    height: 30px;
  }

  .contact .map-container iframe {
    height: 350px;
    border-radius: 8px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  padding-top: 60px;
  padding-bottom: 60px;
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Online Psychiatry Page Styles
--------------------------------------------------------------*/
.psychiatry-hero {
  padding: 0;
  background: url("../img/banner/4.jpg") no-repeat center center;
  overflow: hidden;
}

.psychiatry-hero .container-fluid {
  padding: 208px 9px;
  width: 1300px;
  justify-content: flex-start;
  align-items: flex-start;


}

.info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.psychiatry-hero .hero-content {
  padding: 80px 60px;
}

.psychiatry-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.psychiatry-hero .hero-subtitle {
  font-size: 18px;
  color: #1a6b5c;
  margin-bottom: 30px;
}

.psychiatry-hero .hero-image-wrapper {
  padding: 0;
}

.psychiatry-hero .hero-image {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.psychiatry-hero .hero-image img {
  max-height: 450px;
  object-fit: cover;
  object-position: top;
}

.emergency-notice {

  padding: 15px 0;

}

.emergency-notice .notice-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.emergency-notice .notice-content i {
  color: #1a6b5c;
  font-size: 16px;

}

.who-section {
  width: 100%;
  background-color: #fdfbfb;
  margin: -55px auto;
}

.who-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;

}

.who-text {
  display: flex;
  flex-direction: column;
  margin-top: -35px;
  gap: 20px;
  margin-left: -20px;
}

.who-text h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.who-text ul {
  list-style: none;
  padding: 0;
}

.who-text ul li {
  font-size: 20px;
  color: #555;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.who-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3aa6a6;
  font-size: 13px;
}

.who-image img {
  width: 600px;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .who-container {
    flex-direction: column;
    text-align: center;
  }

  .who-image img {
    width: 100%;
    max-width: 320px;
  }
}


.consultation-section {
  width: 100%;
  background-color: white;
  padding: 100px 0;
}

.consultation-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

/* Left content */
.consultation-content {
  width: 55%;
  margin-top: -92px;
  margin-left: -17px;
  flex-direction: column;
  gap: 20px;
}

.consultation-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111827;
}

.consultation-list {
  list-style: none;
  padding-left: 3px;
}

.consultation-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 20px;
  color: #374151;
  line-height: 1.6;
}

/* Bullet dot */
.consultation-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #3b82f6;
}

/* Right image */
.consultation-image {
  width: 45%;
  text-align: right;
}

.consultation-image img {
  width: 550px;
  margin-top: -40px;
  height: 300px;
  border-radius: 8px;
  object-fit: cover;
}

.care-section {
  width: 100%;
  margin: 40px auto;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdfbfb;
  border-radius: 10px;
}

/* Left content */
.care-left {

  width: 1300px;
  margin-top: -10px;
  margin-left: 83px;

  flex-direction: column;
  gap: 20px;

}

.care-left h2 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 18px;
}

.care-left p {
  font-size: 18px;
  color: #333;
  margin-bottom: 14px;
}

.care-left ul {
  list-style: none;
  padding: 0;
}

.care-left ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}

.care-left ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #00a8a8;
}

/* Right image */
.care-right {
  width: 35%;


}

.care-right img {
  width: 400px;
  margin-top: 0px;
  height: 200px;
  border-radius: 8px;

  margin-left: -98px;
}

.therapy-info {
  width: 100%;
  background: #f0f2f5;
  padding: 40px 0;
}

.therapy-box {
  max-width: 1300px;
  margin: auto;

  border-radius: 10px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.therapy-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.therapy-left h3 {
  font-size: 28px;
  color: #2c4b57;
  margin-bottom: 12px;
}

.block {
  margin-bottom: 40px;

}

.block-bg {
  background: #f9fbfc;
  padding: 20px;
  border-radius: 8px;
  margin-top: -40px;
}

.therapy-left ul {
  list-style: none;
}

.therapy-left ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #444;
  font-size: px;
}

.therapy-left ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2f8f8b;
  font-weight: bold;
}

.therapy-right img {
  width: 100%;
  border-radius: 10px;
}

.process-section {
  background-color: white;
  padding: 60px 20px;
}

.process-container {
  max-width: 1300px;
  margin: auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-item {
  width: 28%;
  text-align: center;
}

.icon-circle {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  border: 2px solid #c7d2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #3b82f6;
  margin-bottom: 15px;
}

.process-item h4 {
  font-size: 25px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.process-item p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.5;
}

.arrow {
  font-size: 30px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .process-container {
    flex-direction: column;
    gap: 30px;
  }

  .process-item {
    width: 100%;
  }

  .arrow {
    transform: rotate(90deg);
  }
}


.brand-section {
  background: white;
  padding: 40px 20px;
}

.brand-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

/* Header with lines */
.brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.brand-header::after,
.brand-header::before {
  content: "";
  flex: 1;
  height: 1px;
  width: 500px;
  background: #d6d7d8;
}



/* Logo + name */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo img {
  width: 32px;
  height: auto;
}

.brand-logo span {
  font-size: 22px;
  font-weight: 600;
  color: #374151;
}

/* Description */
.brand-text {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 700px;
  margin: auto;
}

/* Responsive */
@media (max-width: 600px) {
  .brand-header {
    gap: 10px;
  }

  .brand-logo span {
    font-size: 20px;
  }

  .brand-text {
    font-size: 14px;
  }
}

.support-hero {
  width: 100%;
  background: url("../img/banner/4.jpg") no-repeat center center;
  background-size: cover;
}

.support-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  padding-top: 150px;
  align-items: center;
  justify-content: space-between;
}

.support-content h2 {
  font-size: 40px;
    font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.support-content p {
  color: #6b7280;
  margin-bottom: 20px;
}

.btn-primary {
  background: #0f766e;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.support-image img {
  max-width: 380px;
}

.intro-text {
  text-align: center;
  padding: 30px 20px;
  background-color: #f1f3f6;
  font-size: 20px;
}

.intro-text p {
  font-size: 20px;
  color: #666565;
}

.intro-text span {
  font-size: 20px;
  color: #000;
}

/* Section background */
.service-guide {
  width: 100%;
  background: #f3f5f7;
  padding: 60px 0;
}

/* Center container */
.service-guide .container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* Main box */
.guide-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/* Flex layout */
.guide-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

/* Left side */
.guide-left {
  flex: 1;
}

/* Cards layout */
.guide-cards {
  display: flex;
  gap: 20px;
}

/* Individual card */
.guide-card {
  flex: 1;
  background: #f7f9fb;
  border-radius: 10px;
  padding: 20px;
}

/* Card title */
.guide-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1f2d3d;
}

.guide-card h3 i {
  color: #2a7f8e;
  margin-right: 8px;
}

/* Card description */
.guide-card p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 10px;
}

/* List */
.guide-card ul {
  padding-left: 18px;
  margin: 0;
}

.guide-card ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #344054;
}

/* Notes section */
.guide-notes {
  margin-top: 20px;
}

.guide-notes p {
  font-size: 14px;
  color: #344054;
  margin-bottom: 8px;
}

.guide-notes i {
  color: #2a7f8e;
  margin-right: 6px;
}

/* Right image */
.guide-right {
  flex: 0 0 340px;
}

.guide-right img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* Footer CTA */
.guide-footer {
  margin-top: 30px;
  text-align: center;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
}

.guide-footer h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.guide-footer p {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 15px;
}

.guide-btn {
  background: #2a7f8e;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.guide-btn:hover {
  background: #256f7c;
}

.professionals-section {
  background: #f4f6f9;
  padding-bottom: 0px;
  font-family: Arial;
}

.pro-container {
  width: 90%;
  margin: auto;
}


/* Banner */
.pro-banner {

  background: url("../img/banner/4.jpg") no-repeat center center;
  background-size: cover;
  padding: 113px ;
  padding-bottom: 160px;
}

.pro-banner-content h2 {
  font-size: 3rem;
  font-weight: 700;
}

.pro-banner-content p {
  color: #555;
  margin-top: 10px;
  font-size: 20px;
}


/* Section title */
.pro-container-1 {
  width: 100%;
  margin: auto;
  background-color: #f4f6f9;
}

.pro-container {
  width: 1300px;
  margin: auto;
}

.section-title {
  /* margin-top: 40px; */
  margin-bottom: 20px;
  font-size: 28px;
  color: #333;
  text-align: left;
  display: flex;
}

.section-title h3 {
  font-size: 20px;
}

/* .section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  width: 400px;
  background: #c5c6c7;
  margin-top: 15px;
} */

/* Grow cards */
.grow-cards {
  /* margin-top: 40px;  */
  display: flex;
  gap: 40px;
}

.grow-card {
  background: #fff;
  width: 360px;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  padding-bottom: 0px;

}

.grow-card h4 {
  font-size: 22px;
  padding: 15px 41px 4px;
  margin-top: -43px;


}

.grow-card p {
  font-size: 20px;
  padding: 4px 41px 4px;
  color: #6c757d;
  margin-bottom: 10px;
}

.grow-card i {
  font-size: 22px;
  color: #2a7f84;
}

.grow-image img {
  width: 360px;
  border-radius: 10px;

  height: 192px;
}


/* Join cards */
.who-can-join {
  width: 100%;
  margin: auto;
}

.who-can-container-1 {
  width: 1300px;
  margin: auto;
}

.who-can-heading {
  text-align: center;
}

.who-can-heading h3 {
  display: flex;
  /* important */
  align-items: center;
  justify-content: center;
  font-size: 28px;
  gap: 15px;
  /* space between line and text */
}

.who-can-heading h3::before,
.who-can-heading h3::after {
  content: "";
  flex: 1;
  /* line automatically stretch thase */
  height: 1px;
  background: #9ea1a4;
  max-width: 550px;
  /* optional, limit line length */
}


.join-cards {
  display: flex;
  gap: 40px;
  margin-top: 40px;

}

.join-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.join-card img {
  width: 100%;
  height: 300px;
}

.join-card h4 {
  padding: 10px;
}

.join-card ul {
  padding: 0 34px 20px;
}

.join-card ul li {

  font-size: 15px;
  color: #343535;

}

/* Collaboration */
.collab-section {
  width: 100%;
  background: #f4f6f9;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
}

.collab-container {
  width: 1300px;
  margin: auto;

}

.collab-title {
  text-align: center;
  margin-bottom: 20px;
}

.collab-title h3 {
  font-size: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* space between text and line */
}

.collab-title h3::before,
.collab-title h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #9ea1a4;
  display: block;
}

.collab-title img {
  width: 5%;
  height: 10%;
}

.collab-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;

}

.collab-card {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: left;
  flex: 1;
}

.collab-card h4 {
  font-size: 22px;
  padding: 0px 45px 9px;
  margin-top: -30px;
}

.collab-card img {
  width: 10%;
  height: auto;

}

.collab-card p {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 10px;

}

/* Wrapper center */
.interest-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Heading */
.interest-section h3 {
  font-size: 30px;
  color: #2c3e50;
  margin-bottom: 15px;

  display: flex;
  /* important */
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* center text */
  gap: 15px;
  /* space between text and line */
}

/* before and after lines */
.interest-section h3::before,
.interest-section h3::after {
  content: "";
  flex: 1;
  height: 1px;
  width: 480px;
  background: #9ea1a4;
  display: block;
}


/* Paragraph */
.interest-section p {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* info icon */
.info-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: 11px;
  background: #e9ecef;
  border-radius: 50%;
  line-height: 16px;
  text-align: center;
  margin-left: 5px;
}

/* form row */
.form-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* name input */
.name-input {
  padding: 10px;
  border: 0.5px solid #cac9c9;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  width: 300px;
  outline: none;
}

/* phone input group */
.phone-input {
  display: flex;
  align-items: center;
  border: 0.5px solid #cac9c9;
  border-radius: 5px;
  width: 300px;
  overflow: hidden;
  
}

/* country code */
.country-code {
  padding: 10px;
  background: #f8f9fa;
  border-right: 1px solid #ddd;
  font-size: 14px;
}

/* phone input */
.phone-input input {
  border: none;
  padding: 10px;
  flex: 1;
  outline: none;
}

/* button */
.button-submit {
  display: flex;
  justify-content: center;
  align-items: center;
}

.interest-form button {
  background: #2a7f84;
  width: 200px;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease-in-out;
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.interest-form button:hover {
  background: #256e72;
}

.services-section {
  width: 100%;
  background: #f4f6f8;
  padding: 40px 20px;
  display: flex;
}

.services-container {
  width: 1300px;
  margin: 0px auto;
  background: white;
  padding: 20px;
  border-radius: 5px;
}

.services-box {
  display: flex;
  gap: 25px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
}

/* LEFT SIDE */
.services-left {
  flex: 2;
}

/* Cards row */
.card-row {
  display: flex;
  gap: 20px;
  padding-bottom: 15px;
}

/* Card */
.service-card {
  flex: 1;
  background: #f7f9fb;
  border-radius: 6px;
  padding: 18px;
}

/* Card heading */
.service-card h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.service-card h4 i {
  color: #2a7f84;
  margin-right: 6px;
}

/* Card text */
.service-card p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 10px;
}

/* List */
.service-card ul {
  padding-left: 18px;
}

.service-card ul li {
  font-size: 17px;
  margin-bottom: 6px;
  color: #495057;
  text-align: left;
}

/* Info text */
.info-text {
  margin-top: 15px;
}

.info-text p {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 6px;
}

.info-text i {
  color: #2a7f84;
  margin-right: 6px;
}

/* RIGHT SIDE */
.services-right {
  flex: 1;
  display: flex;
  margin-bottom: 318px;

}

.doctor-img {
  width: 50%;
  height: 50%;
  border-radius: 6px;


}

.services-section {
  width: 100%;
  background: #f1f3f6;
  padding: 40px 20px;
  margin-bottom: 0;
}

.services-container {
  max-width: 1300px;
  margin: auto;
}

/* top white box */
.services-box {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  gap: 20px;
}

/* left side */
.services-left {
  flex: 2;
}

.card-row {
  display: flex;
  gap: 15px;
}

/* card */
.service-card {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f9fb;
}

/* Card container */
.info-card {
  background: #e9edf2;
  padding: 30px 16px;
  border-radius: 6px;
  width: 100%;
}

/* Header (icon + title same line) */
.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

/* Icon */
.card-header i {
  color: #2a7f84;
  font-size: 18px;
}

/* Title */
.card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

/* Subtitle */
.card-subtitle {
  margin-bottom: 5px;
}

.card-subtitle p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  text-align: left;
  justify-content: flex-start;
  line-height: 1.4;
  padding-left: 26px;
  /* aligns under title (after icon) */
}



/* card body */
.card-body {
  padding: 12px;
}



.card-body ul {
  margin-top: 8px;
  padding-left: 18px;
}

.card-body li {
  font-size: 13px;
  margin-bottom: 5px;
}

/* info text */
.info-text {
  margin-top: 12px;
}

.info-text p {
  font-size: 13px;
  color: #6c757d;
}

.info-text i {
  color: #2a7f84;
  margin-right: 6px;
}



/* footer box */

.service-footer {
  width: 1300px;
  margin: 0px auto;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e9edf2;
  text-align: center;
  padding: 20px;
  margin-top: 15px;
  border-radius: 6px;
}

.service-footer h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.service-footer p {
  font-size: 12px;
  color: #6c757d;
}

.service-btn {
  background: #2a7f84;
  color: white;
  border: none;
  padding: 10px 30px;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* Not Sure Page - Service Cards Layout */
.info-image-row {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  align-items: flex-end;
  margin-bottom: -301px;
}

.card-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.service-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 0px 0px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card .card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.service-card .card-header i {
  font-size: 22px;
  color: #1a6b5c;
}

.service-card .card-header span {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.service-card .card-subtitle {
  margin-bottom: 15px;
}

.service-card .card-subtitle p {
  font-size: 18px;
  color: #666;
  margin: 0;
  line-height: 1.4;
  text-align: left;
  justify-content: flex-start;
  padding-left: 30px;
}

.service-card .card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card .card-body li {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  padding-left: 15px;
  position: relative;
  line-height: 1.4;
}

.service-card .card-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a6b5c;
  font-weight: bold;
}

.info-text {
  margin-bottom: 560px;
}

.info-text p {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 17px;
  color: #2c3e50;
}

/* check icon before text */
.info-text p::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #1a6b5c;
  font-weight: bold;
  font-size: 16px;
}


@media (max-width: 992px) {
  .info-image-row {
    flex-direction: column;
    align-items: center;
  }

  .services-right {
    width: 100%;
    max-width: 350px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    ;
  }

  .card-row {
    flex-direction: column;
  }
}

















/* ================= FORM SECTION ================= */
.interest-section {
  width: 1300px;
  background: #f5f7f8;
  padding: 60px 0;
  text-align: center;
}

.contact-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-title i {
  color: #3f7f86;
}

.tagline {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.interest-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;

}

.input {
  height: 48px;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  padding: 0 15px;
  font-size: 15px;
  background: #fafafa;
}

.name {
  width: 260px;
}

.phone-group {
  display: flex;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  overflow: hidden;
  background: #fafafa;
}

.code {
  border: none;
  padding: 0 12px;
  background: #f1f3f5;
}

.phone {
  border: none;
  width: 180px;
  background: transparent;
}

.submit-btn {
  height: 48px;
  padding: 0 50px;
  background: #3f7f86;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: .3s;
}

.submit-btn:hover {
  background: #366a71;
}

/*  ================= Responsive ================= */
@media(max-width:768px) {
  .hero-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-image img {
    width: 100%;
    max-width: 420px;
  }

  .contact-container,
  .message-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    width: 100%;
  }

  .name,
  .phone {
    width: 100%;
  }

  .submit-btn {
    width: 100%;
    padding: 0;
  }
}




/* =====================================================
   GLOBAL RESPONSIVE FIX (Do NOT edit above code)
   ===================================================== */

/* Prevent overflow issues */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

* {
  min-width: 0;
}

/* Make all sections flexible */
.contact-hero,
.contact-section,
.trust-section,
.interest-section {
  width: 100%;
  overflow: hidden;
}

/* HERO FIX */
@media (max-width:1024px) {

  .hero-box {
    flex-wrap: wrap;
    gap: 30px;
  }

  .hero-text {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .hero-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero-image img {
    margin: 0 auto;
  }

}

/* TABLET VIEW */
@media (max-width:768px) {

  .contact-hero {
    padding: 120px 15px 40px;
  }

  .hero-box {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-text h2 {
    font-size: 22px;
    text-align: center;
  }

  .hero-text .sub {
    text-align: center;
    font-size: 15px;
  }

  .hero-text p {
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
  }
  
  }

  /* Remove fixed widths without editing original */
  .name,
  .phone,
  .phone-group {
    width: 100% !important;
    max-width: 100%;
  }

  .submit-btn {
    width: 100%;
    padding: 0;
  }



/* SMALL MOBILE */
@media (max-width:480px) {

  .hero-box {
    padding: 20px;
  }

  .hero-text h2 {
    font-size: 21px;
  }

  .hero-text .sub {
    font-size: 14px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card .icon {
    margin-bottom: 10px;
    align-self: center;
  }

  .contact-card .card-text {
    text-align: center;
    width: 100%;
  }

  .contact-card .card-text h3,
  .contact-card .primary,
  .contact-card .secondary {
    text-align: center;
  }
  .trust-box {
    padding: 18px;
  }

}

/* LARGE DESKTOP IMPROVEMENT */
@media (min-width:1400px) {

  .hero-inner {
    max-width: 1300px;
    margin: auto;
  }

}



/* =====================================================
   GLOBAL RESPONSIVE FIX (Do NOT edit above code)
   ===================================================== */

/* Prevent overflow issues */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

* {
  min-width: 0;
}


/* HERO FIX */
@media (max-width:1024px) {

  .hero-box {
    flex-wrap: wrap;
    gap: 30px;
  }

  .hero-text {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .hero-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero-image img {
    margin: 0 auto;
  }

}

/* TABLET VIEW */
@media (max-width:768px) {

  .contact-hero {
    padding: 120px 15px 40px;
  }

  .hero-box {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .hero-text h2 {
    font-size: 24px;
  }

  .hero-text p {
    margin: 0 auto;
  }

  /* Contact cards stack */
  .contact-container {
    grid-template-columns: 1fr !important;
  }

  /* Trust section spacing */
  .trust-section {
    padding: 0 15px;
  }

  /* FORM FIX */
  .form-row {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .form-row .input,
  .form-row .phone-group {
    margin-bottom: 10px;
  }

  /* Remove fixed widths without editing original */
  .name,
  .phone,
  .phone-group {
    width: 100% !important;
    max-width: 100%;
  }

  .submit-btn {
    width: 100%;
    padding: 0;
  }

}

/* SMALL MOBILE */
@media (max-width:480px) {

  .hero-box {
    padding: 20px;
  }

  .hero-text h2 {
    font-size: 21px;
  }

  .hero-text .sub {
    font-size: 14px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon {
    margin-bottom: 6px;
  }

  .trust-heading {
    flex-direction: column;
    gap: 6px;
    font-size: 19px;
  }

  .trust-heading span {
    width: 60%;
  }

  .trust-box {
    padding: 18px;
  }

}

/* LARGE DESKTOP IMPROVEMENT */
@media (min-width:1400px) {

  .hero-inner {
    max-width: 1300px;
    margin: auto;
  }

}




/* HERO */
.contact-support-hero {
  width: 100%;
  background: url("../img/banner/4.jpg") no-repeat center center;
  background-size: cover;
  padding: 80px;
}

.contact-support-hero-box {
  width: 1300px;
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

.contact-support-hero-text h2 {
  font-size: 3rem;
  font-weight: 700;
}

.contact-support-hero-text p {
  font-size: 18px;
  color: #555;
}


.contact-support-hero-image img {
  width: 350px;
  border-radius: 8px;
}


/* CONTACT CARDS */
.contact-support-section {

  width: 100%;
  margin: 0 auto;
  padding: 40px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7f8fb;
}

.contact-support-container {
  width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px;
}

.contact-support-card {
  background: #fff;
  padding: 20px;
  display: flex;
  border-radius: 10px;

}

.contact-support-icon {
  width: 45px;
  height: 45px;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-support-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.contact-support-text h3,
.contact-support-primary,
.contact-support-secondary {
  text-align: center;
  width: 100%;
}

.contact-support-text h3 {
  font-size: 22px;
  font-weight: 500;
}

.contact-support-note {
  font-size: 14px;
  width: 1300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  text-align: center;
  padding: 10px;
  background: #ebecee;
  padding-top: 20px;
  border-radius: 5px;
}

.contact-support-note p {
  font-size: 20px;
  width: 1300px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #555;
}

/* MESSAGE */
.contact-support-message-section {
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  background-color: #f7f8fb;

  justify-content: center;

  align-items: center;
}

.contact-support-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 28px;
  font-weight: 500;
}

/* before and after lines */
.contact-support-title::before,
.contact-support-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #d1d5db;
  /* light grey line */
  max-width: 520px;
}


.contact-support-message-container {
  width: 1300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px;
  text-align: center;

  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;

}

.contact-support-message-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.contact-support-message-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.contact-support-message-content {
  padding: 20px;
  text-align: left;
  font-size: 16px;
  color: #555;
  line-height: 1.5;

}

.contact-support-message-content h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-support-message-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* SECTION BACKGROUND */
.contact-support-form-section {
  width: 100%;
  background: #f8f9fa;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}


/* CENTER CARD */
.contact-support-form-container {
  width: 1300px;
  padding: 40px 20px;
  text-align: center;
  background: #faf7f7;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* TITLE */
.contact-support-form-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 10px;
}

/* before and after line */
.contact-support-form-title::before,
.contact-support-form-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d1d5db;
  /* light grey */
  max-width: 600px;
}

.contact-support-form-tagline{
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 25px;
}
.contact-support-form-title i {
  color: #3f7f86;
  margin-right: 8px;
}


/* TAGLINE */
.contact-support-tagline {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 25px;
}


/* FORM ROW */
.contact-support-form-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}


/* NAME INPUT */
.contact-support-input {
  height: 45px;
  width: 290px;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
}


/* PHONE GROUP */
.contact-support-phone-group {
  display: flex;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  width: 290px;
}


/* COUNTRY CODE */
.contact-support-code {
  border: none;
  background: #f1f5f9;
  padding: 0 12px;
  font-size: 14px;
}


/* PHONE INPUT */
.contact-support-phone {
  border: none;
  padding: 10px;
  width: 160px;
  font-size: 14px;
}


/* BUTTON */
.contact-support-btn {
  height: 45px;
  width: 180px;
  background: #3f7f86;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-support-btn:hover {
  background: #2f6b72;
}

/* FORM GROUP */
.contact-support-form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  width: 100%;
}

.contact-support-form-group label {
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 8px;
  font-weight: 500;
}

/* SELECT DROPDOWN */
.contact-support-select {
  height: 45px;
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  cursor: pointer;
}

/* FULL WIDTH INPUT */
.contact-support-form .contact-support-input {
  width: 100%;
}

/* FORM LAYOUT */
.contact-support-form {
  width: 90%;
 
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* FORM ROW WITH TWO COLUMNS */
.contact-support-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.contact-support-form-row .contact-support-form-group {
  flex: 1;
}

/* EMERGENCY NOTE */
.contact-support-note {
  margin-top: 20px;
  padding: 15px 20px;
  background: #f1f5f9;
  border-radius: 6px;
  font-size: 14px;
  color: #64748b;
  text-align: center;
}













/* ================= COMMON CONTAINER ================= */

.resource-blog-inner-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ================= HERO ================= */




.resource-blog-hero-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;

  padding: 90px 0 60px;
  background: url("../img/banner/4.jpg") no-repeat center center;

}

.resource-blog-hero-inner {
  width: 1300px;
  
}


.resource-blog-hero-box {

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 35px 0px;

}


.resource-blog-hero-text {

  max-width: 480px;

}


.resource-blog-hero-text h2 {

  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;

}


.resource-blog-hero-text p {

  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  text-align: left;

}



/* ================= BLOG SECTION ================= */

.resource-blog-main-section {

  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fcfbfb;
  padding: 40px;
  padding-top: 115px;

}


.resource-blog-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 1200px;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
}


.resource-blog-card {

  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
 

}


.resource-blog-card img {

  width: 100%;
  height: 380px;
  object-fit: cover;

}


.resource-blog-card-content {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 25px 40px;

}


.resource-blog-card-content h3 {

  font-size: 18px;

  font-weight: 600;

  color: #1f2d3d;

  margin-bottom: 10px;

}


.resource-blog-card-content p {

  font-size: 14px;

  color: #6c7a86;

  line-height: 1.8;

  margin-bottom: 0px;

  min-height: 70px;

}


.resource-blog-card-content button {

  background-color: #2f7f83;

  color: #ffffff;

  border: none;

  padding: 8px 20px;

  font-size: 14px;

  border-radius: 4px;

  cursor: pointer;

  transition: 0.3s;

}


.resource-blog-card-content button:hover {

  background-color: #246a6e;

  transform: translateY(-3px);

  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);

}



/* ================= INTEREST SECTION ================= */

.resource-blog-interest-section {

  background: #f5f7f8;

  padding: 60px 0;

  text-align: center;

}


.resource-blog-join-header {

  text-align: center;

  margin-bottom: 30px;

}


.resource-blog-join-left {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    text-align: center;
}

/* Before line */
.resource-blog-join-left::before,
.resource-blog-join-left::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #d1d5db; /* line color */
    min-width: 90px; /* optional */
}


.resource-blog-join-left h2 {

  font-size: 28px;

  font-weight: 600;

}


.resource-blog-join-icon {

  width: 50px;

  height: 50px;

  object-fit: contain;

}


.resource-blog-tagline {

  font-size: 16px;

  color: #555;

  margin-bottom: 30px;

  line-height: 1.6;

  max-width: 600px;

  margin-left: auto;

  margin-right: auto;

}



/* FORM */

.resource-blog-interest-form {

  display: flex;

  flex-direction: column;

  align-items: center;

}


.resource-blog-form-row {

  display: flex;

  gap: 15px;

  margin-bottom: 20px;

}


.resource-blog-input {

  height: 48px;

  border: 1px solid #e1e4e8;

  border-radius: 6px;

  padding: 0 15px;

  font-size: 15px;

  background: #fafafa;

}


.resource-blog-name {

  width: 500px;

}


.resource-blog-submit-btn {

  height: 48px;

  padding: 0 50px;

  background: #3f7f86;

  color: #fff;

  border: none;

  border-radius: 6px;

  font-size: 16px;

  cursor: pointer;

  transition: .3s;

}


.resource-blog-submit-btn:hover {

  background: #366a71;

}

/*--------------------------------------------------------------
# Index Page Responsive Styles
--------------------------------------------------------------*/

/* Hero Section Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 0;
  }
  
  .hero .hero-content {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .hero .hero-content h1 {
    font-size: 1.8rem;
    margin: 1rem 0;
  }
  
  .hero .hero-content .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .emergency-text {
    font-size: 0.8rem;
    padding: 0 10px;
  }
}

/* Featured Departments Responsive */
@media (max-width: 768px) {
  #featured-departments {
    padding: 40px 0;
  }
  
  #featured-departments .section-title h2 {
    font-size: 1.5rem;
  }
  
  #featured-departments .row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  #featured-departments .col-lg-4 {
    width: 100%;
    padding: 0 15px;
  }
  
  .department-highlight {
    padding: 18px 15px;
    margin-bottom: 0;
    border-radius: 10px;
  }
  
  .department-highlight h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .department-highlight p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
}

/* Services Section Responsive */
@media (max-width: 768px) {
  #featured-services {
    padding: 40px 0;
  }
  
  #featured-services .section-title h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .services-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .service-card {
    width: 100%;
    max-width: 350px;
  }
  
  .service-card img {
    height: 180px;
  }
  
  .card-content h4 {
    font-size: 1.1rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
}

/* CTA Section Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-section h2 {
    font-size: 1.5rem;
  }
  
  .cta-section h2::before,
  .cta-section h2::after {
    display: none;
  }
  
  .cta-section p {
    font-size: 0.9rem;
  }
}

/* Professionals CTA Responsive */
@media (max-width: 768px) {
  .professionals-cta {
    padding: 40px 20px;
  }
  
  .professionals-cta h2 {
    font-size: 1.5rem;
  }
  
  .professionals-cta p {
    font-size: 0.9rem;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 30px 20px;
  }
  
  .footer-contact p {
    font-size: 0.85rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .footer-links a:last-child {
    border-bottom: none;
  }
  
  /* .footer-links a::after {
    content: ">";
    font-size: 1rem;
    color: #666;
    margin-left: 10px;
  } */
  
  .footer-links a:not(:last-child)::after {
    display: none;
  }
  
  .footer-legal {
    font-size: 0.75rem;
  }
  
  /* Footer Content Mobile */
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-logo {
    margin-bottom: 10px;
  }
  
  .footer-links .separator {
    display: none;
  }
}

/* General Mobile Fixes */
@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .section {
    padding: 40px 0;
  }
}

/* Service Page Responsive */
@media (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .service-card {
    width: 100%;
    max-width: 350px;
  }
  
  .service-card img {
    height: 180px;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card-content h4 {
    font-size: 1.1rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

/* About Page Responsive */
@media (max-width: 768px) {
  .about-page .page-title .heading {
    padding: 60px 0;
  }
  
  .about-page .heading-title {
    font-size: 1.8rem;
  }
  
  .about-content h2 {
    font-size: 1.5rem;
  }
  
  .about-content .lead {
    font-size: 1rem;
  }
  
  .philo-section {
    padding: 40px 15px;
  }
  
  .philo-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .philo-card {
    width: 100%;
    max-width: 350px;
  }
  
  .serenest-different {
    padding: 40px 15px;
  }
  
  .container2 {
    flex-direction: column;
    gap: 30px;
  }
  
  .different-content,
  .different-image {
    width: 100%;
  }
  
  .different-image img {
    width: 100%;
    height: auto;
  }
  
  .ethics-section {
    padding: 40px 15px;
  }
  
  .ethics-wrapper {
    padding: 0 15px;
  }
  
  .ethics-points li {
    font-size: 0.95rem;
  }
}

/* Psychiatry, Therapy, De-addiction Pages Responsive */
@media (max-width: 768px) {
  /* Hero Section */
  .psychiatry-hero {
    padding: 0;
  }
  
  .psychiatry-hero .container-fluid {
    padding: 80px 20px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .psychiatry-hero .hero-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .psychiatry-hero .hero-subtitle {
    font-size: 1rem;
    padding: 0 15px;
    text-align: center;
  }
  
  /* Who Section */
  .who-section {
    margin: 0;
    padding: 40px 0;
  }
  
  .who-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  
  .who-text {
    margin: 0;
    gap: 15px;
  }
  
  .who-text h3 {
    font-size: 1.5rem;
  }
  
  .who-text ul li {
    font-size: 0.95rem;
  }
  
  .who-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  /* Consultation Section */
  .consultation-section {
    padding: 40px 0;
  }
  
  .consultation-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  
  .consultation-content {
    width: 100%;
    margin: 0;
  }
  
  .consultation-content h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .consultation-list li {
    font-size: 0.95rem;
    padding-left: 20px;
    text-align: left;
  }
  
  .consultation-image {
    width: 100%;
    text-align: center;
  }
  
  .consultation-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
  }
  
  /* Care Section */
  .care-section {
    flex-direction: column;
    padding: 30px 15px;
    margin: 20px auto;
  }
  
  .care-left {
    width: 100%;
    margin: 0;
  }
  
  .care-left h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .care-left ul li {
    font-size: 0.95rem;
  }
  
  .care-right {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  
  .care-right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
  }
  
  /* Therapy Info Section */
  .therapy-info {
    padding: 30px 0;
  }
  
  .therapy-box {
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }
  
  .therapy-left {
    width: 100%;
    gap: 15px;
  }
  
  .therapy-left .block {
    margin-bottom: 20px;
  }
  
  .therapy-left .block h3 {
    font-size: 1.2rem;
  }
  
  .therapy-left .block ul li {
    font-size: 0.95rem;
  }
  
  .therapy-right {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
  
  .therapy-right img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  /* Emergency Notice */
  .emergency-notice {
    padding: 15px;
  }
  
  .emergency-notice .notice-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .emergency-notice .notice-content span {
    font-size: 0.85rem;
  }
}

/* For Professionals Page Responsive */
@media (max-width: 768px) {
  /* Banner Section */
  .pro-banner {
    padding: 100px 20px 60px;
    text-align: center;
  }
  
  .pro-banner-content h2 {
    font-size: 1.8rem;
  }
  
  .pro-banner-content p {
    font-size: 1rem;
  }
  
  /* Grow Cards Section */
  .grow-cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .grow-card {
    width: 100%;
    max-width: 320px;
  }
  
  .grow-image {
    width: 100%;
    text-align: center;
  }
  
  .grow-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  
  /* Who Can Join Section */
  .join-cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .join-card {
    width: 100%;
    max-width: 320px;
  }
  
  .join-card img {
    width: 100%;
    height: auto;
  }
  
  /* Collaboration Section */
  .collab-cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .collab-card {
    width: 100%;
    max-width: 320px;
  }
  
  /* Interest Section */
  .interest-section {
    width: 100%;
    padding: 40px 15px;
  }
  
  .interest-section h3 {
    font-size: 1.5rem;
  }
  
  .interest-section h3::before,
  .interest-section h3::after {
    display: none;
  }
  
  .interest-section p {
    font-size: 1rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .interest-form {
    width: 100%;
    padding: 0 15px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .name-input,
  .phone-input {
    width: 100%;
    margin-bottom: 10px;
  }
  
  /* Additional For Professionals Fixes */
  .pro-container {
    width: 100%;
    padding: 0 15px;
  }
  
  .who-can-container-1 {
    width: 100%;
    padding: 0 15px;
  }
  
  .collab-container {
    width: 100%;
    padding: 0 15px;
  }
  
  .section-title h3 {
    font-size: 1.3rem;
    padding: 20px 0;
  }
  
  .who-can-heading h3 {
    font-size: 1.3rem;
    padding: 20px 0;
  }
  
  .collab-title h3 {
    font-size: 1.3rem;
  }
  
  .collab-title img {
    width: 30px;
    height: auto;
  }
  
  .grow-card h4,
  .join-card h4,
  .collab-card h4 {
    font-size: 1.1rem;
  }
  
  .grow-card p,
  .join-card p,
  .collab-card p {
    font-size: 0.9rem;
  }
  
  .join-card ul li {
    font-size: 0.85rem;
  }
  
  .collab-card img {
    width: 50px;
    height: auto;
  }
  
  /* Fix card layouts for mobile */
  .grow-card {
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
    text-align: center;
  }
  
  .grow-card h4 {
    margin-top: 10px;
    padding: 0;
    font-size: 1.1rem;
  }
  
  .grow-card p {
    padding: 0;
    font-size: 0.9rem;
  }
  
  .grow-image {
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0;
    text-align: center;
    order: 3;
  }
  
  .grow-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
  }
  
  .join-card {
    width: 100%;
    max-width: 100%;
  }
  
  .join-card img {
    height: auto;
    max-height: 200px;
    object-fit: cover;
  }
  
  .join-card h4 {
    padding: 15px;
    font-size: 1.1rem;
  }
  
  .join-card ul {
    padding: 0 15px 15px 25px;
    margin: 0;
  }
  
  .join-card ul li {
    padding-left: 0;
    margin-bottom: 8px;
    line-height: 1.5;
    text-align: center;
    list-style: none;
  }
  
  .join-card ul li::before {
    content: "•";
    margin-right: 8px;
    color: #2a7f84;
  }
  
  .collab-card {
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
    text-align: center;
  }
  
  .collab-card h4 {
    margin-top: 10px;
    padding: 0;
    font-size: 1.1rem;
  }
  
  .collab-card p {
    padding: 0;
    font-size: 0.9rem;
    text-align: center;
  }
  
  /* Fix section titles */
  .who-can-heading h3::before,
  .who-can-heading h3::after {
    display: none;
  }
  
  .collab-title h3::before,
  .collab-title h3::after {
    display: none;
  }
  
  /* Additional mobile fixes */
  .professionals-section {
    padding: 0;
  }
  
  .pro-container-1 {
    padding: 20px 0;
  }
  
  .who-can-join {
    padding: 20px 0;
  }
  
  .collab-section {
    padding: 20px 15px;
    margin-top: 20px;
  }
  
  .interest-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  /* Center align all cards */
  .grow-cards,
  .join-cards,
  .collab-cards {
    align-items: center;
    justify-content: center;
  }
  
  /* Fix grow card icons */
  .grow-card i {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
  }
  
  /* Fix join card layout */
  .join-card {
    text-align: center;
  }
  
  .join-card h4 i {
    margin-right: 8px;
  }
  
  /* Fix collab card icons */
  .collab-card img {
    display: block;
    margin: 0 auto 10px;
  }
}

/* About Page Responsive */
@media (max-width: 768px) {
  /* Page Title */
  .about-page .page-title .heading {
    padding: 80px 0 40px;
    text-align: center;
  }
  
  .about-page .heading-title {
    font-size: 2rem;
  }
  
  .about-page .page-title p {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  /* About Section */
  .about-page .about-content {
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
  }
  
  .about-page .about-content img {
    max-width: 80px;
    margin-bottom: 15px;
  }
  
  .about-page .about-content h2 {
    font-size: 1.5rem;
    margin-left: 0;
    margin-top: -50px;
  }
  
  .about-page .about-content .lead {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .about-page .image-wrapper {
    margin-top: 30px;
    padding: 0 15px;
  }
  
  .about-page .main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Philosophy Section */
  .philo-section {
    padding: 40px 15px;
  }
  
  .philo-heading h2 {
    font-size: 1.4rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .philo-heading h2 img {
    height: 35px;
  }
  
  .philo-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .philo-card {
    width: 100%;
    max-width: 320px;
    padding: 25px 20px;
  }
  
  .philo-card img.philo-icon {
    height: 45px;
  }
  
  .philo-card h3 {
    font-size: 1.1rem;
  }
  
  .philo-card p {
    font-size: 0.9rem;
  }
  
  /* What Makes Different Section */
  .serenest-different {
    padding: 40px 15px;
  }
  
  .container2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .different-heading {
    text-align: center;
  }
  
  .different-heading h2 {
    font-size: 1.5rem;
  }
  
  .different-content {
    width: 100%;
    padding: 0;
  }
  
  .different-features li {
    font-size: 0.95rem;
    padding-left: 30px;
  }
  
  .different-image {
    width: 100%;
    text-align: center;
  }
  
  .different-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
  }
  
  /* Ethics Section */
  .ethics-section {
    padding: 40px 15px;
  }
  
  .ethics-heading {
    flex-direction: column;
    gap: 15px;
  }
  
  .ethics-heading .line {
    width: 100%;
    max-width: 100px;
  }
  
  .heading-center {
    flex-direction: column;
    gap: 10px;
  }
  
  .heading-center img {
    width: 40px;
    height: auto;
  }
  
  .heading-center h3 {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .ethics-points {
    padding: 0;
    text-align: center;
  }
  
  .ethics-points li {
    font-size: 0.9rem;
    padding: 10px 0;
  }
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  /* Hero Section */
  .contact-support-hero {
    padding: 40px 15px;
    background-position: center;
    background-size: cover;
  }
  
  .contact-support-hero-box {
    width: 100%;
    flex-direction: column;
    padding: 36px;
    text-align: center;
  }
  
  .contact-support-hero-text h2 {
    font-size: 2rem;
  }
  
  .contact-support-hero-text p {
    font-size: 16px;
  }
  
  .contact-support-hero-image img {
    width: 100%;
    max-width: 280px;
    margin-top: 20px;
  }
  
  /* Contact Cards Section */
  .contact-support-section {
    padding: 30px 15px;
  }
  
  .contact-support-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px 0;
  }
  
  .contact-support-card {
    padding: 15px;
  }
  
  .contact-support-text {
    text-align: center;
    align-items: center;
  }
  
  .contact-support-text h3,
  .contact-support-text p,
  .contact-support-primary,
  .contact-support-secondary {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-support-text h3 {
    font-size: 18px;
  }
  
  .contact-support-note {
    width: 100%;
    padding: 15px;
  }
  
  .contact-support-note p {
    width: 100%;
    font-size: 14px;
  }
  
  /* Message Section */
  .contact-support-message-section {
    padding: 30px 15px;
  }
  
  .contact-support-title {
    font-size: 22px;
    gap: 10px;
  }
  
  .contact-support-title::before,
  .contact-support-title::after {
    max-width: 50px;
  }
  
  .contact-support-message-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px 0;
    box-shadow: none;
  }
  
  .contact-support-message-card img {
    height: 200px;
  }
  
  .contact-support-message-content {
    padding: 15px;
  }
  
  .contact-support-message-content h3 {
    font-size: 22px;
  }
  
  .contact-support-message-content p {
    font-size: 14px;
  }
  
  /* Form Section */
  .contact-support-form-section {
    padding: 30px 15px;
  }
  
  .contact-support-form-container {
    width: 100%;
    padding: 20px 0;
  }
  
  .contact-support-form-title {
    font-size: 24px;
    flex-wrap: wrap;
  }
  
  .contact-support-form-title::before,
  .contact-support-form-title::after {
    max-width: 30px;
  }
  
  .contact-support-tagline {
    font-size: 16px;
    padding: 0 10px;
  }
  
  .contact-support-form-row {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .contact-support-input {
    width: 100%;
    max-width: 350px;
  }
  
  .contact-support-phone-group {
    width: 100%;
    max-width: 350px;
  }
  
  .contact-support-phone {
    width: 100%;
  }
  
  .contact-support-btn {
    width: 100%;
    max-width: 350px;
  }
}

/* Get Help Page Responsive */
@media (max-width: 768px) {
  /* Page Title */
  .page-title {
    padding: 100px 15px 30px;
  }
  
  .page-title .heading {
    padding: 0;
    text-align: center;
  }
  
  .page-title .heading-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .page-title p {
    font-size: 1rem;
    padding: 0;
    margin-top: 15px;
  }
  
  /* Process Section */
  .process-section {
    padding: 40px 15px;
  }
  
  .process-container {
    padding: 25px 20px;
    gap: 25px;
  }
  
  .process-item {
    width: 100%;
  }
  
  .process-item h4 {
    font-size: 18px;
  }
  
  .process-item p {
    font-size: 14px;
  }
  
  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  
  .arrow {
    font-size: 24px;
    transform: rotate(90deg);
  }
  
  /* Intake Section */
  .intake-section {
    padding: 40px 15px;
  }
  
  .intake-card {
    padding: 20px 15px;
  }
  
  .intake-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .form-1 {
    width: 100%;
    padding: 20px 15px;
  }
  
  .form-group label {
    font-size: 13px;
  }
  
  .form-group input,
  .form-group select {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-row .form-group {
    width: 100%;
  }
  
  .button-1 .submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
  
  .note {
    font-size: 13px;
    padding: 0 10px;
  }
  
  /* Brand Section */
  .brand-section {
    padding: 30px 15px;
  }
  
  .brand-header {
    gap: 10px;
  }
  
  .brand-header::before,
  .brand-header::after {
    max-width: 50px;
  }
  
  .brand-logo img {
    width: 28px;
  }
  
  .brand-logo span {
    font-size: 18px;
  }
  
  .brand-text {
    font-size: 14px;
    max-width: 100%;
    padding: 0 10px;
  }
}

/* Not Sure Page Responsive */
@media (max-width: 768px) {
  /* Support Hero */
  .support-hero {
    padding: 40px 15px;
  }
  
  .support-container {
    flex-direction: column;
    padding-top: 0;
    text-align: center;
  }
  
  .support-content h2 {
    font-size: 1.5rem;
    padding: 47px;
  }
  
  .support-content p {
    font-size: 1rem;
  }
  
  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  /* Intro Text */
  .intro-text {
    padding: 25px 15px;
  }
  
  .intro-text p,
  .intro-text span {
    font-size: 16px;
  }
  
  /* Services Section */
  .services-section {
    padding: 20px 15px;
  }
  
  .services-container {
    width: 100%;
    padding: 10px;
  }
  
  /* Card Row */
  .card-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }
  
  .service-card {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .info-card {
    padding: 15px;
    background: #e9edf2;
    border-radius: 8px;
  }
  
  .card-header {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .card-header h3 {
    font-size: 17px;
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
  }
  
  .card-header i {
    font-size: 20px;
    color: #1a6b5c;
  }
  
  .card-subtitle {
    margin-bottom: 8px;
    padding-left: 28px;
  }
  
  .card-subtitle p {
    font-size: 13px;
    padding-left: 0;
    text-align: left;
    line-height: 1.4;
    color: #666;
    margin: 0;
  }
  
  .card-body {
    padding: 12px 15px;
    background: #f8f9fb;
  }
  
  .card-body ul {
    padding-left: 18px;
    margin: 0;
    list-style: none;
  }
  
  .card-body li {
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.4;
    color: #495057;
    position: relative;
    padding-left: 15px;
  }
  
  .card-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a6b5c;
    font-weight: bold;
  }
  
  /* Info Image Row */
  .info-image-row {
    flex-direction: column;
    gap: 15px;
    margin-bottom: -530px;
    margin-top: 20px;
    align-items: center;
  }
  
  .info-text {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 0 15px;
  }
  
  .info-text p {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.5;
  }
  
  .services-right {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    order: -1;
  }
  
  .doctor-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
  }
  
  /* Service Footer */
  .service-footer {
    width: 100%;
    padding: 25px 15px;
    margin-top: 20px;
  }
  
  .service-footer h3 {
    font-size: 18px;
  }
  
  .service-footer p {
    font-size: 13px;
  }
  
  .service-btn {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    font-size: 15px;
  }
}

/* Resource Blog Page Responsive */
@media (max-width: 768px) {
  /* Hero Section */
  .resource-blog-hero-section {
    padding: 80px 15px 40px;
  }
  
  .resource-blog-hero-inner {
    width: 100%;
  }
  
  .resource-blog-hero-box {
    flex-direction: column;
    padding: 20px 0;
    text-align: center;
  }
  
  .resource-blog-hero-text {
    max-width: 100%;
    text-align: center;
  }
  
  .resource-blog-hero-text h2 {
    font-size: 24px;
    text-align: center;
  }
  
  .resource-blog-hero-text p {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }
  
  /* Blog Section */
  .resource-blog-main-section {
    padding: 30px 15px;
    padding-top: 40px;
  }
  
  .resource-blog-container {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .resource-blog-card {
    border-radius: 8px;
  }
  
  .resource-blog-card img {
    height: 200px;
  }
  
  .resource-blog-card-content {
    padding: 20px;
  }
  
  .resource-blog-card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .resource-blog-card-content p {
    font-size: 13px;
    line-height: 1.6;
    min-height: auto;
    margin-bottom: 15px;
  }
  
  .resource-blog-card-content button {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
  }
  
  /* Interest Section */
  .resource-blog-interest-section {
    padding: 40px 15px;
  }
  
  .resource-blog-join-header {
    margin-bottom: 20px;
  }
  
  .resource-blog-join-left {
    gap: 8px;
  }
  
  .resource-blog-join-left::before,
  .resource-blog-join-left::after {
    min-width: 40px;
  }
  
  .resource-blog-join-left h2 {
    font-size: 22px;
  }
  
  .resource-blog-join-icon {
    width: 40px;
    height: 40px;
  }
  
  .resource-blog-tagline {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  
  .resource-blog-form-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
  }
  
  .resource-blog-input {
    height: 44px;
    width: 100%;
  }
  
  .resource-blog-submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }
}

/* Resource Blog Page - Small Mobile */
@media (max-width: 480px) {
  .resource-blog-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
