

  @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600');

  body {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 600;
    line-height: inherit;
  }

  h1,h2,h3,h4 {
    letter-spacing: -1px;
  }

  h5 {
    font-weight: 500;
  }

  h1 {
    color: #252525;
    font-size: 5em;
  }

  h2 {
    color: #272727;
    font-size: 3em;
    padding-bottom: 10px;
  }

  h3 {
    font-size: 1.8em;
    line-height: 1.2em;
    margin-bottom: 0;
  }

  h4 {
    color: #454545;
    font-size: 1.8em;
    padding-bottom: 2px;
  }

  h6 {
    letter-spacing: 0;
    font-weight: normal;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }


  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #252525;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
  }

  a:hover, a:active, a:focus {
    outline: none;
    color: orangered;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #000000;
  }

  .section-title {
    padding-bottom: 20px;
  }

  .section-title h2 {
    margin-top: 0;
  }

  .section-btn {
    background: orangered;
    border: 0;
    border-radius: 3px;
    color: #ffffff;
    font-size: inherit;
    font-weight: 500;
    padding: 14px 20px;
    transition: transform 0.1s ease-in;
    transform: translateX(0);
  }

  .section-btn:hover {
    transform: translateY(-5px);
  }

  .text-align-right {
    text-align: right;
  }

  .text-align-center {
    text-align: center;
  }

  .border-top {
    border-top: 1px solid #f2f2f2;
    margin-top: 4em;
    padding-top: 2.5em;
  }

  .btn-gray {
    background: #393939;
  }

  .btn-blue {
    background: #4267b2;
  }

  .news-thumb {
    background: #ffffff;
    border-radius: 10px;
  }
  .news-thumb img {
    border-radius: 10px 10px 0 0;
  }

  .news-info {
    padding: 30px;
    text-align: left;
  }
  .news-info span {
    display: block;
    letter-spacing: 0.5px;
  }
  .news-info h3 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .author {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5em;
    margin-top: 2em;
  }
  .author img,
  .author .author-info {
    display: inline-block;
    vertical-align: top;
  }
  .author-info h5 {
    margin-bottom: 0;
  }
  .author img {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }


  #about, #team, #news,
  #news-detail {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  #news, #service {
    text-align: center;
  }

  #google-map {
    line-height: 0;
    margin: 0;
    padding: 0;
  }


  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  header {
    background: #ffffff;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    height: 45px;
  }

  header .col-md-8 {
    padding-right: 0;
  }

  header p,
  header span {
    font-size: 12px;
    line-height: 24px;
    padding-top: 12px;
  }

  header a,
  header span {
    color: #747474;
  }

  header span {
    font-weight: 500;
    display: inline-block;
    padding: 11px 15px;
  }

  header span.date-icon {
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    padding-right: 19px;
    padding-left: 19px;
  }

  header span i {
    color: orangered;
    margin-right: 5px;
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .navbar-default {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,.075);
    border: none;
    margin-bottom: 0;
    padding: 10px;
  }

  .navbar-default .navbar-brand {
    color: #393939;
    font-weight: 500;
  }

  .navbar-default .navbar-brand .fa {
    color: orangered;
  }

  .navbar-default .navbar-nav li.appointment-btn {
    margin: 3px 0 0 20px;
  }

  .navbar-default .navbar-nav li.appointment-btn a {
    background: orangered;
    border-radius: 3px;
    color: #ffffff;
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar-default .navbar-nav li.appointment-btn a:hover {
    background: #4267b2;
    color: #ffffff !important;
  }

  .navbar-default .navbar-nav li a {
    color: #555555;
    font-size: 12px;
    font-weight: 500;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }

  .navbar-default .navbar-nav > li a:hover {
    color: #393939 !important;
  }

  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus {
    color: #555555;
    background-color: transparent;
  }

  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > .active > a:focus {
    color: #393939;
    background-color: transparent;
  }

  .navbar-default .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background: #393939;
    border-color: transparent;
  }

  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus { 
    background-color: transparent;
  }


  /*---------------------------------------
      EMERGENCY BANNER              
  -----------------------------------------*/

  .emergency-banner {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    padding: 12px 0;
    text-align: center;
  }

  .emergency-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .emergency-banner i {
    color: #ffffff;
    font-size: 22px;
    animation: pulse-emergency 1.5s infinite;
  }

  .emergency-banner span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
  }

  .emergency-banner a {
    color: #ffffff;
    text-decoration: underline !important;
    font-size: 16px;
  }

  .emergency-banner a:hover {
    color: #ffcdd2;
  }

  @keyframes pulse-emergency {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }


  /*---------------------------------------
      HOME              
  -----------------------------------------*/

  #home h1 {
    color: #ffffff;
    padding-bottom: 10px;
    margin-top: 0;
  }

  #home h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    line-height: inherit;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
  }

  .slider .container {
    width: 100%;
  }

  .slider .owl-dots {
      position: absolute;
      top: 575px;
      width: 100%;
      justify-content: center;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 7px;
    border: 2px solid #d9d9d9;
    background: transparent;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
  }

  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #ffffff;
    border-color: transparent;
  }

  .slider .caption {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: rgba(20,20,20,0.2);
    height: 100%;
    color: #fff;
    cursor: e-resize;
  }

  .slider .item {
    background-position: inherit;
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover;
    height: 650px;
  }

  .slider .item-first {
    background-image: url(../images/nurses.jpeg);
  }

  .slider .item-second {
    background-image: url(../images/counter.jpeg);
  }

  .slider .item-third {
    background-image: url(../images/slider3.jpg);
  }


  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  #about {
    /* background color is set via inline style in HTML */
  }

  #about h2 {
    color: #ffffff;
  }

  #about p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
  }

  .about-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid orangered;
    height: 100%;
    min-height: 450px;
  }

  .about-doc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .about-text-wrapper {
    padding-left: 15px;
  }

  .doctor-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 25px;
    border-left: 4px solid orangered;
  }

  .doctor-profile img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid orangered;
  }

  .doctor-profile-info h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.3em;
  }

  .doctor-profile-info p {
    margin: 0;
    font-size: 13px;
  }

  .fellowships-section {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px 25px;
  }

  .fellowships-section h4 {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid orangered;
  }

  .fellowships-section h4 .fa {
    color: orangered;
    margin-right: 8px;
  }

  .fellowships-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .fellowships-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
  }

  .fellowships-list li:last-child {
    border-bottom: none;
  }

  .fellowships-list li:before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: orangered;
    font-size: 12px;
  }

  #about h6 {
    color: #858585;
    margin: 0;
  }



  /*---------------------------------------
      TEAM MEMBERS              
  -----------------------------------------*/

  .team-thumb {
    background-color: #f9f9f9;
    border-radius: 0 0 10px 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .team-info {
    padding: 20px 30px 0 30px;
  }

  .team-contact-info {
    border-top: 1px solid #e9e9e9;
    padding-top: 1.2em;
    margin-top: 1.5em;
  }

  .team-contact-info .fa {
    margin-right: 5px;
    display: inline-block;
  }

  .team-contact-info p {
    margin-bottom: 2px;
  }

  .team-contact-info a {
    color: #757575;
  }

  .team-thumb .social-icon li {
    font-weight: 500;
  }

  .team-thumb .social-icon li a {
    background: #ffffff;
    border-radius: 100%;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 2px 0 2px;
  }

  .team-thumb .social-icon {
    opacity: 0;
    transform: translateY(100%);
    transition: 0.5s 0.2s;
    text-align: center;
    position: relative;
    top: 0;
  }

  .team-thumb:hover .social-icon {
    opacity: 1;
    transition-delay: 0.3s;
    transform: translateY(0px);
    top: -22em;
  }


  /*---------------------------------------
      TEAM CAROUSEL              
  -----------------------------------------*/

  .team-carousel .item {
    padding: 0 10px;
  }

  .team-carousel .owl-dots {
    margin-top: 25px;
    text-align: center;
  }

  .team-carousel .owl-dot span {
    background: #d9d9d9 !important;
    border: none !important;
  }

  .team-carousel .owl-dot.active span {
    background: orangered !important;
  }

  .team-carousel .team-thumb {
    margin-bottom: 0;
  }

  .team-carousel .team-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }


  /*---------------------------------------
      SERVICE              
  -----------------------------------------*/

  .service-item {
    transition: .5s;
    padding: 15px !important;
    margin-top: 20px !important;
  }

  .service-item:hover > p {
    color: black !important;
  }

  .fs-4 {
    color: orangered;
    font-size: x-large;
  }


  /*---------------------------------------
      NHIS SECTION              
  -----------------------------------------*/

  .nhis-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(30, 92, 92), rgb(20, 70, 70));
  }

  .nhis-section h2 {
    color: #ffffff;
  }

  .nhis-section h3 {
    color: #ffffff;
    margin-bottom: 15px;
  }

  .nhis-section p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }

  .nhis-badge {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid orangered;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    animation: nhis-glow 2s ease-in-out infinite alternate;
  }

  .nhis-badge i {
    font-size: 50px;
    color: orangered;
  }

  @keyframes nhis-glow {
    from {
      box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
    }
    to {
      box-shadow: 0 0 25px rgba(255, 69, 0, 0.6);
    }
  }


  /*---------------------------------------
      TESTIMONIALS              
  -----------------------------------------*/

  .testimonials-section {
    padding: 80px 0;
    background: #f5f5f5;
  }

  .testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 10px 5px;
    border-bottom: 3px solid orangered;
  }

  .testimonial-quote {
    margin-bottom: 20px;
  }

  .testimonial-quote i {
    font-size: 30px;
    color: orangered;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    font-style: italic;
    margin-bottom: 20px;
  }

  .testimonial-author h4 {
    font-size: 1.2em;
    margin-bottom: 0;
    padding-bottom: 0;
    color: #333;
  }

  .testimonial-author span {
    color: orangered;
    font-size: 13px;
    font-weight: 500;
  }

  .testimonial-carousel .owl-dots {
    margin-top: 25px;
    text-align: center;
  }

  .testimonial-carousel .owl-dot span {
    background: #d9d9d9 !important;
    border: none !important;
  }

  .testimonial-carousel .owl-dot.active span {
    background: orangered !important;
  }


  /*---------------------------------------
      GALLERY              
  -----------------------------------------*/

  .gallery-section {
    padding: 80px 0;
    background: #ffffff;
  }

  .gallery-section .section-title p {
    font-size: 15px;
    margin-top: -5px;
  }

  .gallery-item {
    margin-bottom: 30px;
  }

  .gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
  }

  .gallery-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .gallery-thumb:hover img {
    transform: scale(1.1);
  }

  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 69, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gallery-overlay i {
    color: #ffffff;
    font-size: 30px;
  }

  .gallery-thumb:hover .gallery-overlay {
    opacity: 1;
  }


  /*---------------------------------------
      FAQ              
  -----------------------------------------*/

  .faq-section {
    padding: 80px 0;
    background: #f9f9f9;
  }

  .faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .faq-question:hover {
    background: #f5f5f5;
  }

  .faq-question h4 {
    margin: 0;
    padding: 0;
    font-size: 1.1em;
    flex: 1;
  }

  .faq-question i {
    color: orangered;
    font-size: 18px;
    transition: transform 0.3s ease;
    margin-left: 15px;
  }

  .faq-item.active .faq-question i {
    transform: rotate(45deg);
  }

  .faq-answer {
    display: none;
    padding: 0 25px 20px;
  }

  .faq-answer p {
    margin: 0;
    line-height: 1.8;
  }


  /*---------------------------------------
      WHATSAPP BUTTON              
  -----------------------------------------*/

  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
  }

  .whatsapp-float:hover {
    background-color: #128C7E;
    color: #ffffff;
    transform: scale(1.1);
  }

  @keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }


  /*---------------------------------------
      APPOINTMENT             
  -----------------------------------------*/

  #appointment {
    padding-top: 100px;
  }

  .appointment-img {
    height: 560px !important;
    object-fit: contain !important;
  }

  .app-nurse {
    height: 100%;
  }

  #appointment label {
    color: #393939;
    font-weight: 500;
  }

  #appointment .form-control {
    background: #f9f9f9;
    border: none;
    border-radius: 3px;
    box-shadow: none;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    transition: all ease-in-out 0.4s;
  }

  #appointment input,
  #appointment select {
    height: 45px;
  }

  #appointment button#cf-submit {
    background: orangered;
    color: #ffffff;
    font-weight: 600;
    height: 55px;
  }

  #appointment button#cf-submit:hover {
    background: #393939;
    color: #ffffff;
  }


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  footer h4 {
    padding-bottom: 5px;
  }

  footer a {
    color: #757575;
  }

  footer a:hover {
    color: #4267b2;
  }

  .contact-info {
    padding-top: 10px;
  }

  .contact-info .fa {
    background: #393939;
    border-radius: 100%;
    color: #ffffff;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 2px;
  }

  .footer-link-list p {
    margin-bottom: 5px;
  }

  .footer-link-list .fa {
    color: orangered;
    margin-right: 8px;
    font-size: 12px;
  }

  .footer-link-list a {
    font-size: 13px;
    transition: all 0.3s ease;
  }

  .footer-link-list a:hover {
    color: orangered;
    padding-left: 5px;
  }

  .latest-stories {
    margin-bottom: 20px;
  }

  .stories-image,
  .stories-info {
    display: inline-block;
    vertical-align: top;
  }

  .stories-image img {
    border-radius: 100%;
    width: 65px;
    height: 65px;
  }

  .stories-info {
    margin-left: 15px;
  }

  .stories-info h5 {
    margin-bottom: 2px;
  }

  .stories-info span {
    color: #858585;
    font-size: 12px;
  }

  .opening-hours p {
    line-height: 18px;
  }

  .opening-hours span {
    font-weight: 500;
    display: inline-block;
    padding-left: 10px;
  }

  .copyright-text p,
  .footer-link a {
    color: #858585;
    font-size: 12px;
    font-weight: 500;
  }

  .footer-link a {
    font-size: 12px;
    display: inline-block;
    padding: 0 10px;
    margin-top: 4px;
  }

  .angle-up-btn {
    position: relative;
    bottom: 4em;
    display: block;
  }

  .angle-up-btn a {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 3px;
    font-size: 20px;
    color: #393939;
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 38px;
    transition: transform 0.1s ease-in;
    transform: translateX(0);
  }

  .angle-up-btn a:hover {
    background: #4267b2;
    color: #ffffff;
    transform: translateY(-5px);
  }


  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 100px;
    color: #464646;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
  }

  .social-icon li a:hover {
    background: #4267b2;
    color: #ffffff;
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {
    h1 {
      font-size: 4em;
    }
    h2 {
      font-size: 2.5em;
    }
    h3 {
      font-size: 1.5em;
    }

    header {
      height: inherit;
    }
    header span.date-icon {
      border: 0;
      padding-right: 0;
      padding-left: 0;
    }
    header span.email-icon {
      padding-top: 0;
    }

    .navbar-default .navbar-nav li a {
      padding-right: 15px;
      padding-left: 15px;
    }
  }

  @media only screen and (max-width: 992px) {
    .appointment-img {
      height: 560px !important;
      object-fit: cover !important;
      width: 100%;
    }
    
    .form {
      width: 100% !important;
    }
    
    .slider .item {
      background-position: center;
    }

    header {
      padding-bottom: 10px;
    }
    header .text-align-right {
      text-align: left;
    }
    header span {
      padding-top: 0;
      padding-left: 0;
      padding-bottom: 0;
    }

    .social-icon {
    }

    .footer-thumb {
      width: 100%;
      margin-bottom: 20px;
    }

    .about-image-wrapper {
      min-height: 350px;
    }

    .gallery-thumb img {
      height: 200px;
    }

    .nhis-section,
    .testimonials-section,
    .gallery-section,
    .faq-section {
      padding: 60px 0;
    }
  }




  @media only screen and (max-width: 767px) {
    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
      border-color: transparent;
    }
    .navbar-default .navbar-nav li.appointment-btn {
      margin-left: 15px;
    }
    .navbar-default .navbar-nav li a {
      display: inline-block;
      padding-top: 8px;
      padding-bottom: 8px;
    }

    .news-sidebar {
      margin-top: 2em;
    }

    #appointment-form {
      padding-top: 4em;
      padding-bottom: 4em;
    }

    .about-image-wrapper {
      min-height: 300px;
      margin-bottom: 30px;
    }

    .about-text-wrapper {
      padding-left: 0;
    }

    .doctor-profile {
      flex-direction: column;
      text-align: center;
    }

    footer {
      padding-top: 60px;
      padding-bottom: 0;
    }
    .footer-thumb {
      padding-bottom: 10px;
      width: 100%;
    }

    .border-top {
      text-align: center;
    }

    .copyright-text {
      margin-top: 10px;
    }

    .angle-up-btn {
      bottom: 10em;
    }

    .emergency-inner {
      flex-direction: column;
      gap: 5px;
    }

    .gallery-thumb img {
      height: 180px;
    }

    .nhis-badge {
      width: 90px;
      height: 90px;
    }

    .nhis-badge i {
      font-size: 35px;
    }

    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 25px;
      bottom: 20px;
      right: 20px;
    }
  }

  @media only screen and (max-width: 639px) {
    h1 {
      font-size: 3em;
      line-height: 1.2em;
    }
    h2 {
      font-size: 2.1em;
    }
    h4 {
      font-size: 1.4em;
    }

    #home h3 {
      font-size: 11px;
      letter-spacing: 1px;
    }

    .about-image-wrapper {
      min-height: 250px;
      margin-bottom: 20px;
    }

    .fellowships-section {
      padding: 15px;
    }

    .nhis-section,
    .testimonials-section,
    .gallery-section,
    .faq-section {
      padding: 50px 0;
    }

    .faq-question h4 {
      font-size: 0.95em;
    }

    .testimonial-card {
      padding: 25px 20px;
    }

    .testimonial-card p {
      font-size: 14px;
    }
  }

