:root {

--font-family: 'Montserrat', sans-serif;

--white-color: #ffffff;
--black-color: #000000;
--body-color : #f8faf5;
--gray-color: #eee;
--green-shade-color: #34631a;
--dark-green-color: #2d501a;
--dark-cyan-color: #0b383e;
--green-cyan-color: #198754;
--gradient-color: linear-gradient(82deg, #198754 7%, #0b383e 93%);
--purple-gradient-color: linear-gradient(82deg, #198754 7%, #0b383e 93%);
--nav-text-color: #0b383e;
--navbar-bg-color: #dff5bf;

--darkbg-text-color: #ffffff;
--whitebg-text-color: #000000;

--nav-icon-color: #2d501a;
--gold-color: #89cc24;

--top-header-bg-color: #3f1a3c;
--top-header-font-color: #ffffff;
--top-header-hover-color: #ffffff;

--backtop-btn-bg-color: #198754;

--footer-bg-color: #198754;
--footer-icon-color: #198754;
--footer-text-color: #eee;
--footer-active-link-color: #198754;
--footer-icon-bg-color: #eee;

--color-bg: #fff;
--color-text: #333;
--color-accent: #89cc24;
--color-hover: #f5f5f5;
--color-hover-light: #f9f9f9;
--color-border: #ddd;
--color-border-light: #eee;
--overlay-bg: rgba(0,0,0,0.4);

--spacing-sm: 6px;
--spacing-md: 10px;
--spacing-lg: 15px;
--spacing-xl: 20px;

/* Sizes */
--desktop-logo-width: 120px;
--desktop-logo-height: auto;
--mobile-logo-width: 120px;
--mobile-logo-height: auto;
--sidebar-width: 260px;

/* Shadows */
--shadow-sm: 0 2px 6px rgba(0,0,0,0.1);
--shadow-md: 0 4px 12px rgba(0,0,0,0.1);

/* Transition */
--transition-fast: 0.3s ease;

}

/* Common CSS Part Start */

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body
{
    max-width: 100%;
    overflow-x: hidden; overflow-y: auto;
    font-family: var(--font-family);
    background-color: var(--body-color);
    color: var(--nav-text-color);
    font-size: 14px;
    font-weight: 500;
}

small, .small {
  font-size: 13px;
}

.text-justify-custom{
  text-align: justify !important;
}

strong { font-weight: 600; }


img { max-width: 100%; }

h1, .h1
{
  font-size: 40px;
  font-weight: 900;
  line-height: 42px;
}

h2, .h2
{
  font-size: 32px;
  font-weight: 800;
  line-height: 35px;
}

h3, .h3{
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
}

h4, .h4{
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
}

h5, .h5{
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;  
}

h6, .h6{
  font-size: 16px;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: white;
  line-height: 18px;
}

.more-button {
    background: var(--dark-cyan-color);
    color: var(--white-color);
    font-weight: bold;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.more-button:hover {
    background-color: var(--green-cyan-color);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.more-button:active {
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}


.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 2rem !important;
}

.mt-3 {
    margin-top: 0.75rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mt-6 {
  margin-top: 2rem !important;
}


.px-2 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.align-items-center {
  align-items: center !important;
}

.text-center {
    text-align: center !important;
}

.text-right
{
    float: right;
    margin: 10px;
    text-align: right !important;
}

.bg-overlay {
  position: relative;
  z-index: 1; 
}

.bg-overlay::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  /*background-color: rgba(12, 38, 1, 0.97);*/ 
  background-color: rgba(0, 0, 0, 0.9);
}

.bg-overlay-other {
  position: relative;
  z-index: 1; 
}

.bg-overlay-other::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 255, 0, 0.2);  
  border-bottom: 1px solid var(--gray-color);
}

.bg-white {
  background-color: rgba(0, 255, 0,0.2);
}

.border-gray{
  border:  2px solid #eee;
}

.bg-gray {
  background-color: #eee;
}

.btn.btn-primary, .btn.btn-outline-primary {
  width: 100%;
  height: 40px;
  vertical-align: middle;
  align-items: center;
  display: flex;
  text-align: center;
  justify-content: center;
  color: var(--white-color);
  background-color: var(--green-cyan-color);
  outline: none;
  border: none;
  font-weight: 600;
  margin: 5px;
  font-weight: bold;
}


.btn.btn-primary:hover, .btn.btn-outline-primary:hover{
  background-color: var(--green-cyan-color);
}


.btn.btn-primary-2 {
  width: 70%;
  height: 40px;
  vertical-align: middle;
  align-items: center;
  display: flex;
  text-align: center;
  justify-content: center;
  color: var(--white-color);
  background-color: var(--green-cyan-color);
  outline: none;
  border: none;
  font-weight: 600;
  margin: 5px;
  left: 50%;
  transform: translateX(20%);
}

.viewmore-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-accent);
  text-decoration: none;
  border: 2px solid var(--color-accent);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.viewmore-btn:hover {
  background-color: var(--color-accent);
  color: var(--white-color);
  border-color: var(--color-accent);
}

.viewmore-btn:focus {
  outline: none; /* Removes the outline when clicked (optional) */
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); /* Adds a focus ring */
}



.text-secondary {
  color: var(--color-accent) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Spinner */

.bg-light {
  background-color: rgba(0, 255, 0,0.2);
}


#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show
{
    background: url(../img/logo_emblem.png) center no-repeat;
    background-size: 75px 75px;
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.section-container {
    margin: 0px auto;
}

.section-container .underline h5{
  font-weight: 700;
  color: var(--dark-cyan-color);
}

.section-container .underline span{
  background: var(--gradient-color);
  padding: 1px 0;
  display: block;
  width: 15%;
  margin: 1em auto;
}

.section-container-no-bg {
  overflow-x: hidden; overflow-y: auto; 
}

.section-container-gray-bg {
  /*background: #f8f8f8;*/
  background-color: #eee !important;  /*#f6f7f8 #faf6ee !important;*/
  overflow-x: hidden; overflow-y: auto;
  color: #000;
}

.img-fluid{    
  max-width: 100%; height: 100%;
}

.section-header {
    position: relative; width: 100%; max-width: 550px; text-align: center; margin: 0 auto; margin-bottom: 60px; padding-bottom: 15px;
}

.section-title {
  padding-top: 10px; margin-top: 20px;
}

.section-title.text-start {
  padding-left: 0px;
}

.section-title.text-start span{
  border-top: 5px solid var(--color-accent); padding-top: 10px;
}

.section-title.text-start h3{
    padding-left: 0px; color: black;
    font-weight: 900; text-transform: uppercase;
}

.section-title.text-start h5{
    font-size: 18px;
    color: black;
    font-weight: 900; text-transform: uppercase;
}

.section-title.text-start h6{
    padding-left: 0px; color: black;
    font-weight: 900; text-transform: uppercase;
}

.section-title h4{
  font-size: 22px;
  text-transform: uppercase;  
  color: var(--color-accent);
  position: relative;
  display: inline-block; /* Ensures the pseudo-elements align properly */
  padding: 0 10px; /* Adjust padding as needed */
}

.section-title h4::before,
.section-title h4::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 5px; 
    top: 40%;
    transform: translateY(-50%);
    background-color: var(--color-accent); 
    z-index: -1;
}

.section-title h4::before {
  left: 0;
  transform: translateX(-100%);
}

.section-title h4::after {
  right: 0;
  transform: translateX(100%);
}

.section-title a
{
  text-decoration: none;
}

/*.section-title a:hover
{
  color: var(--color-accent); 
}
*/

.section-title.more{float: right;text-align: right;}

/* Common CSS Part End */

/* Top Header Start Here */

.top-header{
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: var(--top-header-bg-color);
    display: flex;
    align-items: center;
    height: 40px;
}

.top-header i{
  color: var(--nav-icon-color);
}

.top-header .top-header-content
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    margin-left: 10px;
}

.top-header .top-header-content #content-description{
    margin-top: 10px;
    color: var(--white-color);
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
}

.top-header .social-content {
    display: flex;
    align-items: center; 
    justify-content: flex-end;
    float: right;
    height: 100%;
    padding-right: 10px;
}

.top-header .social-content .socialbtn{
  padding-right: 5px;
}

.top-header .social-content img{
    width: 25px;
    height: 25px;
}

/* Top Header End Here */

/* Menubar Start Here */

/* Navbar Styles */

nav
{
  background: var(--body-color);
  display: flex;
  align-items: center;
  justify-content: flex-start; /* change from space-between */
  /*padding: 5px var(--spacing-xl);*/
  /*padding: 5px;*/
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

nav i{
  color: var(--nav-text-color);
}

nav .logo img
{
  width: 250px;
  height: auto;
  margin: 0px;
  padding: 10px;
  margin-right: 20px;
  border: 0;
  text-indent: -99999px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  left: 50%;
  transform: none;
  flex-wrap: nowrap;
}

nav ul li {
  position: relative;
}

nav > ul > li {
  padding: 5px var(--spacing-lg);
}

nav a {
  text-decoration: none;
  color: var(--nav-text-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  position: relative;
  white-space: nowrap;
}

nav .logo a {
  text-decoration: none;
}

nav a:not(.logo a, .contact-menu a)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

nav a:not(.logo a):hover::after {
  width: 100%;
}

/* Submenus */

nav ul li ul,
nav ul li ul li ul {
  position: absolute;
  top:100%;
  margin-top: 1px;
  left: 0;
  min-width: 220px;
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

nav ul li ul li ul {
  margin-top: 0px;
  top: 0;
  left: 100%;
  transform: translateX(15px);
}

nav ul li:hover > ul,
nav ul li ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

nav ul li ul li,
nav ul li ul li ul li {
  padding: 12px var(--spacing-xl);
  white-space: nowrap;
  transition: background var(--transition-fast);
}

nav ul li ul li a {
  width: 100%;
}

/* Make submenu a 2-column grid */
.submenu-columns {
    display: grid;
    grid-template-columns: repeat(2, auto); /* two columns */
    gap: 0; /* spacing between columns */
    padding: 0;
    justify-content: start; /* align grid to left */
}

/* Submenu items */
.submenu-columns li {
    list-style: none;
    text-align: left; /* align text inside li */
    padding: 8px 15px;
    width: 200px;
}

/* Submenu links */
.submenu-columns li a {
    display: block;
    width: 100%;
    text-align: left; /* ensures the link text is left-aligned */
}


/*  Mobile Sidebar  */

.hamburger {
  display: none;
  font-size: 24px;
  padding: var(--spacing-lg);
  cursor: pointer;
}


.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-bg);
  display: none;
  z-index: 1500;
}

.sidebar {
  position: fixed;
  top: 0;
  left: calc(-1 * var(--sidebar-width));
  width: var(--sidebar-width);
  height: 100%;
  background: var(--color-bg);
  box-shadow: 2px 0 6px rgba(0,0,0,0.1);
  transition: left var(--transition-fast);
  overflow-y: auto;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.sidebar.active {
  left: 0;
}

.sidebar .sidebar-logo{
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.sidebar .sidebar-logo img
{
  padding: 20px 0px;
  width: 100%;
  height: auto;
  left: 0;
  top:0;
  border: 0;
  text-indent: -99999px;
  background-size: 100% auto !important; 
}


.sidebar i{
  color: var(--nav-text-color);
}


.sidebar .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: var(--color-accent);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100; /* above logo */
}

.sidebar .close-btn i{
    color: var(--black-color);
    font-weight: bold;
 }

.sidebar .back-btn {
  padding: var(--spacing-sm) var(--spacing-xl);
}

.sidebar .back-btn {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
}

.sidebar .menu-level {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  animation: slideIn var(--transition-fast) forwards;
}

.sidebar .menu-level.active {
  display: block;
}

.sidebar .menu-level li {
  padding: var(--spacing-lg) var(--spacing-xl);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  cursor: pointer;
}

.sidebar .menu-level li a{
    text-decoration: none;
    color: var(--black-text);
}

.sidebar .menu-level li:hover {
  background: var(--color-hover-light);
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.contact-menu
{
  text-decoration: none;
  display: flex;  /* Added flex for centering items */
  justify-content: center; /* Center the icon horizontally */
  align-items: center;  /* Center the icon vertically */
  position: absolute;  
  right: 20px;
  margin-left: 20px;  
  padding: 13px;
  width: 40px;
  height: 40px;
  border-radius: 50%;  /* '50%' for perfect circular shape */
  background-color: var(--green-cyan-color);
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

.contact-menu i{
  position: relative;
  color: white;
  font-size: 20px;
}

/*.contact-menu:hover
{
  background-color: var(--dark-green-color);
  transition: 0.4s ease-in-out;
}*/

.contact-menu::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: transform 0.5s ease;
  transform: scale(0);
}

.contact-menu:hover {
    background: var(--dark-cyan-color);
}

.contact-menu:hover::before {
  transform: scale(1); /* Scale effect when hovering */
}

/* Menubar End Here */

/* Carousel Start Here */

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  will-change: transform;
  transition: transform 0.7s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Carousel End Here */

/* Common Banner Start */

.common-banner-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background-color: #000000;
  z-index: -1;
}

.common-banner-content {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  box-sizing: border-box;
}

.common-banner-content.bg {
  background:url(../img/common-banner.jpg) center / cover no-repeat;
}


.common-banner-content .title-1 {
  font-weight: 700;
  color: var(--white-color);
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 5px;
  text-align: center;
}

.common-banner-content a{
  text-decoration: none;
  color: var(--color-accent);
}

.common-banner-content p{
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
}

/* Common Banner End */

/* Home Page Info Start */

/* Section base */

/* Grid layout */

.global-care-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.global-care-content h5 {
  font-weight: bold;
  margin-bottom: 20px;
}

.global-care-content .intro {
  text-align: justify;
  margin-bottom: 28px;
}

.global-care-content .btn-primary {
  padding: 14px 28px;
  width: 300px !important;
}

/* Benefits list */
.benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.benefits li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  font-size: 15px;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2fa4a9;
  font-weight: bold;
}


/* Responsive */
@media (max-width: 900px) {
  .global-care-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .global-care-content h2 {
    font-size: 30px;
  }
}


/* Home Page Info End */

/* Tourism Guide Start Here */

.medical-tourism-container{
    padding: 0 20px;
}

.medical-tourism-container h4, .tourism-guide-container h4 {
    font-weight: bold;
}

.contact-us-container h5, .medical-tourism-container h5, .tourism-guide-container h5{
    font-weight: bold;
}

.medical-tourism-container .section, .tourism-guide-container .section {
    padding: 10px 0;
}

.medical-tourism-container .section h5, .tourism-guide-container .section h5{
    font-weight: bold;
    margin-left: 5px;
}

.contact-us-container header, .medical-tourism-container header,.tourism-guide-container header {
    text-align: center;
    padding: 40px 0;
}

.contact-us-container header h4, .medical-tourism-container header h4, .tourism-guide-container header h4 {
    font-weight: bold;
}

.medical-tourism-container ul, .tourism-guide-container ul{
    padding-left: 0;
    /*list-style: none;*/
}

.medical-tourism-container ul li, .tourism-guide-container ul li{
    text-align: justify;
    /*display: flex;*/
    margin-left: 10px;
    align-items: center;
    margin-bottom: 2px;
    font-size: 14px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.step {
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    flex: 1 1 45%;
}
.step:last-child {
    margin-right: 0;
}

.step ul {
    margin-top: 10px;
    margin-left: 0px;
}
.step ul li {
    margin-bottom: 2px;
}

.timeline {
  position: relative;
  margin-left: 10px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--green-cyan-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-icon {
  position: absolute;
  left: 2px;
  width: 40px;
  height: 40px;
  background: var(--green-cyan-color);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
}

.timeline-content {
  margin-left: 60px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.timeline-content strong {
  font-weight: 600;
}

.timeline-content ul {
    margin-top: 10px;
    margin-left: 0px;
}
.timeline-content ul li {
    margin-bottom: 2px;
}

.cta {
    background-color: var(--dark-cyan-color);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin: 0px;
}

.cta h5
{
  font-weight: 700;
  margin-bottom: 10px;
}

.pnpcare-features-section {
  padding: 10px 5px;
  max-width: 1200px;
  margin: auto;
}

.pnpcare-features-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}


.feature-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-card strong {
  margin-bottom: 10px;
}

.feature-card p {
  margin-top: 10px;
  text-align: left;
}


.accordion{
  background-color: var(--green-cyan-color);
  color: white;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: transform 0.7s ease,
}

.accordion1 {
  background-color: var(--green-cyan-color);
  color: white;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: transform 0.7s ease,
}

.accordion:hover, .accordion.active {
  background-color: var(--dark-cyan-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.accordion1:hover, .accordion1.active {
  background-color: var(--dark-cyan-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.accordion:after
{
  content: '\002B';
  color: #fff;
  font-weight: bold;
  float: right;
  font-size: 18px;
}

.accordion1:after {
  content: '\002B';
  color: #fff;
  font-weight: bold;
  float: right;
  font-size: 18px;
}

.accordion.active:after{
  content: "\2212";
}

.accordion1.active:after {
  content: "\2212";
}

.panel {
  padding: 0 20px;
  background-color: var(--body-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.panel p {
  margin: 15px 0;
} 

.info-container li{margin-bottom: 5px;}
.info-container p,ol,li{text-align: justify;}
.info-container b,h3,h5{font-weight: 900;}

.info-container .content p,ol,li{text-align: justify;}

.info-container .content h5{
    display: inline-block;
    position: relative;
    font-size: 17px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.info-container .content b{
    display: inline-block;
    position: relative;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.section-title {
    font-size: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
}


/* Tourism Guide End Here */

/* Contact Start Here */

.contact-box {
    position:relative;
}
.contact-details i {
  color:var(--green-cyan-color);
}
.contact-details h2 {
    font-size:18px;
    font-weight:bold;
}
.contact-details h2 span {
    display:block;
    color:var(--green-cyan-color);
    text-transform:uppercase;
    letter-spacing:1px;
    margin-top:15px;
}
.contact-details p {
    display:block;
    font-weight: bold;
    color:var(--green-cyan-color);
    font-size:14px;
}

.contact-details a{
    display:block;
    text-decoration: none;
    color: var(--green-cyan-color);
    font-size:14px;
}

.dark-box {

    background-color: var(--white-color);
    min-height: 10rem;
    height: 180px;
    -webkit-box-shadow: 0px 3px 0px 0px var(--green-cyan-color);
    -moz-box-shadow: 0px 3px 0px 0px var(--green-cyan-color);
    box-shadow: 0px 3px 0px 0px var(--green-cyan-color);
    border: 1px solid #eee;
    padding:20px 20px;
    margin: 20px 0px;
}
.box-hover {
    transition:all 500ms ease-in-out;
    -webkit-transition:all 500ms ease-in-out;
    -moz-transition:all 500ms ease-in-out;
    -o-transition:all 500ms ease-in-out;
}
.box-hover:hover,.box-hover:focus {
    transform:translate(0,-15px);
    -webkit-transform:translate(0,-15px);
    -ms-transform:translate(0,-15px);
}

.medical-enquiry-form h5{
  text-align: center;
}

form {
  width: 100%;
  margin: 10px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  background-color: var(--white-color);
}

label {
  margin-bottom: 8px;
  display: block;
}

input, select{
  width: 100%;
  padding: 6px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-group select, .input-group input {
  flex-grow: 1;
}

.checkbox-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.checkbox-container input{
  height: 20px;
  width: 5%;
  margin-right: 5px;
}

.submit-btn {
  background-color: var(--green-cyan-color);
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--dark-cyan-color);
}

/* Contact End Here */

/* About Us Start Here */

.home-about-card {
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 10px 20px;
  align-items: center;
}

.home-about-card .image img {
  width: 100%;
  max-width: 400px;
  margin: auto;
  display: block;
}

.home-about-card .content h5 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--dark-cyan-color);
}

.home-about-card .content p {
  margin-bottom: 1.2rem;
  text-align: justify;
}

.home-about-card .highlight {
  border-left: 4px solid var(--color-accent);
  padding-left: 1rem;
  margin-top: 1.5rem;
  font-weight: 500;
}

.about-us-container{
  margin-top: 30px;
  padding: 0px 10px;
}

.about-item {
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: .5s;
  width: 100%;
  height: auto;
}

.about-item i {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green-cyan-color);
  background: var(--body-color);
  color: var(--green-cyan-color);
  transition: .5s;
}

.about-item:hover i {
  background: var(--green-cyan-color);
  color: #ffffff;
}

.about-us-container .img-fluid{
    width: 100%;
    height: 100%;
}

.about-us-container  .about-text p{
  text-align: justify;
  font-size: 14px;
}

.about-us-container  .about-text b{
  text-align: justify;
  font-size: 15px;
}

.about-us-container h5{
  font-weight: bold;
}

.about-us-container  .about-text ul {
    list-style-type: disc;
}

.about-us-container  .about-text ul li{
    text-align: justify;
    /*display: flex;*/
    padding: 0px 10px;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
}

.about-us-container  .about-text .icon-item::before {
    font-family: "FontAwesome";
    margin-right: 10px;
    color: var(--white-color);
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--light-green-color);
    padding: 10px;
}

.about-us-container  .about-text .icon-item:nth-child(1)::before {
    content: "\f06d";
}

.about-us-container  .about-text .icon-item:nth-child(2)::before {
    content: "\f57e";
}

.about-us-container  .about-text .icon-item:nth-child(3)::before {
    content: "\f0e7";
}

.about-us-container  .about-text .icon-item1::before {
    font-family: "FontAwesome";
    margin-right: 10px;
    color: var(--white-color);
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--light-green-color);
    padding: 10px;
}

.about-us-container  .about-text .icon-item1:nth-child(1)::before {
    content: "\f021";
}

.about-us-container  .about-text .icon-item1:nth-child(2)::before {
    content: "\f005";
}

.about-us-container  .about-text .icon-item1:nth-child(3)::before {
    content: "\f509";
}

.bg-brown{
  background-color: #f2f2f2;
}

.about-us-container .section {
    margin-bottom: 10px;
}

.about-us-container .section p {
    font-size: 14px;
    line-height: 1.6;
}

.feature {
    background-color: var(--body-color);
    padding: 20px;
    min-height: 150px;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}
.feature h3 {
    color: var(--dark-green-color);
    font-size: 16px;
    font-weight: bold;
}
.feature ul {
    list-style-type: disc;
}
.feature ul li {
    font-size: 14px;
}

/* About Us End Here */

/* Doctor Data Start Here */

.border-primary{
  border-color: var(--color-accent) !important;
}

.doctor .doctor-item{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); 
}

.doctor .doctor-item .doctor-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.doctor .doctor-item .doctor-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    border-top-right-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
    transition: 0.5s;
}

.doctor .doctor-item .doctor-img .doctor-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.doctor .doctor-item:hover .doctor-icon {
    margin-bottom: 145px;
}

.doctor .doctor-item:hover .doctor-img::before {
    background: rgba(25, 135, 84, .3);
}

.doctor .doctor-item .doctor-content {
    transition: 0.5s;
}

.doctor .doctor-item .doctor-content h5{
  font-weight: bold;
  transition: 0.5s;
}

.doctor .doctor-item:hover .doctor-content h5{
  font-weight: bold;
    color: var(--green-shade-color);
}

.doctor .doctor-item:hover .doctor-content {
    background: var(--green-cyan-color);
    color: var(--white-color);
}

/*** Doctor Data End Here ***/

/* Doctor Profile Start Here */

.doctor_profile{
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.doctor_profile .info h5{
  font-weight: bold;
  font-size: 16px;
}

/* Profile Header */

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.profile-header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-cyan-color);
}

.profile-info {
  flex: 1;
}

.profile-info h5 {
  font-weight: bold;
  margin-bottom: 5px;
}

/* Profile Details Cards */
.profile-details {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.detail-card {
  background-color: var(--green-cyan-color);
  padding: 15px 5px 5px;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.3s;
  color: var(--white-color);
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Tabs with sliding indicator */
.tabs {
  margin-top: 30px;
}

.tab-buttons {
  display: flex;
  position: relative;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
}

.tab-buttons button {
  flex: 1;
  padding: 12px;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.3s;
}

.tab-buttons button.active {
  color: var(--nav-text-color);
  font-weight: bold;
}

/* Sliding blue indicator */
.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: var(--green-cyan-color);
  width: 0;
  transition: left 0.3s, width 0.3s;
}

.tab-content {
  padding: 20px 0;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}


/* Doctor Profile End Here */

/*** Hospital Data Start Here ***/

.hospital .hospital-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.hospital .hospital-item .hospital-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-top-right-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
}

.hospital .hospital-item .hospital-img img {
    transition: 0.5s;
    width: 100%;
    height: auto;
    border-top-right-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
}

.hospital .hospital-item .hospital-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
    transition: 0.5s;
    z-index: 5;
}

.hospital .hospital-item .hospital-content {
    position: relative;
    z-index: 2;
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.hospital .hospital-item .hospital-content::before {
    width: 100%;
    height: 5px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    background: rgba(25, 135, 84, 1);
    transition: 0.5s;
    z-index: 3;
}

.hospital .hospital-item:hover .hospital-content::before {
    background: rgba(25, 135, 84, 1);
    height: 100%;
}

.hospital .hospital-item .btn.btn-primary-2
{
  font-weight: bold;
}

.hospital .hospital-item:hover .btn.btn-primary-2
{
  background-color: var(--white-color);
  color: var(--dark-cyan-color);
}

.hospital .hospital-item .hospital-content .hospital-content-inner {
    transition: 0.5s;
}

.hospital .hospital-item:hover .hospital-content .hospital-content-inner {
    position: relative;
    color: var(--white-color) !important;
    z-index: 9;
}


.hospital-card {
    background-color: var(--white-color);
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e6edf5;
}

/* Image */
.hospital-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.hospital-content {
    padding: 28px;
}

.hospital-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.hospital-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0f2a44;
}

.location {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 4px;
}

.rating {
    background: var(--dark-cyan-color);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 22px;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-info {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.95rem;
}

.meta-info span {
    font-weight: 600;
    color: #0f2a44;
}

/* Long Description – fully visible */
.description-box {
    margin-top: 22px;
    padding: 22px;
    background: #f9fbfd;
    border-radius: 12px;
    border: 1px solid #e4ebf3;
    max-height: 420px;   /* scroll, not cut */
    overflow-y: auto;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
}

.description-box::-webkit-scrollbar {
    width: 6px;
}

.description-box::-webkit-scrollbar-thumb {
    background-color: #cbd6e2;
    border-radius: 10px;
}

.hospital-footer {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #e6edf5;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.established {
    font-size: 0.9rem;
    color: #6c757d;
}

.external-link{
    font-size: 0.95rem;
    font-weight: 500;
    color: #198754;
    text-decoration: none;
}

.external-link:hover {
    color: #157347;
}

/*** Hospital Data End Here ***/

/* Treatment Data Start Here */

.card {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: var(--dark-green-color);
  background-color: var(--body-color);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:  var(--body-color);
  opacity: 0;
  transition: 0.3s ease;
  z-index: 1;
}

.card:hover::before {
  opacity: 1;
}

.card-content {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;
  padding: 30px;
  min-height: 220px;
  height: 100%;
  align-items: start;
  position: relative;
  z-index: 2;
}

.card a{
  text-decoration: none;
}

.card-icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transition: 0.3s ease;
}

.card-icon img {
  width: 75px;
  height: 75px;
}

.card-text {
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.card-text strong {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.card-text p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.card-hover-btn {
  text-align: center;
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--green-cyan-color);
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 3;
}

.card:hover .card-icon,
.card:hover .card-text p {
 display: none;
}

.card:hover .card-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
  cursor: pointer;
}

.card:hover .card-text h3 {
  color: var(--dark-green-color);
  margin-bottom: 12px;
}

.card:hover .card-hover-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  cursor: pointer;
}

.treatment-card {
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  padding: 35px;
  margin: 40px 0;
}

/* Header row */
/*.treatment-header {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.treatment-icon img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-accent);
}

.treatment-icon {
  width: 90px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
}*/

.treatment-header {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 20px;
  margin-bottom: 25px; 
}

.treatment-header img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--black-color);
}

.treatment-heading h1 {
  font-weight: 700;
  margin: 0;
}

.treatment-term {
  font-weight: 600;
  margin-top: 6px;
}

/* Description */
.treatment-description {
  text-align: justify;
}

/* Treatment Data End Here */

/* Services section Start Here */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    color: var(--dark-cyan-color);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--green-cyan-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.icon-circle i {
    font-size: 40px;
    color: var(--green-cyan-color);
}

.service-card p {
    max-width: 100%;
}

/* Services Section End Here */

/* Footer Start Here */

footer {
    position: relative;
    padding: 20px 0;
    background: var(--dark-cyan-color);
    color: var(--footer-text-color);
    text-align: center;
    width: 100%;
    z-index: 1;
}

.footer-left{margin-left:10px;}

.footer-left h5{margin-top: 20px; text-align: left; font-weight: bold; color: var(--white-color);}
.footer-left h6{font-size: 16px; line-height: 18px;}
.footer-left strong{ margin-right: 10px; font-size: 18px; font-weight: 900; }

.footer-left p {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.footer-left p i {
    font-size: 20px;
    color: var(--white-color);
    background-color: var(--green-cyan-color);
    border-radius: 2px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer #back-top { bottom: 5%; position: fixed; right: 25px; z-index:  101; cursor: pointer; font-size: 36px; width: 40px !important; height: 40px !important; line-height: 54px; text-align: center; background:url(../img/cd-top-arrow.svg) no-repeat center 50%; background-color: var(--backtop-btn-bg-color); border-radius:2px;   transition: ease-out 0.3s; -webkit-transition: ease-out 0.3s; -moz-transition: ease-out 0.3s; padding: 2px  !important;}
footer #back-top .icon-play { -webkit-transform: rotate(-90deg); -ms-transform: rotate(-90deg); transform: rotate(-90deg); display: inline-block;}

footer a, footer a:hover, footer a:focus  { color: var(--footer-text-color); text-decoration: none; transition: all .3s;outline: none;}

footer .btn.btn-link {
  display: table; margin-bottom: 2px; padding: 0; text-align: left; color: var(--footer-text-color); font-size: 14px; font-weight: 500; transition: .3s; outline: none;text-decoration: none;}

footer .btn.btn-link::before {
    position: relative; content: "\f0da"; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-right: 5px; 
    /*arrow: f105*/
}

footer .socialbtn{
  padding-right: 5px;
}

footer small{
  font-weight:500;
}

footer .copyright {
    padding: 20px 15px;
    border-top: 1px solid var(--white-color);
    color: var(--white-color);
}

footer .copyright p {
    margin: 0;
    font-size: 14px;
    text-align: left;
    font-weight:500;
}

footer .copyright .col-md-6:last-child p {
    text-align: right;
}

footer .copyright p a {
    color: var(--white-color);
    font-weight: 700;
}

footer .copyright p a:hover {
    color: var(--footer-active-link-color);
}

/* Footer End Here */
