/* ==============================
   Global Styles
============================== */
body {
  font-family: 'Poppins', sans-serif;
}

/* ==============================
   Navbar & Logo
============================== */
.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #cce2f8;
  margin-bottom: 60px;
  width: 330px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7cb6e6;
  clip-path: polygon(0% 25%, 100% 25%, 85% 110%, 15% 110%);
  border-bottom-left-radius: 80px 180px;
  border-bottom-right-radius: 80px 180px;
  transition: width 0.3s, height 0.3s;
  z-index: 5;
  pointer-events: none;
}

.logo-container img {
  margin-top: 40px;
  max-height: 120px;
  width: auto;
  max-width: 90%;
  height: auto;
  pointer-events: none;
}

.navbar-nav .nav-link {
  position: relative;
  color: #0066cc !important;
  font-weight: 500;
  border-radius: 0;
  padding: 12px 24px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
  min-width: 140px;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  z-index: 10;
  overflow: hidden;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before { }

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0066CC;           
  clip-path: polygon(
    0 0,                        
    calc(100% - 20px) 0,        
    100% 50%,                    
    calc(100% - 20px) 100%,        
    0 100%                          
  );
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show-link {
  color: #fff !important;
}

.navbar {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background: #fff;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #0066cc;
}

.navbar .container {
  min-height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}

.left-nav {
  margin-right: auto;
  display: flex;
  gap: 120px;
}

.right-nav {
  margin-left: auto;
  display: flex;
  gap: 120px;
}

@media (max-width: 1200px) {
  .logo-container {
    transform: translateX(-50%) translateY(-2%);
    width: 250px;
    height: 120px;
  }
}

@media (max-width: 992px) {
  .logo-container {
    position: static;
    margin: 15px auto;
    width: 180px;
    height: 90px;
    border-bottom-left-radius: 40px 90px;
    border-bottom-right-radius: 40px 90px;
    pointer-events: auto;
  }
}

/* =============================
    COPY PASTE KAHIT SAAN SA CSS
    ============================= */

.homeRelative {
    position: relative;
}

.homeHovered {
    opacity: 1;
    transition: all 0.4s ease;
    pointer-events: none;
}

.homeRelative:hover + .homeHovered {
    opacity: 1;
    pointer-events: auto;
}

.homeRelative:hover + .homeHovered > .homeHoverImg{
    left: 4.7%;
}

.homeRelative:hover + .homeHovered > .homeHoverBox{
    width: 220px;
}

.homeHoverImg {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 4.7%;
    transform: translateY(-50%) scaleX(-1);
    height: 132px;
    width: auto;
    transition: all 0.4s ease;
}

.homeHoverBox {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: -7.6%;
    transform: translateY(-50%);
    height: 132px;
    width: 220px;
    background-color: #0066cc;
    transition: all 0.4s ease;
}

.aboutRelative {
    position: relative;
}

.aboutHovered {
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.aboutRelative:hover + .aboutHovered {
    opacity: 1;
    pointer-events: auto;
}

.aboutRelative:hover + .aboutHovered > .aboutHoverImg{
    left: 17.5%;
}

.aboutHoverImg {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 27.5%;
    transform: translateY(-50%) scaleX(-1);
    height: 132px;
    width: auto;
    transition: all 0.4s ease;
}

.services-container {
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.services-container.show {
    opacity: 1;
    pointer-events: auto;
}

.servicesRelative {
    position: relative;
}

.servicesHovered {
    opacity: 1;
    transition: all 0.4s ease;
    pointer-events: none;
}

.servicesRelative:hover + .services-container > .servicesHovered > .servicesHoverImg,
.services-container.show .servicesHoverImg {
    right: 17.6%;
}

.servicesRelative:hover + .services-container,
.servicesRelative:hover + .services-container > .servicesHovered,
.servicesRelative:hover .services-container .servicesDropdown,
.services-container.show .servicesDropdown {
    opacity: 1;
    pointer-events: auto;
}

.servicesHoverImg {
    z-index: 2;
    position: absolute;
    top: 50%;
    right: 27.6%;
    transform: translateY(-50%);
    height: 132px;
    width: auto;
    transition: all 0.4s ease;
}

.servicesDropdown {
    position: absolute;
    top: 185%;
    right: 23.1%;
    background: #0066cc;
    padding: 10px 0;
    list-style: none;
    z-index: 3;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    width: 140px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.servicesDropdown li {
    height: fit-content;
}

.servicesDropdown li a {
    width: 100%;
    height: 55px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.servicesDropdown li a i{
    margin-left: 28px;
}

.servicesDropdown li a:hover{
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    
}

.fa-caret-down {
    transition: transform 0.3s ease;
}

.fa-caret-down.rotate {
    transform: rotate(180deg);
}

.contactRelative {
    position: relative;
}

.contactHovered {
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.contactRelative:hover + .contactHovered {
    opacity: 1;
    pointer-events: auto;
}

.contactRelative:hover + .contactHovered > .contactHoverImg{
    right: 3.7%;
}

.contactRelative:hover + .contactHovered > .contactHoverBox{
    width: 200px;
}

.contactHoverImg {
    z-index: 2;
    position: absolute;
    top: 50%;
    right: -6.3%;
    transform: translateY(-50%);
    height: 132px;
    width: auto;
    transition: all 0.4s ease;
}

.contactHoverBox {
    z-index: 1;
    position: absolute;
    top: 50%;
    right: -7.6%;
    transform: translateY(-50%);
    height: 132px;
    width: 100px;
    background-color: #0066cc;
    transition: all 0.4s ease;
}

.vanishingAct {
    display: none;
}










@media (max-width: 991.98px) {
    .homeHovered {
        display: none;
    }
    .homeHoverImg {
        display: none;
    }
    .homeHoverBox {
        display: none;
    }
    .aboutHovered {
        display: none;
    }
    .aboutHoverImg {
        display: none;
    }
    .aboutHoverBox {
        display: none;
    }
    .servicesHovered {
        display: none;
    }
    .servicesHoverImg {
        display: none;
    }
    .servicesHoverBox {
        display: none;
    }
    .contactHovered {
        display: none;
    }
    .contactHoverImg {
        display: none;
    }
    .contactHoverBox {
        display: none;
    }
    .vanishingAct {
        display: block;
    }
    .vanishingAct2 {
        display: none;
    }
    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        transform: translateX(0);
    }
}

@media (min-width: 991.98px) and (max-width: 1200px) {
    .homeRelative:hover + .homeHovered > .homeHoverImg{
        left: 4% !important;
    }
    .homeRelative:hover + .homeHovered > .homeHoverBox{
        width: 210px !important;
    }
    .homeHoverImg {
        left: 4% !important;
        height: 127px !important;
    }
    .homeHoverBox {
        left: -11.6% !important;
        height: 127px !important;
        width: 210px !important;
    }
    .aboutRelative:hover + .aboutHovered > .aboutHoverImg{
        left: 19.8% !important;
    }
    .aboutHoverImg {
        left: 29.8% !important;
        height: 127px !important;
    }
    .servicesRelative:hover + .services-container > .servicesHovered > .servicesHoverImg,
    .services-container.show .servicesHoverImg {
        right: 19.8% !important;
    }
    .servicesHoverImg {
        right: 29.8% !important;
        height: 127px !important;
    }
    .servicesDropdown {
        top: 195% !important;
        right: 27% !important;
        width: 135px !important;
    }
    .servicesDropdown li a i{
        margin-left: 25px !important;
    }
    .contactRelative:hover + .contactHovered > .contactHoverImg{
        right: 5% !important;
    }
    .contactRelative:hover + .contactHovered > .contactHoverBox{
        width: 220px !important;
    }
    .contactHoverImg {
        right: -5% !important;
        height: 127px !important;
    }
    .contactHoverBox {
        right: -11.6% !important;
        height: 127px !important;
        width: 120px !important;
    }
    .right-nav {
        gap: 100px !important;
    }
}

@media (max-width: 1399px) {
    .homeRelative:hover + .homeHovered > .homeHoverImg{
        left: 5%;
    }
    .homeRelative:hover + .homeHovered > .homeHoverBox{
        width: 240px;
    }
    .homeHoverImg {
        left: 5%;
        height: 132px;
    }
    .homeHoverBox {
        left: -11.3%;
        height: 132px;
        width: 240px;
    }
    .aboutRelative:hover + .aboutHovered > .aboutHoverImg{
        left: 20%;
    }
    .aboutHoverImg {
        left: 30%;
        height: 132px;
    }
    .servicesRelative:hover + .services-container > .servicesHovered > .servicesHoverImg,
    .services-container.show .servicesHoverImg {
        right: 20.4%;
    }
    .servicesHoverImg {
        right: 30.4%;
        height: 132px;
    }
    .servicesDropdown {
        right: 26.8%;
    }
    .servicesDropdown li a i{
        margin-left: 27px;
    }
    
    .contactRelative:hover + .contactHovered > .contactHoverImg{
        right: 6%;
    }
    .contactRelative:hover + .contactHovered > .contactHoverBox{
        width: 255px;
    }
    .contactHoverImg {
        right: -4%;
        height: 132px;
    }
    .contactHoverBox {
        right: -11.3%;
        height: 132px;
        width: 155px;
    }
}


/* ==============================
   Full Cover Section
============================== */
.hero-section {
  width: 100%;
  height: auto;
  position: relative;
}

.full-cover-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ==============================
   Care & Amenities Section
============================== */
.care-amenities h2 {
  font-size: 2.5rem;
  line-height: 1.4;
}

.highlight-text {
  color: #0066CC;
}

.subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

.amenity-card {
  border: 2px solid;
  border-radius: 10px;
  padding: 30px 20px;
  height: 120%;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.amenity-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

.amenity-card h5 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
}

.amenity-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.text-blue { color: #0066CC !important; }
.text-green { color: #99CA36 !important; }
.text-pink { color: #EF3C97 !important; }
.text-orange { color: #EF7330 !important; }

.border-blue { border-color: #0066CC !important; }
.border-green { border-color: #99CA36 !important; }
.border-pink { border-color: #EF3C97 !important; }
.border-orange { border-color: #EF7330 !important; }

.btn-blue {
  background-color: #0066CC;
  color: #fff;
  border: none;
}
.btn-blue:hover { background-color: #005bb5; color: #fff; }

.btn-green {
  background-color: #99CA36;
  color: #fff;
  border: none;
}
.btn-green:hover { background-color: #86b12f; color: #fff; }

.btn-pink {
  background-color: #EF3C97;
  color: #fff;
  border: none;
}
.btn-pink:hover { background-color: #d93486; color: #fff; }

.btn-orange {
  background-color: #EF7330;
  color: #fff;
  border: none;
}
.btn-orange:hover { background-color: #d96225; color: #fff; }

.amenity-card .btn {
  align-self: center; 
  margin-top: auto;
  width: fit-content;
}

/* ==============================
   Insurance Section
============================== */
.insurance-card {
  background: linear-gradient(to right, rgba(0, 102, 204, 0.8), #ffffff);
  border-radius: 12px;
  max-width: 1900px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.insurance-icon {
  font-size: 2.5rem;
  color: #0066CC;
  margin-bottom: 15px;
}

/* ==============================
   HMO Section
============================== */
.hmo-section {
  position: relative;
  background: #EFF6FF;
  overflow: visible;
  padding-top: 3rem; 
  padding-bottom: 3rem;
}

.hmo-section > .container {
  position: relative;
  z-index: 2;
}

.hmo-section::before,
.hmo-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 36px;               
  background-repeat: repeat-x;
  background-size: 150px 36px; 
  pointer-events: none;
  z-index: 1;
}

.hmo-section::before {
  top: -1px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 28'%3E%3Cpath d='M0 10 C20 0 40 0 60 10 C80 20 100 20 120 10 L120 28 L0 28 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.hmo-section::after {
  bottom: -1px;
  transform: rotate(0deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 28'%3E%3Cpath d='M0 10 C20 0 40 0 60 10 C80 20 100 20 120 10 L120 28 L0 28 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* ==============================
   HMO Cards
============================== */
.hmo-card {
  background: #fff;
  border: 2px solid #0066CC;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.hmo-card img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.hmo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ==============================
   Call to Action Section
============================== */
.cta-section {
  background: transparent;
  padding: 60px 0;        
}

.cta-card {
  background: rgba(0, 102, 204, 0.8);
  color: #fff;
  border-radius: 12px;
  padding: 30px 40px;
  max-width: 1300px;      
  margin: 0 auto;         
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-card h3 {
  font-size: 1.5rem;
}

.cta-card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-card .btn {
  border-radius: 6px;
  font-weight: 600;
  background: #fff;
  color: #0066CC;
  border: none;
  transition: all 0.3s ease;
}

.cta-card .btn:hover {
  background: #f0f0f0;
  color: #004999;
}

/* ==============================
   Terms&Conditions Modal
============================== */
.custom-modal {
  margin-top: 25px;
}

.terms-modal-content {
  border: 3px solid #95C848;
  background: white;
  color: black;
}

.terms-title {
  color: #95C848;
}

.terms-body {
  max-height: 400px;
  overflow-y: auto;
}

.terms-body::-webkit-scrollbar {
  width: 8px; 
}
.terms-body::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 10px;
}
.terms-body::-webkit-scrollbar-thumb {
  background-color: #95C848;
  border-radius: 10px;
}
.terms-body::-webkit-scrollbar-thumb:hover {
  background-color: #7cb132; 
}

.terms-body h6 {
  text-align: justify;
  margin-left: 10px; 
  font-weight: 600;
  color: #95C848;
}

.terms-body p {
  text-align: justify;
  margin-left: 10px;
}

.form-check-input:checked {
  background-color: #95C848;
  border-color: #95C848;
}
.form-check-input {
  border: 2px solid #95C848;
}

.accept-btn {
  background-color: #95C848;
  color: white;
  border-radius: 5px;
  width: 100px;
  margin-right: 15px;
}

/* ==============================
   Contact Group
============================== */
.contact-group {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.contact-btn {
    position: relative;
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    background-color: #180e85;
    background-image: url("/images/contact.png");
    background-size: 73%;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(2,6,23,0.2);
    border: none;
    cursor: pointer;
    transition: transform 0.12s, box-shadow 0.12s;
    z-index: 1000;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(2,6,23,0.22)
}

.contact-btn:active {
    transform: translateY(-1px)
}

.contact-btn:focus {
    outline: 3px solid rgba(14,165,233,0.24)
}

.contact-icon {
    width: 22px;
    height: 22px
}

.contact-label {
    position: absolute;
    right: 5.2rem;
    bottom: 2rem;
    background: #1a0f91;
    color: #fff;
    padding: 10px 15px;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(2,6,23,0.15);
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, right 0.2s ease-in-out;
    white-space: nowrap;
    text-decoration: none;
}

.contact-btn:hover + .contact-label {
    display: block;
    opacity: 1;
}

@media (max-width: 1024px) {
  .contact-btn {
    width: 5rem;
    height: 5rem;
  }

  .contact-label {
    right: 4.4rem;
    bottom: 1.6rem;
    padding: 8px 12px;
  }
}

@media (max-width: 750px) {
  .contact-btn {
    width: 4rem;
    height: 4rem;
  }

  .contact-label {
    right: 3.3rem;
    bottom: 1rem;
    padding: 8px 12px;
  }
}

@media (max-width: 1200px) {
  .logo-container {
    width: 250px;
    height: 120px;
  }
  .logo-container img {
    margin-top: 20px;
    max-height: 80px;
  }
  .navbar-nav .nav-link {
    padding: 10px 16px;
    font-size: 1rem;
    min-width: 110px;
  }
}

/* ==============================
   Footer
============================== */
.footer-section {
  background: #d6e9fa;
  color: #000;
  padding: 40px 0 0;
}

.footer-logo {
  max-height: 120px;
  width: auto;
}

.footer-section hr {
  border: none;
  border-top: 2px solid #000000;
  margin: 20px 0;
}

.footer-section p,
.footer-section ul li a {
  color: #000;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-section ul {
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-section a:hover {
  color: #0066CC;
}

.footer-bottom {
  background: #0066CC;
  color: #fff;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Unique terms modal body */
.terms-modal-body {
  max-height: 70vh;
  overflow-y: auto;
  padding: 20px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==============================
   Terms & Conditions Footer
============================== */

.custom-modal {
  margin-top: 25px;
}

.terms-modal-content {
  border: 3px solid #95C848;
  background: #fff;
  color: #000;
}

.terms-title {
  color: #95C848;
}

.terms-modal-body {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Scrollbar styling */
.terms-modal-body::-webkit-scrollbar {
  width: 8px;
}
.terms-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.terms-modal-body::-webkit-scrollbar-thumb {
  background: #95C848;
  border-radius: 10px;
}
.terms-modal-body::-webkit-scrollbar-thumb:hover {
  background: #7cb132;
}

/* Section headings inside modal */
.terms-modal-body h6 {
  margin: 15px 0 8px;
  font-weight: 600;
  color: #95C848;
}

/* Paragraph text */
.terms-modal-body p {
  margin-bottom: 12px;
  text-align: justify;
}

/* ==============================
   Viber Modal
============================== */

/* Modal Background */
#viberModal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

/* Modal Content */
.viber-modal-content {
  background: #fff;
  border: 2px solid #99CA36;
  border-radius: 10px;
  padding: 20px;
  max-width: 350px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Title */
.viber-modal-content h3 {
  color: #333;
  margin-bottom: 10px;
}

/* Description */
.viber-modal-content p {
  margin: 0 0 15px;
  color: #555;
}

/* Viber Number */
#viberNumber {
  font-size: 1.3rem;
  font-weight: bold;
  color: #99CA36;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Copy confirmation */
#copyMsg {
  color: #28a745;
  font-size: 0.9rem;
  display: none;
  margin-bottom: 15px;
}

/* Close Button */
.viber-modal-content button {
  background: #99CA36;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}


/* ==============================
   Responsive
============================== */
@media (max-width: 1200px) {
  .logo-container {
    width: 250px;
    height: 120px;
  }
  .logo-container img {
    margin-top: 20px;
    max-height: 80px;
  }
  .navbar-nav .nav-link {
    padding: 10px 16px;
    font-size: 1rem;
    min-width: 110px;
  }
}

@media (max-width: 992px) {
  .logo-container {
    position: static;
    transform: none;
    margin: 15px auto;
    width: 180px;
    height: 90px;
    border-bottom-left-radius: 40px 90px;
    border-bottom-right-radius: 40px 90px;
    pointer-events: auto;
  }
  .logo-container img {
    margin-top: 10px;
    max-height: 60px;
  }
  .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .navbar-nav .nav-link {
    justify-content: flex-start;
    min-width: unset;
    width: 100%;
    text-align: left;
    padding: 12px 18px;
    font-size: 1rem;
  }
  .care-amenities h2 {
    font-size: 2.2rem;
    line-height: 1.4;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 220px;
  }
  .full-cover-img {
    height: 220px;
    object-fit: cover;
  }
  .care-amenities h2 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

@media (max-width: 767.98px) {
  .care-amenities .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .amenity-card {
    margin-bottom: 20px;
    height: auto;
    padding: 20px 10px;
  }
}

@media (max-width: 576px) {
  .care-amenities,
  .insurance-section,
  .hmo-section,
  .cta-section {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .cta-card {
    padding: 18px 8px;
  }
}

@media (max-width: 576px) {
  .hmo-card img {
    max-height: 30px;
  }
}

@media (max-width: 767.98px) {
  .footer-section .row > div {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
    margin-bottom: 18px;
  }
  .footer-section .footer-logo {
    max-height: 70px;
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block !important;
  }
  .logo-container {
    margin-bottom: 0;
    margin-top: 0;
  }
}