
        /* Reset & Base */
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
        
        body, html {
          font-family: Arial, sans-serif;
          width: 100%;
          height: 100%;
          overflow-x: hidden;
        }
        
        .ti-rating-text, .ti-rating-text .nowrap,.ti-rating-text .nowrap a{color: #fff !important;}
        #kenytChatBubble.style1{left: 0 !important;}
        .divider {
          width: 100%;height:2px;background:linear-gradient(to right,transparent,#639e44,transparent);margin:6px 0;}
        .ti-widget a {pointer-events: auto !important;touch-action: manipulation;}
        
        /* Top Bar */
        .top-bar {
          background-color: #1e2a42;
          color: #fff;
          font-size: 14px;
          padding: 6px 0;
        }
        .top-bar a {
          color: #fff;
          text-decoration: none;
          margin-left: 8px;
        }
        /* Top bar actions + social icons */
        .top-bar .top-actions { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
        .top-bar .book-link {
          background: linear-gradient(90deg,#17a2b8 0%, #138496 100%);
          padding: 8px 14px;
          border-radius: 20px;
          color: #fff;
          font-weight: 600;
          font-size: 13px;
          transition: all 0.25s ease;
        }
        .top-bar .book-link:hover { opacity: 0.95; transform: translateY(-2px); }
        .top-bar .social-icons { display:flex; align-items:center; gap:6px; }
        .top-bar .social-icons a { color: #fff; font-size: 15px; display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,0.05); transition: background 0.18s, transform 0.15s; }
        .top-bar .social-icons a:hover { background: rgb(7, 159, 47); transform: translateY(-2px); }
        
        @media (max-width: 768px) {
          .top-bar { padding: 8px 0; font-size: 13px; }
          .top-bar .container { 
            flex-direction: column !important; /* Stack phone/email and buttons */
            gap: 8px;
          }
          .top-bar .top-actions { 
            width: 100%; 
            justify-content: center; /* Center the buttons on mobile */
          }
        }
        
        @media (max-width: 576px) {
          /* Instead of hiding text, we make the button slightly smaller but readable */
          .top-bar .book-text { display: inline; } 
          .top-bar .book-link { 
            padding: 6px 12px; 
            font-size: 11px; 
            white-space: nowrap; /* Prevents text from breaking into two lines */
          }
          .top-bar .social-icons a { width: 40px; height: 40px; }
        }
        
        @media (max-width: 400px) {
          /* On very small screens, shorten the text to save space */
          .top-bar .book-text { display: none; }
          .top-bar .book-link::after { content: "Book Now"; } /* Shorter alternative */
          .top-bar .top-actions { gap: 4px; }
        }
        
        /* Navbar */
        .navbar {
          background-color: #e0e2e0b5;
          position: sticky;
          top: 0;
          z-index: 1000;
          transition: top 0.3s ease;
        }
        .navbar.hide-navbar {
          top: -80px;
        }
        .navbar-nav .nav-link {
          font-weight: 600;
          color: #222 !important;
          margin-left: 20px;
          transition: color 0.3s ease;
        }
        .navbar-nav .nav-link:hover {
          color: #007bff !important;
        }
        .logo img {
          height: 60px;
        }
        
        /* Hamburger Menu */
        .navbar-toggler {
          border: none !important;
          padding: 6px 8px;
          display: none;
        }
        
        .navbar-toggler:focus {
          box-shadow: none !important;
          outline: none;
        }
        
        .navbar-toggler .hamburger {
          display: flex;
          flex-direction: column;
          gap: 5px;
          cursor: pointer;
        }

        /* Bars */
        .navbar-toggler .hamburger span {
          width: 24px;
          height: 3px;
          background: #222;
          border-radius: 2px;
          transition: all 0.35s ease;
          display: block;
          transform-origin: center;
        }
        
        /* ❌ Close icon */
        .navbar-toggler.active .hamburger span:nth-child(1) {
          transform: rotate(45deg) translate(6px, 6px);
        }
        
        .navbar-toggler.active .hamburger span:nth-child(2) {
          opacity: 0;
        }
        
        .navbar-toggler.active .hamburger span:nth-child(3) {
          transform: rotate(-45deg) translate(6px, -6px);
        }

        @media only screen and (max-width: 480px), (max-height: 480px) {
            #chatbox-container {
                height: 35% !important;
            }
            .top-bar .contact-info{background: #1593a7;
    padding: 6px 20px;
    border-radius: 6px;
    gap: 2px !important;
    text-align: center;
}
        }
        
        /* Mobile navbar menu */
        @media (max-width: 991px) {
          .navbar-toggler { display: flex; align-items: center; justify-content: center; }
          .navbar-collapse {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #e0e2e0b5;
            backdrop-filter: blur(8px);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
          }
          .navbar-collapse.show {
            max-height: 400px;
            overflow-y: auto;
          }
          .navbar-nav {
            flex-direction: column !important;
            padding: 12px 0;
            width: 100%;
          }
          .navbar-nav .nav-link {
            margin-left: 0 !important;
            padding: 12px 20px;
            border-bottom: 1px solid rgba(34, 34, 34, 0.08);
          }
          .navbar-nav .dropdown-item {
            padding: 10px 32px;
          }
        }
        
        /* Dropdown */
        .navbar .dropdown-menu {
          position: static;
          background: transparent;
          border: none;
          box-shadow: none;
          margin-top: 0;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.35s ease;
          width: 100%;
        }
        .navbar .dropdown-menu.show {
          max-height: 300px;
        }
        .navbar .dropdown-menu .dropdown-item {
          padding: 10px 32px;
          font-weight: 500;
          color: #222;
          display: block;
          width: 100%;
          border-bottom: 1px solid rgba(34, 34, 34, 0.08);
        }
        .navbar .dropdown-menu .dropdown-item:hover {
          background-color: #7fef71;
          color: #007bff;
        }
        
        /* Desktop dropdown styling */
        @media (min-width: 992px) {
          .navbar .dropdown-menu {
            position: absolute !important;
            background: #f0f0f0;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-height: none;
            overflow: visible;
            width: auto;
            left: 0;
            top: 100%;
          }
          .navbar .dropdown-menu .dropdown-item {
            padding: 8px 16px;
            border-bottom: none;
          }
        }
        
        /* Video Section */
        .video-section {
          position: relative;
          width: 100%;
          height: 100vh;
          overflow: hidden;
        }
        
        .video-container {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
        }
        
        .video-container video {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        
        .video-overlay {
          position: absolute; 
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); 
          z-index: 2;
          color: #130101;
          text-align: center;
          padding: 0 15px;
        }
        
        .video-overlay h1 {
          font-size: 3rem;
          font-weight: bold;
          text-shadow: 2px 2px 8px rgba(227, 249, 235, 0.6);
          margin-bottom: 10px; /* Reduce space below heading */
        }
        
        .video-overlay p {
          font-size: 1.3rem;
          text-shadow: 1px 1px 6px rgba(243, 237, 237, 0.6);
          margin-top: 0;       /* Remove extra space above paragraph */
        }
        
        .video-overlay > div {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 0; /* Remove default gap */
        }
        
        .video-overlay .btn {
          padding: 12px 28px;
          font-size: 1.2rem;
          border-radius: 30px;
          box-shadow: 0 4px 15px rgba(0,0,0,0.4);
          transition: all 0.3s ease;
        }
        
        .video-overlay .btn:hover {
          transform: scale(1.08);
        }
        /* Ensure modal is above backdrop */
        .modal {
          z-index: 2000 !important;
        }
        
        .modal-backdrop {
          z-index: 1990 !important;
        }
        
        /* Allow interaction inside modal */
        .modal-dialog,
        .modal-content {
          pointer-events: auto;
        }
        
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
          .navbar-nav {
            flex-direction: column !important;
            align-items: center;
            width: 100%;
          }
          .navbar-nav .nav-link {
            margin-left: 0;
            padding: 10px 0;
          }
          .nav-item.active{
             
              color: #edf1f1 !important;
          
          }
          .navbar .container {
            flex-direction: row;
            align-items: flex-start;
          }
          .logo img {
            height: 48px;
          }
          .top-bar .container {
            flex-direction: column;
            align-items: flex-start;
            font-size: 13px;
          }
          .top-bar a {
            margin-left: 0;
            margin-top: 4px;
            display: block;
          }
          .top-bar .contact-info {
                flex-direction: column !important;
                /* align-items: flex-start; */
                gap: 5px;
            }
        }
        
        @media (max-width: 900px) {
          .video-section {
            height: 320px;
          }
          .video-overlay h1 { font-size: 2em; }
          .video-overlay p { font-size: 1.1em; }
        }
        
        @media (max-width: 600px) {
          .video-section {
            height: 180px;
          }
          .video-overlay h1 { font-size: 1.2em; }
          .video-overlay p { font-size: 0.95em; }
          .video-overlay .btn {
            font-size: 0.95em;
            padding: 6px 16px;
          }
        }
        
        /* Smallest Devices */
        @media (max-width: 500px) {
          body { font-size: 0.95em; padding: 0 2vw; }
          h1 { font-size: 1.1em; }
          .btn { font-size: 0.95em; padding: 6px 12px; }
        }
        
        
        /* Navbar & Top Bar Responsive */
            @media (max-width: 992px) {
              .navbar-nav {
                flex-direction: column !important;
                /*align-items: flex-start !important;*/
                align-items:center;
                width: 100%;
              }
              .navbar-nav .nav-link {
                margin-left: 0;
                padding: 10px 10px;
              }
              .navbar .container {
                flex-direction: row;
                align-items: flex-start;
              }
               .nav-item.active{
              padding:4px 4px;
              color: #138496 !important;
             }
              .logo img {
                height: 48px;
              }
              .top-bar .container {
                flex-direction: column;
                align-items: flex-start;
                font-size: 13px;
              }
              .top-bar a {
                margin-left: 0;
                margin-top: 4px;
                display: block;
              }
            }
        
         /* about css */
         .about-section {
              display: grid;
              grid-template-columns: repeat(3, 1fr);
              gap: 28px;
              align-items: start;
              padding: 50px;
              margin: 10px 30px;
              background-color: #e8e6e6;
            }
        
            /* Card style for each about block */
            .about-card {
              background: #ffffff;
              padding: 22px;
              border-radius: 12px;
              box-shadow: 0 6px 18px rgba(0,0,0,0.06);
              min-height: 320px;
              display: flex;
              flex-direction: column;
              justify-content: space-between;
            }
            .about-card h1 {
              font-size: 1.8em;
              margin-bottom: 18px;
              color: #333333;
              background-color: silver;
              padding: 12px 14px;
              border-radius: 5px;
            }
            .about-card p {
              font-size: 1.05em;
              line-height: 1.6;
              color: #666666;
              margin-bottom: 14px;
            }
          .kiran {
               display: flex;
               flex-direction: row;
               justify-content: center;
               align-items: center;
               gap: 20px;
                }
                .kiran .left img {
                    border-radius: 50%;
                }
        
                /* Read More Button Styles */
                .read-more-btn {
                    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
                    color: white;
                    border: none;
                    padding: 10px 20px;
                    border-radius: 6px;
                    cursor: pointer;
                    font-size: 0.95em;
                    font-weight: 600;
                    margin-top: 0px;
                    transition: all 0.3s ease;
                    font-family: 'Quicksand', sans-serif;
                }
                .read-more-btn:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
                    color: white;
                    text-decoration: none;
                }
                .read-more-btn:focus {
                    outline: none;
                }
                .hidden-content {
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.4s ease;
                }
                .hidden-content.active {
                    max-height: 500px;
                }
                .hidden-content p {
                    font-size: 1.05em;
                    line-height: 1.6;
                    color: #666666;
                    margin-top: 15px;
                    margin-bottom: 0;
                }
        
                @media (max-width: 1100px) {
                  .about-section {
                    grid-template-columns: repeat(2, 1fr);
                    padding: 40px 20px;
                    gap: 20px;
                  }
                }
        
                @media (max-width: 900px) {
                  .right {
                        max-width: 90vw;
                        font-size: 1em;
                    }
                  .about-section {
                    grid-template-columns: 1fr;
                    padding: 30px 15px;
                    gap: 18px;
                  }
                  .about-card { min-height: auto; padding: 18px; }
                }
        
                @media (max-width: 768px) {
                  .about-section {
                    padding: 20px 10px;
                    gap: 14px;
                  }
                  .about-card { padding: 16px; }
                  .about-card h1 { font-size: 1.4em; padding: 8px 10px; }
                  .about-card p { font-size: 0.95em; }
                }
        
                @media (max-width: 600px) {
                  .about-section {
                    padding: 16px 8px;
                    gap: 12px;
                  }
                  .about-card { padding: 12px; }
                  .about-card h1 { font-size: 1.2em; padding: 6px 8px; }
                  .about-card p { font-size: 0.9em; }
                  .kiran { flex-direction: column; padding: 10px 0; }
                }
        
                @media (max-width: 400px) {
                  .about-section {
                    padding: 12px 6px;
                    gap: 10px;
                  }
                  .about-card { padding: 10px; }
                  .about-card h1 { font-size: 1.05em; padding: 4px 6px; }
                  .about-card p { font-size: 0.85em; }
                }
                @media (max-width: 700px) {
                    .right {
                        max-width: 98vw;
                        font-size: 0.98em;
                        padding: 0 6px;
                        word-break: break-word;
                        overflow-wrap: break-word;
                    }
                    .right h1 {
                        font-size: 1.1em;
                    }
                    .right p {
                        font-size: 0.97em;
                        line-height: 1.5;
                    }
                }
                @media (max-width: 500px) {
                    .right {
                        max-width: 98vw;
                        width: 98vw;
                        font-size: 0.85em;
                        padding: 0 1vw 0 1vw;
                        line-height: 1.2;
                    }
                    .right p {
                        font-size: 0.85em;
                        line-height: 1.2;
                        margin-bottom: 4px;
                        margin-top: 4px;
                        padding: 0;
                    }
                    .right h1 {
                        font-size: 0.98em;
                        margin-bottom: 6px;
                    }
                }
                /* Responsive Styles */
                @media (max-width: 1100px) {
                    .about-section {
                        flex-direction: column;
                        padding: 30px 10px;
                    }
                    .about-left, .about-right, .about {
                        max-width: 90%;
                        width: 100%;
                    }
                }
                @media (max-width: 800px) {
                    .about-section {
                        padding: 18px 2vw;
                        margin: 0;
                    }
                    .about-left h1, .about-right h1, .about h1 {
                        font-size: 1.3em;
                        padding: 8px 10px;
                    }
                    .about-left p, .about-right p, .about p {
                        font-size: 1em;
                    }
                }
                @media (max-width: 600px) {
                    .about-section {
                        flex-direction: column;
                        padding: 8px 0;
                    }
                    .about-left, .about-right, .about {
                        max-width: 100%;
                        margin: 8px 0;
                    }
                    .about-left h1, .about-right h1, .about h1 {
                        font-size: 1em;
                        padding: 6px 6px;
                    }
                    .about-left p, .about-right p, .about p {
                        font-size: 0.95em;
                    }
                    .kiran {
                        flex-direction: column;
                        padding: 10px 0;
                        gap: 10px;
                    }
                    .kiran .left img {
                        max-width: 120px;
                    }
                }
                @media (max-width: 400px) {
                    .about-left h1, .about-right h1, .about h1 {
                        font-size: 0.9em;
                        padding: 4px 2px;
                    }
                    .about-left p, .about-right p, .about p {
                        font-size: 0.85em;
                    }
                }
                /* LOCATIONS PAGE ONLY */
                .locations-page {
                  padding: 90px 20px;
                  background: linear-gradient(135deg, #0a2540, #0f766e);
                  color: #fff;
                }
                
                .locations-page h1,
                .locations-page h2 {
                  text-align: center;
                  font-weight: 700;
                }
                
                .locations-page h1 {
                  font-size: 38px;
                }
                
                .locations-page .section-title {
                  margin-top: 80px;
                  font-size: 32px;
                  color:antiquewhite;
                }
                
                .locations-page .subtitle {
                  text-align: center;
                  margin-top: 12px;
                  color: #d1fae5;
                }
        
                /* LOCATION CARDS */
                .location-cards {
                  display: flex;
                  justify-content: center;
                  gap: 30px;
                  flex-wrap: wrap;
                  margin-top: 60px;
                }
                
                .location-card {
                  width: 360px;
                  background: rgba(255,255,255,0.12);
                  backdrop-filter: blur(12px);
                  padding: 30px;
                  border-radius: 18px;
                  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
                  transition: transform 0.4s ease;
                }
                .location-card p{
                  color: #ecfeff;
                  margin:6px 0;
                  font-size: 20px;
                }
                .location-card:hover {
                  transform: translateY(-10px) scale(1.04);
                }
                .location-card h3 {
                  margin-bottom: 10px;
                  color: #22c55e;
                }
                .location-card p {
                  margin: 6px 0;
                }
                .location-card a {
                  display: inline-block;
                  margin-top: 14px;
                  padding: 10px 20px;
                  border-radius: 30px;
                  background: linear-gradient(135deg, #22c55e, #3b82f6);
                  color: #fff;
                  text-decoration: none;
                  font-weight: 600;
                  font-size: 20px;
                }
                
                /* MAPS */
                .maps {
                  display: flex;
                  justify-content: center;
                  gap: 30px;
                  flex-wrap: wrap;
                  margin-top: 50px;
                }
        
                .map-box {
                  width: 520px;
                  background: rgba(244, 233, 233, 0.916);
                  padding: 18px;
                  border-radius: 20px;
                }
                
                .map-box iframe {
                  width: 100%;
                  height: 320px;
                  border: none;
                  border-radius: 16px;
                }
                
                /* GOOGLE REVIEWS */
                .reviews {
                  display: flex;
                  justify-content: center;
                  gap: 30px;
                  flex-wrap: wrap;
                  margin-top: 60px;
                }
                
                .review-card {
                  width: 340px;
                  background: rgba(255, 251, 251, 0.12);
                  backdrop-filter: blur(12px);
                  padding: 28px;
                  border-radius: 18px;
                  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
                  transition: transform 0.4s ease;
                }
                .review-card:hover {
                  transform: translateY(-10px);
                }
                .review-card .stars {
                  color: #facc15;
                  font-size: 18px;
                  margin-bottom: 10px;
                }
                .review-card p {
                  font-style: italic;
                  color: #ecfeff;
                  margin-bottom: 12px;
                }
                .review-card h4 {
                  color: #22c55e;
                  margin-bottom: 4px;
                }
                .review-card span {
                  font-size: 13px;
                  color: #bbf7d0;
                }
        
                /* Physiotherapy */
                #physioViewport {
                    overflow-x: hidden;
                    scroll-behavior: smooth;
                    cursor: grab;
                }
                #physioViewport.dragging {
                    cursor: grabbing;
                    scroll-behavior: auto !important;
                }
                .physio-viewport {
                    width: 100%;
                    overflow: hidden;
                    position: relative;
                    padding: 20px 0;
                }
                .physio-track {
                    display: flex;
                    gap: 20px; /* Space between cards */
                    width: max-content; /* Critical: Fits all cards in one line */
                    animation: scrollContinuous 40s linear infinite;
                }
                .physio-track:hover {
                    animation-play-state: paused;
                }
        .physio-card {
            width: 300px; /* Fixed width */
            flex-shrink: 0;
        }
               .physio-card .card {
            border-radius: 15px;
            /* border: 1px solid #efefef; */
        }
        
        .physio-card .card-text {
            font-size: 0.9rem;
            line-height: 1.5;
            /* Text will be fully shown, card will grow vertically if needed */
        }
        /* physio read more button */
        /* Container must be relative */
        .physio-card .card {
          position: relative;
          overflow: hidden;
        }
        
        /* Read More Button */
        .read-btn {
          position: absolute !important;
          bottom: 15px;
          right: 15px;
          
        }
        
        /* Hover Animation */
        .read-btn:hover {
          transform: translateY(-3px);
          opacity: 1;
          box-shadow: 0 6px 12px rgba(0,0,0,0.3);
          background: linear-gradient(135deg, #1e3c56, #3b6d95);
        }
        
        /* Prevent card body text from being blocked */
        .physio-card .card-body {
          padding-bottom: 50px !important; /* space for button */
        }
        
        
        /* Keyframes: We move by 50% because we will clone the set once */
        @keyframes scrollContinuous {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 576px) {
            .physio-card {
                width: 260px;
            }
        }
        
        /* Tablet & mobile physio cards */
        @media (max-width: 768px) {
          .physio-card {
            width: 280px;
          }
        }
        
        @media (max-width: 480px) {
          .physio-card {
            width: 240px;
          }
        }
            /* blog */
             @media (max-width: 768px) {
              .logo {
                width: 80px;
                top: 10px;
                left: 15px;
              }
            }
        
            @media (max-width: 576px) {
              .logo {
                width: 60px;
                top: 8px;
                left: 10px;
              }
            }
        
            .card {
              border-radius: 12px;
              overflow: hidden;
              border: 1px solid #eee;
              transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s cubic-bezier(.2,.8,.2,1);
              will-change: transform, box-shadow;
              transform: translateZ(0);
              -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
            }
            .card:hover {
              transform: translateY(-8px);
              box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
            }
            .card img {
              height: 200px;
              object-fit: cover;
              transition: transform 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.3s;
              -webkit-backface-visibility: hidden;
            }
        
            .carousel-control-prev, .carousel-control-next {
              width: 5%;
            }
            .carousel-control-prev-icon, .carousel-control-next-icon {
              background-color: #444;
              border-radius: 50%;
              padding: 12px;
            }
        
           /* equipments css */
        /* Unique Namespace for Equipment Section */
        .equipment-scroll-wrapper {
            width: 100%;
            overflow: hidden;
            background-color: #ffffff;
        }
        .equipment-viewport {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
            display: flex;
        }
        
        /* The infinite track */
        .equipment-track {
            display: flex;
            gap: 25px;
            width: max-content;
            animation: equipScrollLoop 40s linear infinite;
        }
        
        /* Pause when user hovers to read details */
        .equipment-track:hover {
            animation-play-state: paused;
        }
        
        .equip-card-item {
            width: 320px; /* Fixed width for symmetrical scrolling */
            flex-shrink: 0;
        }
        
        .equip-card-item .card {
            border-radius: 15px;
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
        }
        
        .equip-card-item .card-img-top {
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
        
        .equip-card-item .card-body {
            padding: 1.25rem;
            /* Cards will grow vertically to fit text; no data will be cut */
        }
        
        .equip-card-item .card-title {
            font-size: 1.1rem;
            min-height: 2.8rem;
            margin-bottom: 10px;
        }
        
        .equip-card-item .card-text {
            font-size: 0.88rem;
            line-height: 1.5;
            color: #444;
        }
        
        /* equipments css */
        /* Unique Namespace for Equipment Section */
        .blog-scroll-wrapper {
            width: 100%;
            overflow: hidden;
            background-color: #ffffff;
        }
        
        .blog-viewport {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
            display: flex;
        }
        
        /* The infinite track */
        .blog-track {
            display: flex;
            gap: 25px;
            width: max-content;
            animation: blogScrollLoop 40s linear infinite;
        }
        
        /* Pause when user hovers to read details */
        .blog-track:hover {
            animation-play-state: paused;
        }
        
        .blog-card-item {
            width: 320px; /* Fixed width for symmetrical scrolling */
            flex-shrink: 0;
        }
        
        .blog-card-item .card {
            border-radius: 15px;
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card-item .card-img-top {
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
        
        .blog-card-item .card-body {
            padding: 1.25rem;
            /* Cards will grow vertically to fit text; no data will be cut */
        }
        
        .blog-card-item .card-title {
            font-size: 1.1rem;
            min-height: 2.8rem;
            margin-bottom: 10px;
        }
        
        .blog-card-item .card-text {
            font-size: 0.88rem;
            line-height: 1.5;
            color: #444;
        }
        
        /* Smooth loop animation: Moves by 50% because we clone the set */
        @keyframes blgScrollLoop {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        /* Smooth loop animation: Moves by 50% because we clone the set */
        @keyframes equipScrollLoop {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* Mobile Adjustments */
        @media (max-width: 576px) {
            .equip-card-item {
                width: 270px;
            }
            .equip-card-item .card-img-top {
                height: 160px;
            }
        }
        
        @media (max-width: 768px) {
          .equip-card-item {
            width: 290px;
          }
          .equip-card-item .card-img-top {
            height: 180px;
          }
        }
        
        @media (max-width: 480px) {
          .equip-card-item {
            width: 240px;
            gap: 18px;
          }
          .equip-card-item .card-img-top {
            height: 140px;
          }
        }
            /* FOOTER */
            .footer1 {
              background-color: #1e2a42;
              color: white;
            }
            .footer1 ul {
              list-style: none;
              padding-left: 0;
            }
            .footer1 a {
              text-decoration: none;
              color: white;
            }
            .footer1 a:hover {
              color: #ffc107;
            }
        
            /* Adding CSS Style for Hyderbad and karimanagar */
            /* Contact Section Styling */
        section.container {
          background: #f9fafb;
          border-radius: 15px;
          padding:  25px;
          box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        
        /* Headings */
        section.container h4 {
          font-weight: 700;
          font-size: 1.6rem;
          letter-spacing: 1px;
          color: #f2f3f5;
          margin-bottom: 20px;
          position: relative;
        }
        
        section.container h4::after {
          content: "";
          width: 60px;
          height: 3px;
          background: #0d6efd;
          display: block;
          margin: 8px auto 0;
          border-radius: 2px;
        }
        
        /* Contact Info Boxes */
        section.container .border {
          border-radius: 12px;
          background: #ffffff;
          border: 1px solid #e6e6e6;
          transition: all 0.3s ease;
        }
        
        section.container .border:hover {
          box-shadow: 0 4px 12px rgba(0,0,0,0.12);
          transform: translateY(-3px);
          border-color: #0d6efd;
        }
        
        /* Text + Icons */
        section.container p {
          margin: 0;
          font-size: 1rem;
          color: #333;
        }
        
        section.container i {
          color: rgb(4, 4, 85);
          font-size: 1.1rem;
        }
        
        /* Links */
        section.container a {
          text-decoration: none;
          font-weight: 500;
          transition: color 0.3s ease;
        }
        
        section.container a:hover {
          color: #0a58ca;
        }
        
        /* Maps */
        section.container iframe {
          border-radius: 12px;
          box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        /*  CSS style for Contact Form */
        /* Contact Form Section */
        section.container h3 {
          font-family: "Poppins", sans-serif;
          font-weight: 600;
          color: #0d1b3d; /* Brand Dark Blue */
          font-style: italic;
          text-transform: capitalize;
          margin-bottom: 25px;
          position: relative;
        }
        
        section.container h3::after {
          content: "";
          display: block;
          width: 80px;
          height: 3px;
          background: #5ca047;  
          margin: 10px auto 0;
          border-radius: 2px;
        }
        
        /* Card Styling */
        .card {
          border: none;
          border-radius: 15px;
          background: #ffffff;
          box-shadow: 0 6px 20px rgba(0,0,0,0.12);
          transition: all 0.3s ease;
        }
        
        .card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        /* Labels */
        .form-label {
          font-weight: 500;
          color: #0d1b3d;
          font-size: 0.95rem;
        }
        
        /* Inputs + Textarea */
        .form-control {
          border: 1px solid #d1d5db;
          border-radius: 10px;
          padding: 10px 14px;
          font-size: 0.95rem;
          transition: all 0.3s ease;
        }
        
        .form-control:focus {
          border-color: #5ca047;
          box-shadow: 0 0 6px rgba(92,160,71,0.4);
        }
        
        /* Submit Button */
        .btn-success {
          background: #5ca047; /* Brand Green */
          border: none;
          border-radius: 10px;
          font-weight: 600;
          font-size: 1rem;
          transition: all 0.3s ease;
        }
        
        .btn-success:hover {
          background: #4a8d3a;
          transform: translateY(-2px);
          box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        /* Media Queries */
        @media (max-width: 767px) {
          section.container iframe {
            height: 250px; /* smaller maps for mobile */
          }
        
          .btn-success.w-50 {
            width: 100%; /* button full width on mobile */
          }
        }
        
        /* Modal responsive */
        @media (max-width: 576px) {
          .modal-dialog {
            margin: 10px auto;
          }
          .modal-content {
            border-radius: 12px;
          }
          .modal-body {
            padding: 16px;
          }
          .form-label { font-size: 0.9rem; }
          .form-control { font-size: 0.95rem; padding: 8px 10px; }
          .modal-header h5 { font-size: 1.1rem; }
        }
        
        @media (max-width: 360px) {
          .modal-dialog { margin: 8px auto; }
          .modal-body { padding: 12px; }
          .form-label { font-size: 0.85rem; }
          .form-control { font-size: 0.9rem; padding: 6px 8px; }
        }
        
                /* THERAPISTS */
                :root {
              --brand-green: #5BA646;
              --brand-navy: #2A3142;
              --brand-light: #F5F6F8;
            }
        
            h2 {
              text-align: center;
              margin-bottom: 30px;
              color: var(--brand-navy);
            }
        
            .swiper {
              width: 100%;
              /* padding-bottom: 60px;  */
              position: relative;
            }
        
            .swiper-slide {
              display: flex;
              justify-content: center;
              cursor: grab; 
            }
        
            .ThumbnailWrapper {
              text-align: center;
              background: #fff;
              padding: 20px;
              width:500px;
              border-radius: 20px;
              box-shadow: 0 4px 12px rgba(42, 49, 66, 0.12);
              transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s cubic-bezier(.2,.8,.2,1);
              will-change: transform, box-shadow;
            }
        
            @media (max-width: 1024px) {
              .ThumbnailWrapper {
                width: 420px;
                padding: 18px;
              }
             .navbar-nav .nav-item.active{
                  color: #138496 !important;
            font-weight: 700;
            background: linear-gradient(90deg, #17a2b8 0%, #138496 100%);
            border-radius: 25px;
            padding-right: 20px;
            }
          }
        
            @media (max-width: 768px) {
              .ThumbnailWrapper {
                width: 360px;
                padding: 16px;
              }
              .imgThumbnail img {
                height: 200px;
                width: 200px;
              }
            }
        
            @media (max-width: 576px) {
              .ThumbnailWrapper {
                width: 300px;
                padding: 14px;
              }
              .imgThumbnail img {
                height: 160px;
                width: 160px;
                margin: 0 auto 8px;
              }
              .h5 { font-size: 0.95rem; }
            }
        
            @media (max-width: 480px) {
              .ThumbnailWrapper {
                width: 280px;
                padding: 12px;
              }
              .imgThumbnail img {
                height: 140px;
                width: 140px;
              }
              .h5 { font-size: 0.9rem; margin: 8px 0 3px; }
            }
        
            @media (max-width: 360px) {
              .ThumbnailWrapper {
                width: 240px;
                padding: 10px;
              }
              .imgThumbnail img {
                height: 120px;
                width: 120px;
                margin: 0 auto 6px;
              }
            }
        
            .ThumbnailWrapper:hover {
              transform: translateY(-8px);
              box-shadow: 0 12px 28px rgba(91, 166, 70, 0.22);
            }
           
        
            .imgThumbnail img {
              height: 240px;
              width: 240px;
              object-fit: cover;
              border-radius: 20px;
              display: block;
              margin: 0 auto 10px;
              transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
              
            }
        
            .h5 {
              margin: 10px 0 5px;
              font-size: 1.1rem;
              font-weight: bold;
              color: var(--brand-navy);
              transition: color 0.3s ease;
            }
        
            .ThumbnailWrapper:hover .h5 {
              color: var(--brand-green);
            }
        
            .swiper-pagination-bullet {
              background: var(--brand-navy);
              opacity: 0.5;
            }
        
            .swiper-pagination-bullet-active {
              background: var(--brand-green);
              opacity: 1;
            }
            
        
            /* Arrow buttons */
            .swiper-button-next,
            .swiper-button-prev {
              color: var(--brand-green);
              transition: color 0.3s;
            }
        
            .swiper-button-next:hover,
            .swiper-button-prev:hover {
              color: var(--brand-navy);
            }
        
            .read-more {
              display: inline-block;
              margin-top: 12px;
              padding: 8px 16px;
              background: var(--brand-green);
              color: #fff;
              font-size: 0.9rem;
              font-weight: 600;
              border-radius: 30px;
              text-decoration: none;
              transition: background 0.3s, transform 0.3s;
              box-shadow: 0 4px 10px rgba(91, 166, 70, 0.2);
            }
        
            .read-more:hover {
              background: var(--brand-navy);
              transform: translateY(-2px);
              box-shadow: 0 6px 14px rgba(42, 49, 66, 0.25);
            }
        
        /* gallery */
        /* Container to keep everything contained */
        .hosp-gal-wrapper {
            width: 100%;
            overflow: hidden;
            background-color: #f8f9fa; /* Light background to distinguish section */
        }
        
        /* The viewing window */
        .hosp-gal-viewport {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
        }
        
        /* The moving track */
        .hosp-gal-track {
            display: flex;
            /* (Width of item + margin) * total items (18) */
            width: calc(300px * 18); 
            animation: hospScrollLoop 30s linear infinite;
        }
        
        /* The Pause on Hover Logic */
        .hosp-gal-viewport:hover .hosp-gal-track {
            animation-play-state: paused;
        }
        
        /* Individual Item Styling */
        .hosp-gal-item {
            width: 300px; /* Fixed width for calculation */
            height: 220px;
            padding: 0 15px; /* Spacing between images */
            flex-shrink: 0;
        }
        
        .hosp-gal-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        /* Zoom effect on specific image hover */
        .hosp-gal-item img:hover {
          transform: scale(1.05) translateZ(0);
        }
        
        /* Polished gallery & card hover animations */
        .gallery-scrolling-content .gallery-image,
        .hosp-gal-item,
        .equip-card-item,
        .physio-card,
        .ThumbnailWrapper,
        .card {
          position: relative;
          overflow: hidden;
          border-radius: 18px;
        }
        
        .gallery-scrolling-content .gallery-image img,
        .hosp-gal-item img,
        .ThumbnailWrapper img,
        .equip-card-item .card-img-top,
        .physio-card .card img,
        .card img {
          transition: transform 420ms cubic-bezier(.2,.8,.2,1), object-position 480ms ease, filter 360ms ease;
          will-change: transform, object-position, filter;
          backface-visibility: hidden;
          transform-origin: center center;
        }
        
        .gallery-scrolling-content .gallery-image::after,
        .ThumbnailWrapper::after,
        .card::after {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          height: 36%;
          pointer-events: none;
          background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.06) 100%);
          opacity: 0;
          transition: opacity 280ms ease;
        }
        
        .gallery-scrolling-content .gallery-image:hover img,
        .hosp-gal-item:hover img,
        .ThumbnailWrapper:hover img,
        .equip-card-item:hover .card-img-top,
        .physio-card:hover .card img,
        .card:hover img {
          transform: scale(1.06) translateY(-6px);
          object-position: 50% 40%;
          filter: brightness(1.02) saturate(1.03);
        
        }
        
        .gallery-scrolling-content .gallery-image:hover::after,
        .ThumbnailWrapper:hover::after,
        .card:hover::after {
          opacity: 1;
        }
        
        /* Respect reduced motion */
        @media (prefers-reduced-motion: reduce) {
          .gallery-scrolling-content .gallery-image img,
          .hosp-gal-item img,
          .ThumbnailWrapper img,
          .equip-card-item .card-img-top,
          .physio-card .card img,
          .card img {
            transition: none !important;
          }
          .physio-track, .equipment-track, .hosp-gal-track, .chiro-track {
            animation-play-state: paused !important;
          }
        }
        
        /* Keyframes - Must match the width of 9 items */
        @keyframes hospScrollLoop {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-300px * 9)); }
        }
        
        @keyframes blogScrollLoop {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-320px * 9)); }
        }
        
        /* Responsive Overrides */
        @media (max-width: 1024px) {
            .hosp-gal-item {
                width: 280px;
                height: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .hosp-gal-item {
                width: 240px;
                height: 180px;
            }
        }
        
        @media (max-width: 576px) {
            .hosp-gal-item {
                width: 200px;
                height: 150px;
                padding: 0 10px;
            }
            @keyframes hospScrollLoop {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-200px * 9)); }
            }
        }
        
        @media (max-width: 400px) {
            .hosp-gal-item {
                width: 160px;
                height: 120px;
                padding: 0 8px;
            }
            @keyframes hospScrollLoop {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-160px * 9)); }
            }
        }
        .top-arrow{
          position: fixed;
          bottom: 20px;
          right: 20px;
          background-color: #007bff;
          color: white;
          padding: 11px 11px; width: 45px;height:45px;
          border-radius: 50%;
          cursor: pointer;
          box-shadow: 0 4px 8px rgba(0,0,0,0.2);
          z-index: 1000;
        }
        
        /* Sticky Actions (WhatsApp & Book Appointment) */
        .sticky-actions{
          position: fixed;
          right: 25px;
          bottom: 100px; /* sits above the top-arrow */
          display: flex;
          flex-direction: column;
          gap: 8px;
          z-index: 1200;
        }
        .sticky-actions .sticky{
          width: 45px;
          height: 45px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #fff;
          text-decoration: none;
          box-shadow: 0 6px 16px rgba(0,0,0,0.12);
          transition: transform 0.15s ease, box-shadow 0.15s ease;
        }
        .sticky-actions .sticky:hover{ transform: translateY(-4px); box-shadow: 0 10px 22px rgba(0,0,0,0.18); }
        .sticky-actions .whatsapp{ background: #25d366; }
        .sticky-actions .Facebook{ background: #1877F2; }
        .sticky-actions .Instagram{ background: #E4405F; }
        .sticky-actions .Youtube{ background: #FF0000; }
        .sticky-actions .linkedin{ background: #0a66c2; }
        /*.sticky-actions .book{ background: linear-gradient(135deg,#17a2b8 0%, #138496 100%); }*/
        .sticky-actions .sticky i{ font-size: 21px; }
        
            /* ADVANCED POPUP OVERLAY */
        .popup-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0,0,0,0.45);
          backdrop-filter: blur(4px); /* background blur */
          display: none;
          align-items: center;
          justify-content: center;
          z-index: 1000;
          animation: fadeIn 0.3s ease forwards;
        }
        
        /* POPUP BOX - ADVANCED UI */
        .popup-box {
          width: 380px;
           min-height: 290px;
          background: #ffffff;
          padding: 25px;
          border-radius: 18px;
          box-shadow: 0 10px 30px rgba(0,0,0,0.3);
          animation: slideUp 0.35s ease forwards;
          transform: translateY(40px);
          opacity: 0;
          position: relative;
          
        }
        /* Fullscreen overlay */
        .wa-overlay {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0,0,0,0.6);
          justify-content: center;
          align-items: center;
          z-index: 9999;
        }
        
        /* Popup box */
        .wa-box {
          background: #fff;
          padding: 20px;
          width: 300px;
          border-radius: 12px;
          text-align: center;
        }
        
        /* Images */
        .wa-content img {
          width: 120px;
          margin: 10px;
          border-radius: 10px;
          cursor: pointer;
        }
        
        
        /* Slide up animation */
        @keyframes slideUp {
          to {
            transform: translateY(0);
            opacity: 1;
          }
        }
        
        /* Fade-in overlay */
        @keyframes fadeIn {
          from { opacity: 0; }
          to { opacity: 1; }
        }
        
        .popup-title {
          text-align: center;
          font-size: 22px;
          font-weight: 700;
          margin-bottom: 15px;
        }
        
        /* CONTENT IMAGES */
        .popup-content img {
          width: 90px;
          margin: 12px;
          transition: transform 0.25s;
        }
        
        .popup-content img:hover {
          transform: scale(1.15);
        }
        
        /* ADVANCED CLOSE BUTTON */
        .close-btn {
          position: absolute;
          bottom: 18px;
          right: 20px;
          padding: 8px 20px;
          background: #ff4b4b;
          border: none;
          color: white;
          font-size: 14px;
          border-radius: 8px;
          cursor: pointer;
          transition: background 0.25s, transform 0.25s;
        }
        
        .close-btn:hover {
          background: #e00000;
          transform: scale(1.07);
        }
        
        .popup-box::before {
          content: "";
          position: absolute;
          top: -10px;
          left: 40%;
          width: 70px;
          height: 5px;
          background: #ddd;
          border-radius: 10px;
        }
        
        /* Responsive sticky buttons */
        @media (max-width: 768px) {
          .sticky-actions {
            /* bottom: 80px; */
            gap: 10px;
          }
          .sticky-actions .sticky {
            width: 52px;
            height: 52px;
          }
          .sticky-actions .sticky i { font-size: 20px; }
        }
        
        @media (max-width: 576px) {
          .sticky-actions {
            bottom: 170px;
            right: 16px;
            gap: 8px;
          }
        
          .sticky-actions .sticky {
            width: 48px;
            height: 48px;
          }
          .sticky-actions .sticky i { font-size: 18px; }
        }
        
        @media (max-width: 360px) {
          .sticky-actions {
            bottom: 160px;
            right: 12px;
          }
          .sticky-actions .sticky {
            width: 44px;
            height: 44px;
          }
          .sticky-actions .sticky i { font-size: 16px; }
        }
        
        /* When a modal is open, make sticky action buttons non-interactive so
           modal inputs can receive focus/clicks (Bootstrap adds `modal-open` to body) */
        body.modal-open .sticky-actions {
          pointer-events: none;
          opacity: 0.6;
        }
        
        /* Responsive top arrow */
        @media (max-width: 576px) {
          .top-arrow {
            bottom: 20px;
            right: 16px;
            width: 44px;
            height: 44px;
            padding: 8px 12px;
            font-size: 18px;
          }
        }
        
        @media (max-width: 360px) {
          .top-arrow {
            bottom: 10px;
            right: 12px;
            width: 40px;
            height: 40px;
            padding: 6px 10px;
            font-size: 16px;
          }
        }
        
        /* Chiropractic */
        
        .chiro-scroll-section {
            width: 100%;
            overflow: hidden;
            background: #fff;
        }
        
        .chiro-viewport {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
            /* Optional: Adds a fade effect to the edges */
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }
        
        .chiro-track {
            display: flex;
            gap: 20px;
            width: max-content; /* Critical for infinite logic */
            animation: chiroScrollLoop 40s linear infinite;
        }
        
        /* Stops the animation when the user wants to read a card */
        .chiro-track:hover {
            animation-play-state: paused;
        }
        
        .chiro-card {
            width: 320px; /* Consistent width */
            flex-shrink: 0;
        }
        
        .chiro-card .card {
            border-radius: 15px;
            border: 1px solid #eee;
            height: 100%;
        }
        
        .chiro-card .card-body {
            padding: 1.25rem;
        }
        
        .chiro-card .card-text {
            font-size: 0.9rem;
            line-height: 1.6;
            /* font-weight: 600;  */
            color: #444;
        }
        
        /* The Keyframe: We move -50% because we clone the set once */
        @keyframes chiroScrollLoop {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* Mobile Adjustments */
        @media (max-width: 1024px) {
            .chiro-card {
                width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .chiro-card {
                width: 280px;
            }
        }
        
        @media (max-width: 576px) {
            .chiro-card {
                width: 240px;
            }
            .chiro-card .card-body {
              padding: 1rem;
            }
            .chiro-card .card-text {
              font-size: 0.85rem;
            }
        }
        
        @media (max-width: 400px) {
            .chiro-card {
                width: 200px;
            }
        }
        /* Location Popup2 */
        body{
            font-family: Arial, sans-serif;
            margin:0;
        }
        
        /* NAVBAR */
        .navbar{
            padding:15px 30px;
            background:#fff;
            box-shadow:0 2px 5px rgba(0,0,0,0.1);
            text-align:right;
        }
        
        .location-btn{
             padding-top: 8px;
             margin-left: 8px;
            font-size:22px;
            color:#2f7d6b;
            cursor:pointer;
        }
        
        /* OVERLAY2 */
        .overlay2{
            display:none;
            position:fixed;
            top:0; left:0;
            width:100%;
            height:100%;
            background:rgba(0,0,0,0.4);
            z-index:99;
        }
        
        /* POPUP2 */
        .popup2{
            display:none;
            position:fixed;
            top:50%;
            left:50%;
            transform:translate(-50%,-50%);
            background:#fff;
            width:90%;
            height:60%;
            max-width:500px;
            padding:15px;
            border-radius:12px;
            z-index:100;
            /* display: flex; */
          flex-direction: column;
          align-items: center;
        }
        
        .popup2 h2{
            text-align:center;
            color:#2f7d6b;
            margin-bottom:25px;
        }
        
        /* CITIES */
        .city-container{
            display:flex;
            justify-content:center;
              gap: 25px; 
        }
        
        .city{
            text-align:center;
          
            cursor:pointer;
            
        }
        
        .city-circle{
            width:80px;
            height:80px;
            border:2px solid #ccc;
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
        
            font-size:32px;
            color:#777;
            transition:0.3s;
        }
        
        .city:hover .city-circle{
            border-color:#2f7d6b;
            color:#2f7d6b;
            transform:scale(1.05);
        }
        
        .city-name{
            margin-top:10px;
            font-size:15px;
        }
        .top-bar .contact-info {
            display: flex;
            flex-direction: row;
            gap: 20px;
        }
        .top-bar .contact-info .item {
            display: flex;
            align-items: center;   
        }
        .es-widget-title-container{display: none;}
 