/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Text Color & Weight
  2.3 Background Color
  2.4 Border Radius
  2.5 Section
    - Section Paddings
    - Section Margins
    - Section Title
    - Content width
  2.6 Buttons
    - Button Sizes
    - Button Shapes
    - Button Color Scheme
    - Button Aligns

3. CONTENT ELEMENTS
  - Dropdown
  - Svg Color
  - Search Bar

4. SITE STRUCTURE
  4.1 Header
  4.2 Intro
  4.3 Best Services Section
  4.4 Book Appointment Section
  4.5 Testimonial Section
  4.6 Our Team Section
  4.7 Faqs Section
  4.8 Tabs- Department Section
  4.9 Blog Section
  4.10 Brand Section
  4.11 Subscribe Section
  4.12 Footer

    
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --accent-color: #333;
  --black-color: #000;
  --dark-color: #4C5354;
  --primary-color: #4d7b6b;
  --primary-color-200: #e8f1ec;
  --primary-color-400: #e8f1ed;
  --gray-color: #777F81;
  --bs-gray-300: #DCDCDC;
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-primary-rgb: rgb(77, 122, 107);
  --light-color: #fff;
  --swiper-theme-color: #111 !important;
  --cadet-blue-color: #9AB4B7;

}

/* Modern Logo Text Styling */
.logo-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.logo-text::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #3a5d4f 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.logo-text:hover {
  color: var(--dark-color);
  text-decoration: none;
  transform: translateY(-2px);
}

.logo-text:hover::before {
  transform: scaleX(1);
}

/* Responsive Logo Sizing */
@media only screen and (max-width: 1200px) {
  .logo-text {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 991px) {
  .logo-text {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 768px) {
  .logo-text {
    font-size: 1.6rem;
    letter-spacing: -0.8px;
  }
}

@media only screen and (max-width: 576px) {
  .logo-text {
    font-size: 1.4rem;
    letter-spacing: -0.6px;
  }
}

@media only screen and (max-width: 480px) {
  .logo-text {
    font-size: 1.2rem;
    letter-spacing: -0.5px;
  }
}

@media only screen and (max-width: 375px) {
  .logo-text {
    font-size: 1.1rem;
    letter-spacing: -0.4px;
  }
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

/* Fonts */
:root {
  --body-font: "PT Serif", serif;
  --heading-font: "Open Sans", sans-serif;
}

/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--accent-color);
  margin: 0;
}

ul.inner-list li,
ul>li {
  color: var(--dark-gray-color);
}

a {
  color: var(--dark-color);
  text-decoration: none;
  transition: 0.3s color ease-out;
}

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

a.light {
  color: var(--light-color);
}

a:hover.light {
  color: var(--light-color);
}

p {
  color: var(--gray-color);
}

b,
strong {
  font-weight: bold;
}

.highlight {
  background: var(--primary-color);
  color: var(--light-color);
}

.focus-transparent:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
}

/* 2.2 Text Color & Weight
/*----------------------------------------------*/
.text-primary {
  color: var(--primary-color) !important;
}

.text-primary-500 {
  color: var(--bs-primary-rgb) !important;
}

.text-primary-500:hover {
  color: var(--primary-color) !important;
}

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

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

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

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

.fw-semibold {
  font-weight: 600;
}

.fw-medium {
  font-weight: 500;
}

/* 2.3 Background Color
/*----------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-primary-200 {
  background-color: var(--primary-color-200) !important;
}

.bg-primary-dim {
  background-color: var(--bs-primary-rgb) !important;
}

/* 2.4 Border Radius
/*----------------------------------------------*/
.border-circle {
  border-radius: 50% !important;
}

.border-radius-10 {
  border-radius: 10px !important;
}

.border-radius-20 {
  border-radius: 20px !important;
}

.border-radius-30 {
  border-radius: 30px !important;
}

.border-radius-35 {
  border-radius: 35px !important;
}

.border-radius-top-10 {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.border-right {
  border-right: 1px solid var(--bs-gray-300);
}

/*--------------------------------------------------------------
/** 2.5 Section
--------------------------------------------------------------*/
/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}

.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}

.padding-large {
  padding-top: 7em;
  padding-bottom: 7em;
}

/* - Section Margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}

.margin-medium {
  margin-top: 5em;
  margin-bottom: 5em;
}

.margin-large {
  margin-top: 7em;
  margin-bottom: 7em;
}

@media only screen and (max-width: 768px) {

  .margin-small,
  .margin-medium,
  .margin-large {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 1;
}

h1.light,
h2.light,
h3.light,
h4.light,
h5.light {
  color: var(--light-color);
}

/* - Section width
--------------------------------------------------------------*/
.u-full-width {
  width: 100%;
  border: none;
}

.container-md {
  max-width: 1465px;
}

.container-lg {
  max-width: 1750px;
}

/*--------------------------------------------------------------
/** 2.6 Buttons
--------------------------------------------------------------*/
/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.8em 1.8em;
  font-size: 0.65em;
}

.btn.btn-medium {
  padding: 1.1em 2.3em;
  font-size: 1em;
}

.btn.btn-large {
  padding: 0.8em 4.6em;
  font-size: 1.4em;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
  border-radius: 6px;
}

.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}

/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent,
.btn.btn-outline-primary {
  background: transparent;
  text-shadow: none;
  box-shadow: none;
  border: 2px solid transparent;
}

.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}

.btn.btn-outline-dark {
  border-color: rgba(0, 0, 0, 1);
  color: var(--dark-color);
}

.btn.btn-outline-dark:hover {
  background: var(--dark-color);
  color: var(--light-color);
}

.btn.btn-outline-light {
  border-color: rgba(255, 255, 255, 1);
  color: var(--light-color);
}

.btn.btn-outline-gray {
  background: transparent;
  border-color: var(--gray-color-200);
  color: var(--dark-color);
}

.btn.btn-outline-gray:hover {
  color: var(--light-color) !important;
}

.btn.btn-outline-primary {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--dark-color);
}

.btn.btn-outline-primary:hover {
  border-color: var(--dark-color);
  color: var(--dark-color) !important;
}

.btn.btn-full {
  display: block;
  margin: .85em 0;
  width: 100%;
  letter-spacing: 0.12em;
}

/* no border radius */
.btn-rounded-none,
.btn-rounded-none::after {
  border-radius: 0;
}

/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-normal {
  text-decoration: none;
  border: none;
  font-weight: 600;
}

.btn.btn-normal:hover,
.btn.btn-normal:focus {
  box-shadow: none;
}

.btn.btn-accent {
  color: var(--light-color);
  background-color: var(--accent-color);
  border: none;
}

.btn.btn-accent:hover {
  color: var(--light-color) !important;
  background-color: var(--primary-color);
}

.btn.btn-black {
  background-color: var(--dark-color);
  color: var(--light-color);
  border: none;
}

.btn.btn-black:hover {
  color: var(--light-color);
}

.btn.btn-light {
  background-color: var(--light-color);
  color: var(--dark-color);
  border: none;
}

.btn.btn-light:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}

.btn.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
}

.btn.btn-primary:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left {
  text-align: left;
  display: block;
}

.btn-center {
  text-align: center;
  display: block;
}

.btn-right {
  text-align: right;
  display: block;
}

/*--------------------------------------------------------------
/** 3.CONTENT ELEMENTS
--------------------------------------------------------------*/

/* - Dropdown
------------------------------------------------------------- */
.navbar-nav .dropdown-toggle::after {
  border: none;
}

.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
  color: var(--primary-color);
  background-color: transparent;
}

.navbar-nav ul.dropdown-menu>li {
  font-size: 1em;
}

ul.dropdown-menu .dropdown-item {
  display: initial;
}

.navbar-nav ul.dropdown-menu.show {
  top: 27px;
}

/* - Svg Color
------------------------------------------------------------- */
svg.light-color {
  color: var(--light-color);
}

svg.dark-color {
  color: var(--dark-color);
}

svg.primary-color {
  color: var(--primary-color);
}

svg.primary-color-500 {
  color: var(--bs-primary-rgb);
}

/* - Search Bar
------------------------------------------------------------- */
form.search-form svg.search {
  bottom: 24px;
  z-index: 3;
}

@media only screen and (max-width: 991px) {
  #navbar-primary form.search-form {
    width: 100%;
  }

  form.search-form svg.search {
    right: 40px;
    bottom: 40px;
  }

  form.search-form input.form-control {
    background: var(--bs-gray-200);
  }
}

/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
/*----------------------------------------------*/
#primary-header.navbar {
  z-index: 9;
  padding-top: 0;
}

div#navbar-primary {
  box-shadow: 0px 2px 40px rgba(8, 70, 78, 0.10);
}

.navbar-nav li.nav-item {
  height: max-content;
}

.navbar-nav a.nav-link {
  line-height: 1.2;
}

.navbar-nav a.nav-link:hover,
.navbar-nav a.nav-link.active {
  color: var(--primary-color) !important;
}

.navbar button.navbar-toggler {
  z-index: 9;
}

.navbar button.navbar-toggler svg.navbar-icon {
  position: fixed;
  top: 10;
  right: 30px;
}

@media only screen and (max-width: 991px) {
  .navbar-toggler:focus {
    box-shadow: none;
  }

  #header .container {
    max-width: 980px;
  }

  #header .navbar {
    box-shadow: none;
  }

  /* .header-bottom.show {
    position: absolute;
    width: 60%;
    width: 100%;
    top: -10px;
    right: 0;
    padding: 40px 20px 80px 40px !important;
  } */

  .navbar-nav li.nav-item {
    font-size: 2.3em;
    font-weight: 400;
    height: max-content;
    border: none;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .header-top ul.contact-list {
    padding-top: 20px;
  }

  .header-top .btn-book {
    text-align: left !important;
  }

  .contact-list li {
    font-size: 14px;
    padding-right: 20px !important;
  }

  .navbar-nav li.nav-item {
    font-size: 1.3em;
  }

  .navbar button.navbar-toggler svg.navbar-icon {
    top: 0;
  }
}

@media only screen and (max-width: 1400px) and (min-width: 999px) {
  .get-pro {
    display: none;
  }
}

/* 4.2 Intro (Billboard) Section
/*----------------------------------------------*/
section#intro {
  margin-top: -30px;
}

#intro .banner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    padding: 0;
}

#intro .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    border-radius: 24px;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    border: 1.5px solid rgba(255,255,255,0.18);
    max-width: 600px;
    margin: 0 auto;
    z-index: 3;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

#intro .banner-content h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #fff;
    text-shadow: 0 4px 32px rgba(0,0,0,0.25);
    margin-bottom: 1rem;
    line-height: 1.1;
}

#intro .banner-content h6 {
    font-size: 1.1rem;
    letter-spacing: 2.5px;
    color: #e8f1ed;
    margin-bottom: 0.7rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

#intro .banner-content p {
    font-size: 1.15rem;
    color: #f3f3f3;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

#intro .banner-content .btn {
    font-size: 1.1rem;
    padding: 0.9em 2.5em;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(77, 123, 107, 0.18);
    background: linear-gradient(90deg, #4d7b6b 0%, #3a5d4f 100%);
    border: none;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.2s;
}
#intro .banner-content .btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(77, 123, 107, 0.28);
    background: linear-gradient(90deg, #3a5d4f 0%, #4d7b6b 100%);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    #intro .banner-content {
        padding: 2rem 1rem 1.5rem 1rem;
        max-width: 95vw;
    }
    #intro .banner-content h1 {
        font-size: 2.1rem;
    }
    #intro .banner-content p {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1530px) {
  #intro .banner-content {
    top: -7%;
    left: 5%;
    width: 44%;
  }

  #intro img {
    width: 100%;
    height: 620px;
    object-fit: cover;
  }
}

@media only screen and (max-width: 1050px) {
  #intro .banner-content {
    width: 54%;
  }
}

@media only screen and (max-width: 550px) {
  #intro .banner-content {
    width: 90%;
  }
}

/* 4.3 Our Best Services Section
/*----------------------------------------------*/
#our-services .icon-box {
  transition: 0.3s ease-out;
}

#our-services .icon-box:hover {
  box-shadow: 0px 2px 40px rgba(8, 70, 78, 0.10);
  margin-top: -3px;
}

#our-services .service-icon-box {
  box-shadow: 0px 2px 40px rgba(8, 70, 78, 0.10);

}

@media only screen and (max-width: 1399px) {
  #our-services .icon-box-content h3.card-title {
    font-size: 1.2em;
  }

  #our-services .icon-box-content p {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 767px) {
  #our-services .icon-box-content h3.card-title {
    font-size: 1.8em;
  }
}


/* 4.4 Book Appointment Section
/*----------------------------------------------*/
.contact-form select,
.contact-form input,
.contact-form .input-group input {
  width: 98%;
  height: 60px;
}

.contact-form .input-group input {
  padding-right: 450px;
}

.input-group span.input-group-text {
  right: 20px;
  height: 60px;
  line-height: 3;
}

.contact-form select.form-select {
  background-position: right 1.25rem center;
}

@media only screen and (max-width: 1399px) {
  .contact-form .input-group input {
    padding-right: 290px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-form .input-group input {
    padding-right: 70px;
  }
}

@media only screen and (max-width: 575px) {
  #book-appointment .contact-form {
    display: block !important;
  }
}

/* 4.5 Testimonial Section
/*----------------------------------------------*/
#testimonial blockquote {
  padding: 50px;
}

.review-item svg.quote-up {
  left: -20px;
  top: 30px;
}

.review-item svg.quote-down {
  right: 70px;
  bottom: 118px;
}

.testimonial-swiper .swiper-horizontal>.swiper-pagination-bullets,
.testimonial-swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.testimonial-swiper .swiper-pagination-custom,
.testimonial-swiper .swiper-pagination-fraction {
  left: 53px;
  width: auto;
}

.swiper-pagination span.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--swiper-pagination-bullet-inactive-color, #4d7b6b);
}

@media only screen and (max-width: 767px) {
  #testimonial .image-holder {
    display: none;
  }
}

/* 4.6 Our Team Section
/*----------------------------------------------*/
#our-team .swiper-horizontal>.swiper-pagination-bullets,
#our-team .swiper-pagination-bullets.swiper-pagination-horizontal,
#our-team .swiper-pagination-custom,
#our-team .swiper-pagination-fraction {
  bottom: -6px;
}

@media only screen and (max-width: 767px) {
  #our-team .team-member {
    flex-wrap: wrap;
  }
}

/* 4.7 Faqs Section
/*----------------------------------------------*/
.accordion .accordion-item {
  border-bottom: 1px solid var(--bs-gray-300) !important;
}

.accordion .accordion-button:not(.collapsed) {
  color: var(--dark-color);
}

.accordion .accordion-button::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 2rem;
  width: 1.5rem;
  height: 1.5rem;
}

.accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='minus' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}


/* 4.8 Tabs- Department Section
/*----------------------------------------------*/

.medical-department-tab .nav-tabs .nav-item.show .nav-link,
.medical-department-tab .nav-tabs .nav-link.active,
.medical-department-tab .nav-tabs .nav-link:hover {
  color: var(--light-color) !important;
  background-color: var(--primary-color);
}

@media only screen and (max-width: 1280px) {
  .medical-department-tab .tab-content .tab-pane {
    width: 100%;
  }

  .medical-department-tab .tab-content .tab-pane:after {
    background: none;
  }
}

@media only screen and (max-width: 680px) {
  #department .medical-department-tab {
    padding-left: 10px !important;
  }

  .medical-department-tab button {
    padding: 0;
    font-size: 14px;
  }

  .medical-department-tab .nav-tabs {
    padding: 0 !important;
  }

  .medical-department-tab .tab-content h2 {
    font-size: 23px;
  }

  .medical-department-tab .tab-content p {
    font-size: 15px;
  }
}


/* 4.9 Blog Section
/*----------------------------------------------*/
.post-grid .card-image span {
  bottom: 0;
  left: 0;
  padding: 5px 15px;
  letter-spacing: 1.2px;
}


/* 4.10 Brand Section
/*----------------------------------------------*/
#brand-collection .col .bottom-image {
  display: none;
}

#brand-collection .col:hover .bottom-image {
  display: inline;
}

#brand-collection .col:hover .top-image {
  display: none;
}


/* 4.11 Subscribe Section
/*----------------------------------------------*/
#subscribe input[type="text"] {
  width: 100%;
  background: transparent;
  border: 2px solid var(--light-color);
  height: 65px;
}

#subscribe button.btn-subscribe {
  right: 2px;
  bottom: 2px;
  width: 30%;
  height: 61px;
}

#subscribe input::placeholder {
  color: var(--light-color);
  opacity: 1;
}

#subscribe input:focus-visible {
  outline: transparent;
}

@media only screen and (max-width: 548px) {
  #subscribe button.btn-subscribe {
    bottom: -64px;
    width: 100%;
  }
}

/* 4.12 Footer Section
/*----------------------------------------------*/
.footer-menu ul.menu-list {
  column-count: 2;
}

.footer-menu table.schedule {
  width: 90%;
}

@media only screen and (max-width: 991px) {
  .footer-menu table.schedule {
    width: 100%;
  }
}


/*--------------------------------------------------------------
blog page style start
--------------------------------------------------------------*/
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--dark-color);
  border-color: var(--dark-gray-color);
}

.page-link:hover {
  z-index: 2;
  color: var(--dark-color);
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  color: var(--dark-color);
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--dark-gray-color);
}

.page-link {
  color: var(--dark-color);
}



/*--------------------------------------------------------------
reviews page style start
--------------------------------------------------------------*/
.reviews-components {
  border: 1px solid var(--light-text-color);
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
  border-radius: 9px;
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--bs-primary-rgb);
}



/*--------------------------------------------------------------
  Price page style
  --------------------------------------------------------------*/
.plan-post {
  border: 1px solid var(--primary-color);
}

span.price-tick {
  color: var(--accent-color);
}

.price-option {
  height: 320px;
}

.recommend-price {
  background: var(--primary-color);
}



/*--------------------------------------------------------------
  Gallery page style
  --------------------------------------------------------------*/

button.filter-button.gallery-btn {
  letter-spacing: 0.075rem;
  border: 2px solid var(--primary-color-400);
  background: transparent;
  color: var(--accent-color);
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease-in;
}

button.filter-button.gallery-btn.active {
  border: 2px solid var(--black-color);
}

button.filter-button.gallery-btn:hover {
  border: 2px solid var(--black-color);
}



/*--------------------------------------------------------------
  Booking page style
  --------------------------------------------------------------*/
.form-control:focus {
  border: 2px solid var(--black-color);
  box-shadow: none;
}



/*--------------------------------------------------------------
  Department page style
  --------------------------------------------------------------*/
span.price-tick {
  color: var(--primary-color);
}

.lead {
    color: white;
}

/* --- Refined Icon Styles for Better Visibility --- */
.icon-box-icon i,
.service-icon i,
.feature-icon i,
.icon-box i,
#footer i,
#footer svg {
    color: #fff !important;
    background: linear-gradient(135deg, #4d7b6b 0%, #3a5d4f 100%);
    border-radius: 16px;
    padding: 10px;
    font-size: 1.7rem !important;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    box-shadow: 0 4px 24px rgba(77, 123, 107, 0.10);
    transition: color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-box-icon i:hover,
.service-icon i:hover,
.feature-icon i:hover,
.icon-box i:hover,
#footer i:hover,
#footer svg:hover {
    color: #e8f1ed !important;
    background: linear-gradient(135deg, #3a5d4f 0%, #4d7b6b 100%);
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 8px 32px rgba(77, 123, 107, 0.18);
}

/* --- Card Hover Effects --- */
.icon-box,
.service-card,
.feature-card {
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    box-shadow: 0 2px 16px rgba(77, 123, 107, 0.08);
    border: 1.5px solid transparent;
}
.icon-box:hover,
.service-card:hover,
.feature-card:hover {
    box-shadow: 0 12px 36px rgba(77, 123, 107, 0.22), 0 2px 8px rgba(77, 123, 107, 0.10);
    border-color: #4d7b6b;
    transform: translateY(-12px) scale(1.05);
    background: linear-gradient(120deg, #e8f1ed 0%, #f8fafb 100%);
}

/* --- Footer Icon Spacing & Style --- */
#footer .contact-item p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.7rem;
}
#footer .contact-item svg,
#footer .contact-item i {
    font-size: 1.2rem !important;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    padding: 7px;
}

/* --- General Icon Spacing --- */
li i,
li svg, #footer .contact-item svg, #footer .contact-item i {
    margin-right: 0.8em !important;
    vertical-align: middle;
}
#footer .contact-item p {
    gap: 1.2rem;
    margin-bottom: 1.1rem;
    align-items: center;
}

/* --- Modern Service Area Section --- */
.bg-gradient-primary {
    background: linear-gradient(120deg, #4d7b6b 0%, #3a5d4f 100%);
}
.service-area-card-modern {
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(77, 123, 107, 0.10);
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.service-area-card-modern:hover {
    box-shadow: 0 8px 40px rgba(77, 123, 107, 0.18);
    transform: translateY(-6px) scale(1.03);
    background: linear-gradient(120deg, #e8f1ed 0%, #f8fafb 100%);
}
.service-area-card-modern i {
    background: linear-gradient(135deg, #4d7b6b 0%, #3a5d4f 100%);
    color: #fff !important;
    border-radius: 50%;
    padding: 18px;
    font-size: 2.2rem !important;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(77, 123, 107, 0.10);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.service-area-card-modern:hover i {
    background: linear-gradient(135deg, #3a5d4f 0%, #4d7b6b 100%);
    color: #e8f1ed !important;
    transform: scale(1.08);
}

/* --- Modern Contact Us Section --- */
.contact-card-modern {
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(77, 123, 107, 0.10);
    background: #f8fafb;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 420px;
}
.contact-card-modern i {
    background: linear-gradient(135deg, #4d7b6b 0%, #3a5d4f 100%);
    color: #fff !important;
    border-radius: 50%;
    padding: 12px;
    font-size: 1.5rem !important;
    box-shadow: 0 2px 12px rgba(77, 123, 107, 0.10);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.contact-card-modern a.btn {
    font-size: 1.1rem;
    padding: 0.8em 2.5em;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(77, 123, 107, 0.18);
    background: linear-gradient(90deg, #4d7b6b 0%, #3a5d4f 100%);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card-modern a.btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(77, 123, 107, 0.28);
    background: linear-gradient(90deg, #3a5d4f 0%, #4d7b6b 100%);
}

.why-choose-modern {
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(77, 123, 107, 0.10);
    background: #fff;
    min-height: 420px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.why-choose-modern ul li {
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.7em;
    margin-bottom: 1.1rem;
}
.why-choose-modern i {
    color: #4d7b6b !important;
    font-size: 1.3rem !important;
}

@media (max-width: 991px) {
    .contact-card-modern, .why-choose-modern {
        min-height: unset;
        padding: 2rem 1rem;
    }
    .service-area-card-modern {
        padding: 2rem 1rem;
    }
}
@media (max-width: 767px) {
    .service-area-card-modern {
        margin-bottom: 1.5rem;
    }
    .contact-card-modern, .why-choose-modern {
        margin-bottom: 1.5rem;
    }
}

/* --- Modern Service Area List --- */
.service-area-list-modern {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0;
}
.service-area-list-modern li {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(77, 123, 107, 0.08);
    padding: 1.1rem 1.3rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.service-area-list-modern li:hover {
    background: linear-gradient(120deg, #e8f1ed 0%, #f8fafb 100%);
    box-shadow: 0 6px 24px rgba(77, 123, 107, 0.16);
    transform: translateY(-2px) scale(1.03);
}
.service-area-icon {
    background: linear-gradient(135deg, #4d7b6b 0%, #3a5d4f 100%);
    color: #fff !important;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem !important;
    box-shadow: 0 2px 8px rgba(77, 123, 107, 0.10);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.service-area-list-modern li:hover .service-area-icon {
    background: linear-gradient(135deg, #3a5d4f 0%, #4d7b6b 100%);
    color: #e8f1ed !important;
    transform: scale(1.08);
}

/* --- Contact Us Icon Circle --- */
.contact-icon-circle {
    background: linear-gradient(135deg, #4d7b6b 0%, #3a5d4f 100%);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(77, 123, 107, 0.10);
    margin-right: 0.5rem;
}
.contact-icon-circle i {
    color: #fff !important;
    font-size: 1.3rem !important;
}

.service-area-list-modern li {
    margin-bottom: 1.2rem;
}

@media (min-width: 576px) {
    .service-area-list-modern li {
        margin-bottom: 1.2rem;
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }
}

@media (min-width: 992px) {
    .service-area-list-modern li {
        margin-bottom: 1.5rem;
        margin-right: 1rem;
        margin-left: 1rem;
    }
}

/* --- Modern FAQ Section --- */
#faqs {
    background: linear-gradient(120deg, #f8fafb 0%, #e8f1ed 100%);
    border-radius: 32px;
    box-shadow: 0 4px 32px rgba(77, 123, 107, 0.08);
    margin-bottom: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
#faqs .accordion-item {
    background: #fff;
    border-radius: 18px !important;
    box-shadow: 0 2px 16px rgba(77, 123, 107, 0.06);
    margin-bottom: 1.2rem;
    border: none;
    overflow: hidden;
}
#faqs .accordion-button {
    background: transparent;
    border: none;
    border-radius: 18px 18px 0 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4d7b6b;
    padding: 1.2rem 1.5rem;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
}
#faqs .accordion-button:focus {
    box-shadow: 0 0 0 2px #4d7b6b33;
}
#faqs .accordion-button:not(.collapsed) {
    background: linear-gradient(120deg, #e8f1ed 0%, #f8fafb 100%);
    color: #3a5d4f;
}
#faqs .accordion-body {
    padding: 1.2rem 1.5rem 1.5rem 1.5rem;
    color: #333;
    font-size: 1.08rem;
    background: #f8fafb;
    border-radius: 0 0 18px 18px;
}
#faqs .accordion-header i {
    color: #4d7b6b;
    margin-right: 0.7rem;
    font-size: 1.2rem;
}

/* --- Modern Footer Section --- */
#footer {
    background: linear-gradient(120deg, #4d7b6b 0%, #3a5d4f 100%);
    color: #fff;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -4px 32px rgba(77, 123, 107, 0.10);
    margin-top: 3rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}
#footer .footer-menu {
    background: rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(77, 123, 107, 0.08);
}
#footer .logo-text {
    color: #fff;
    text-shadow: 0 2px 8px rgba(77, 123, 107, 0.18);
}
#footer .contact-item i {
    background: #fff;
    color: #4d7b6b !important;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem !important;
    margin-right: 0.7rem;
    box-shadow: 0 2px 8px rgba(77, 123, 107, 0.10);
}
#footer .contact-item span {
    color: #fff;
    font-weight: 500;
}
#footer .menu-list a {
    color: #e8f1ed;
    font-weight: 500;
    transition: color 0.2s;
}
#footer .menu-list a:hover {
    color: #fff;
    text-decoration: underline;
}
#footer .widget-title {
    color: #fff;
    letter-spacing: 1px;
    font-size: 1.1rem;
}
#footer .schedule td {
    color: #fff;
    font-size: 1rem;
    padding: 0.3rem 0.7rem;
}
#footer .schedule tr {
    border-color: #e8f1ed;
}
#footer .footer-menu:last-child {
    margin-bottom: 0;
}
#footer .copyright-bar, #footer .copyright-bar p {
    color: #e8f1ed;
    font-size: 1rem;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e8f1ed33;
    text-align: center;
}
@media (max-width: 991px) {
    #footer {
        border-radius: 24px 24px 0 0;
        padding-top: 2rem;
    }
    #faqs {
        border-radius: 24px;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

#footer p {
    color: #ffffff !important;
}

#footer .text-primary {
    color: #fff !important;
}

@media (min-width: 768px) {
    #intro .banner {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
}

@media (min-width: 768px) {
    section#intro {
        margin-top: -20px !important;
    }
}