* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}
body{
  overflow-x: hidden;
}
body.sticky-padding {
  padding-top: 90px; /* match navbar height */
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #0e2a57;
  border-radius: 3px;
}
.top-container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}
.top-bar {
  background: #f8f8f8;
  padding: 12px 0;
}
.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img { height: 60px; }
.top-info {
  display: flex;
  gap: 40px;
}
.top-info p{
  font-size: 14px;
  font-weight: 600;
  color: #0e2a57;
  text-align: center;
}
.top-info a{
  text-decoration: none;
  color: #0e2a57;
  font-size: 20px;
  font-weight: 700;
}
.navbar {
  padding: 0px 15px;
  background: #ffffff;
  position: relative;
  width: 100%;
  z-index: 999;
  border-top: 1px solid #eee;
  transition: all 0.35s ease;
}
.navbar.sticky {
  position: fixed;
  padding: 5px 0;
  top: 0;
  left: 0;
  animation: slideDown 0.4s ease forwards;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links > a,
.nav-links > div > a {
  position: relative;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 20px 0;
  display: inline-block;
}
.nav-links > a::after,
.nav-links > div > a::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0e2a57;
  transition: width 0.3s ease;
}
.navbar.sticky .nav-links > a,
.navbar.sticky .nav-links > div > a {
  padding: 15px 0;
}
.nav-links > a:hover::after,
.nav-links > div > a:hover::after {
  width: 100%;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 6px;
  padding: 10px 0;
  display: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}
.dropdown-menu a:hover {
  background: #f5f7fa;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  max-width: 1400px;
  background: #ffffff;
  padding: 55px 70px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 999;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #0b1d3a, #0e2a57);
}
.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-column {
  position: relative;
  padding-right: 30px;
}
.mega-column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  height: 85%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.06),
    transparent
  );
}
.mega-column h4 {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0e2a57;
  margin-bottom: 20px;
  font-weight: 700;
}
.mega-column a {
  display: block;
  font-size: 14px;
  color: #4a4a4a;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  position: relative;
}
.mega-column a:hover {
  color: #0e2a57;
  transform: translateX(6px);
}
.btn-appointment {
  background: linear-gradient(90deg, #0b1d3a, #0e2a57);
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn-appointment:hover {
  background: linear-gradient(90deg, #0e2a57, #163d7a);
}
.btn-appointment {
  background: linear-gradient(90deg, #0b1d3a, #0e2a57);
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn-appointment:hover {
  background: linear-gradient(90deg, #0e2a57, #163d7a);
}

.hero-section {
  position: relative;
  height: 550px;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  background: #000;
}
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  transition: opacity 1s ease, filter 0.9s ease;
}
.hero-slide.active {
  pointer-events: auto;
  opacity: 1;
  filter: blur(0);
  z-index: 2;
}
.hero-slide img {
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease-in-out;
}
.hero-slide.active img {
  transform: scale(1.08);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}
.hero-arrow:hover {
  background: rgba(14, 42, 87, 0.9);
}
.hero-arrow.left { left: 20px; }
.hero-arrow.right { right: 20px; }

.review-section {
  padding: 80px 0;
  background: #f8fafc;
}
.review-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 20px;
  background: #fff; /* important so shadow is visible */
  border-radius: 15px; /* optional for modern look */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.review-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.review-track {
  position: relative;
  min-height: 220px;
}
.review-slide {
  display: none;
  width: 100%;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(15px) scale(0.98);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}
.review-slide.active {
  display: block;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
.review-text {
  font-size: 20px;
  line-height: 1.7;
  color: #2b3a4b;
  font-weight: 500;
}
.review-stars ul, .review-stars ul li{
    display: inline-block;
}
.review-stars ul li i {
  color: #f5b301;
  font-size: 18px;
  margin-top: 20px;
}
.review-name {
  font-weight: 600;
  margin-top: 5px;
  color: #0e2a57;
}
.review-static {
  width: 260px;
  text-align: center;
  border-left: 1px solid #e4e8ee;
  padding-left: 40px;
}
.review-static img {
  max-width: 180px;
  transition: transform 0.3s ease;
}
.review-static img:hover {
  transform: scale(1.05);
}

.award-section {
  padding: 80px 5%;
  background: #f9f9f9;
  overflow: hidden;
}
.award-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.award-left img,
.award-right img {
  width: 100%;
  height: auto;
  transition: transform 6s ease;
}
.award-right img {
  transform: scale(1);
}
.award-section:hover .award-right img {
  transform: scale(1.05);
}
.award-left img:hover,
.award-right img:hover {
  transform: scale(1.02);
}
.award-section {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease;
}
.award-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.award-left {
  position: relative;
  overflow: hidden;
}
.award-left::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  transition: 1.5s;
}
.award-left:hover::after {
  left: 150%;
}
.award-content {
  text-align: center;
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.award-content h2 {
  font-size: 36px;
  font-weight: 600;
  color: #0b1d3a;
  margin-bottom: 20px;
  line-height: 1.3;
}
.award-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
}
.award-cta {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(90deg, #0b1d3a, #0e2a57);
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(11, 29, 58, 0.2);
}
.award-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 29, 58, 0.35);
}
.award-content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}
.award-section.visible .award-content {
  opacity: 1;
  transform: translateY(0);
}

.conditions-section {
  padding: 100px 5%;
  background: #f8fbff;
  font-family: 'Segoe UI', sans-serif;
}
.conditions-container {
  max-width: 1200px;
  margin: auto;
}
.conditions-container .section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  color: #0b1d3a;
  margin-bottom: 30px;
  position: relative;
}
.conditions-container .section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #1e73be;
  display: block;
  margin: 15px auto 0;
}
.conditions-container .section-subtitle {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  color: #1e73be;
  margin-bottom: 30px;
  position: relative;
}
.conditions-container .section-subtitle::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #0b1d3a;
  display: block;
  margin: 15px auto 0;
}
.tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.tab-btn {
  padding: 10px 22px;
  border: 1px solid #d9e2f3;
  background: #fff;
  color: #333;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-btn.active,
.tab-btn:hover {
  background: #1e73be;
  color: #fff;
  border-color: #1e73be;
}
.condition-content{
  margin-bottom: 25px;
}
.tab-content {
  opacity: 0;
  transform: translateY(20px);
  display: none;
  transition: all 0.4s ease;
}
.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 25px;
}
.condition-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.condition-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11,29,58,0.15);
}
.condition-card h3 {
  font-size: 18px;
  color: #1e73be;
  margin-bottom: 15px;
}
.condition-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}
.card-btn {
  position: absolute;
  bottom: -50px;
  left: 30px;
  padding: 10px 22px;
  background: #0b1d3a;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.4s ease;
}
.condition-card:hover .card-btn {
  bottom: 25px;
}

.counter-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #f8fbff, #eef4ff);
  position: relative;
}
.counter-container {
  max-width: 1300px;
  margin: auto;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  text-align: center;
}
.counter-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(11, 29, 58, 0.05);
  transition: all 0.4s ease;
}
.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(11, 29, 58, 0.12);
}
.counter-icon {
  font-size: 36px;
  margin-bottom: 15px;
}
.counter-card h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e73be;
  margin-bottom: 8px;
}
.counter-card p {
  font-size: 15px;
  color: #555;
}

.gastro-section {
  padding: 100px 5%;
  background: #f8fbff;
  font-family: 'Segoe UI', sans-serif;
}
.gastro-container {
  max-width: 1300px;
  margin: auto;
}
.gastro-container .section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  color: #1e73be;
  margin-bottom: 70px;
  position: relative;
}
.gastro-container .section-title::after {
  content: "";
  width: 90px;
  height: 3px;
  background: #0b1d3a;
  display: block;
  margin: 15px auto 0;
}
.gastro-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px 30px;
}
.gastro-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}
.gastro-card a{
  text-decoration: none;
}
.gastro-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}
.gastro-card:hover {
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(11, 29, 58, 0.08);
  transform: translateY(-8px);
}
.gastro-card .icon {
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}
.gastro-card .icon img {
  height: 70px;
  transition: transform 0.4s ease;
}
.gastro-card:hover .icon img {
  transform: scale(1.1);
}
.gastro-card h3 {
  font-size: 18px;
  color: #1e73be;
  font-weight: 600;
  margin-bottom: 10px;
}
.gastro-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #1e73be, #0b4d8a);
  padding: 70px 5%;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}
.cta-section.show {
  opacity: 1;
  transform: translateY(0);
}
.cta-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}
.cta-icon {
  font-size: 60px;
  color: rgba(255,255,255,0.9);
  animation: pulse 3s infinite ease-in-out;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.cta-text h2 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.cta-btn {
  padding: 14px 34px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #fff;
  color: #1e73be;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.site-footer {
  background: #1c1c1c;
  color: #dcdcdc;
  padding: 70px 0 0;
  font-size: 14px;
}.footer-col h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.footer-divider {
  width: 40px;
  height: 2px;
  background: #0e2a57;
  margin-bottom: 20px;
}
.footer-container {
  width: 92%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr 1.2fr;
  gap: 50px;
}
.footer-col p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #bdbdbd;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}
.footer-logo {
  width: 220px;
  margin-bottom: 20px;
}
.footer-about {
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-social a {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #fff;
  transition: 0.3s;
}
.footer-social a:hover {
  background: #0e2a57;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #aaa;
}

.ambassadors {
  padding: 80px 5%;
  background: #f9fbfc;
}
.ambassadors-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.ambassadors-left {
  flex: 1;
}
.ambassadors-left h2, .ambassadors-right h2 {
  font-size: 50px;
  font-weight: 700;
  color: #0f5f7a;
  text-align: center;
  margin-bottom: 40px;
}
.ambassadors .video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.ambassadors .video-grid a{
  text-decoration: none;
}
.ambassadors .video-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  color: #333;
  text-align: center;
}
.ambassadors .video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.ambassadors .video-thumb img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: 0.4s ease;
}
.ambassadors .video-thumb:hover img {
  transform: scale(1.05);
}
.ambassadors .play-btn {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
}
.ambassadors-right {
  flex: 1;
}
.ambassadors .tabs {
  display: flex;
  gap: 40px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
}
.ambassadors .tab {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  cursor: pointer;
  position: relative;
}
.ambassadors .tab.active {
  color: #0f5f7a;
}
.ambassadors .tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0f5f7a;
}
.ambassadors .tab-content {
  display: none;
  animation: fade 0.4s ease;
}
.ambassadors .tab-content.active {
  display: block;
}
.tab-content p{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.tab-content p a{
  text-decoration: none;
  color: #0f5f7a;
}
.ambassadors .doctor-info {
  margin-top: 30px;
  border-left: 4px solid #0f5f7a;
  padding-left: 20px;
}
.ambassadors .doctor-info h3 {
  font-size: 25px;
  color: #0f5f7a;
  margin-bottom: 5px;
}
.ambassadors .qualifications {
  font-size: 15px;
  color: #555;
}
@keyframes fade {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

.happy-section .happy-header h2{
  font-size: 60px;
  font-weight: 700;
  color: #0f5f7a;
  text-align: center;
  margin-bottom: 40px;
}
.happy-section .happy-header h2 span{
  font-size: 40px;
  color: #05668d;
}

.inner-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero {
  position: relative;
  padding: 90px 0 80px;
  color: #fff;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.page-title {
  position: relative;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
  z-index: 3;
}
.page-hero p{
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  z-index: 3;
}
.breadcrumbs{
  position: relative;
  z-index: 3;
}
.breadcrumbs {
  font-size: 16px;
}
.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.breadcrumbs a:hover {
  opacity: 1;
  text-decoration: underline;
}
.breadcrumbs span {
  margin: 0 8px;
}
.breadcrumbs .current {
  font-weight: 500;
  opacity: 0.85;
}

.gi-detail-section {
  padding: 70px 0;
  background: #f9fbfd;
}
.gi-detail-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.gi-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}
.gi-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}
.gi-content h3 {
  margin-top: 35px;
  font-size: 20px;
  color: #1f6fb2;
}
.gi-content a{
  text-decoration: none;
  color: #1f6fb2;
  font-weight: 600;
}
.gi-content p, .gi-content ul li {
  margin: 15px 0;
  line-height: 1.7;
  color: #555;
}
.gi-content ul{
  margin: 0px 30px;
}
.gi-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.sidebar-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.sidebar-card-two {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.sidebar-card-three {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.sidebar-card-three img, .sidebar-card-three p{
  margin-bottom: 20px;
}
.sidebar-card-three p strong{
  font-size: 25px;
}
.sidebar-card-three p a{
  font-size: 20px;
  text-decoration: none;
  color: #fff;
}
.sidebar-card .video-card iframe {
  border-radius: 8px;
  margin-bottom: 10px;
}
.sidebar-card .card-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
}
.sidebar-card.testimonial {
  background: #1f6fb2;
  color: #fff;
}
.sidebar-card.testimonial h4{
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}
.sidebar-card.testimonial .stars{
  text-align: right;
  margin-bottom: 25px;
}
.sidebar-card.testimonial .stars ul{
  list-style: none;
}
.sidebar-card.testimonial .stars ul, .testimonial .stars ul li{
  display: inline-block;
}
.sidebar-card.testimonial .stars ul li i{
  color: yellow;
}
.sidebar-card .related h4 {
  margin-bottom: 15px;
}
.sidebar-card .related ul {
  list-style: none;
  padding: 0;
}
.sidebar-card .related li {
  margin-bottom: 10px;
}
.sidebar-card .related a {
  text-decoration: none;
  color: #1f6fb2;
  font-weight: 500;
}
.sidebar-card.emergency{
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 10px;
  color: #fff;
}
.sidebar-card.emergency .emergency-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.sidebar-card.emergency .emergency-overlay{
  position: relative;
  z-index: 2;
  background: rgba(30, 111,168, 0.75);
  padding: 50px 20px;
  text-align: center;
}
.sidebar-card.emergency .emergency-overlay i{
  font-size: 75px;
  margin-bottom: 25px;
}
.sidebar-card.emergency .emergency-overlay h4{
  font-size: 20px;
  margin-bottom: 25px;
}
.sidebar-card.emergency .emergency-overlay a{
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.faq-wrapper {
  margin-top: 40px;
}
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: #f2f2f2;
  border: none;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.faq-answer {
  display: none;
  padding: 15px;
  background: #fff;
  border-top: 1px solid #ddd;
}

.conintro-section {
  padding: 80px 0;
  background: #f7f7f7;
}
.conintro-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.conintro-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.conintro-content {
  flex: 1;
  max-width: 550px;
}
.conintro-content h2 {
  font-size: 32px;
  color: #1e6fa8;
  margin-bottom: 15px;
}
.conintro-content .divider {
  width: 60px;
  height: 2px;
  background: #333;
  margin-bottom: 25px;
}
.conintro-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}
.conintro-image {
  flex: 1;
}
.conintro-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.video-testimonials {
  padding: 80px 0;
  background: #f8f8f8;
}
.video-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.testimonial-content {
  padding: 20px;
}
.testimonial-content h4 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}
.testimonial-content .condition {
  margin: 0;
  color: #1e8e96;
  font-size: 18px;
  font-weight: 500;
}

.media-section {
  padding: 80px 0;
  background: #f7f7f7;
}
.media-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.media-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 50px;
  overflow-x: auto;
  scrollbar-width: none /* Firefox */
}
.media-tabs::-webkit-scrollbar {
  display: none; /* Chrome */
}
.media-tabs .tab {
  background: none;
  border: none;
  font-size: 18px;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
}
.media-tabs .tab.active {
  color: #1e6fa8;
}
.media-tabs .tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: #1e6fa8;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.media-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
}
.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.media-content {
  padding: 20px;
}
.media-content h4 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #1e8e96;
}

.contact-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #0D96D4 0%, #ffffff 40%);
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  padding: 50px;
  display: flex;
  gap: 50px;
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e88e5, #00c6ff, #1e88e5);
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}
.contact-left {
  flex: 1;
  padding-right: 40px;
  border-right: 2px dashed #1e88e5;
}
.contact-left h2 {
  font-size: 22px;
  margin-bottom: 40px;
  color: #1e88e5;
  letter-spacing: 1px;
}
.contact-left .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}
.contact-left .info-item .icon {
  font-size: 20px;
  color: #1e88e5;
  min-width: 25px;
}
.contact-right {
  flex: 1;
}
.contact-right iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
}

.appointment-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #1e88e5 0%, #f5f5f5 40%);
}
.appointment-container {
  max-width: 1200px;
  margin: 0 auto;
}
.appointment-card {
  background: #fff;
  border-radius: 14px;
  padding: 60px;
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.appointment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}
.appointment-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e88e5, #00c6ff, #1e88e5);
  z-index: -1;
  opacity: 0.25;
  filter: blur(8px);
}
.appointment-left {
  flex: 1;
}
.appointment-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1e88e5;
}
.appointment-left p {
  margin-bottom: 25px;
  line-height: 1.7;
  color: #555;
}
.appointment-highlights div {
  margin-bottom: 10px;
  color: #333;
}
.appointment-right {
  flex: 1;
}
.form-group {
  margin-bottom: 20px;
}
.appointment-form input,
.appointment-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.appointment-form input:focus,
.appointment-form textarea:focus {
  border-color: #1e88e5;
  outline: none;
  box-shadow: 0 0 0 3px rgba(30,136,229,0.1);
}
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #1e88e5, #00c6ff);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-section {
  padding: 100px 20px;
  background: #f8f9fb;
}
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.blog-card a{
  text-decoration: none;
}
.blog-timage img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #222;
}
.blog-card.two{
  margin-bottom: 15px;
}
.blog-card.two .blog-content{
  width: 100%;
}
.blog-card.two a h3{
  text-decoration: none;
  font-size: 16px;
}
.blog-meta {
  font-size: 13px;
  text-transform: uppercase;
  color: #1e88e5;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.blog-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.read-btn {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(135deg, #1e88e5, #00c6ff);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.read-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-detail {
  padding: 60px 20px;
  background: #f8f9fb;
}
.blog-container{
  max-width: 1200px;
  margin: 0 auto;
}
.blog-wrapper {
  display: flex;
  gap: 40px;
}
.blog-content {
  flex: 2;
}
.blog-sidebar {
  flex: 1;
}
.blog-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}
.blog-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.share-btn {
  width: 36px;
  height: 36px;
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}
.share-btn.facebook { background: #1877f2; }
.share-btn.instagram { background: #D62976; }
.share-btn.youtube { background: #FF0000; }
.share-btn.whatsapp { background: #25d366; }
.share-btn:hover {
  transform: translateY(-3px);
}
.blog-image{
  margin-bottom: 25px;
}
.blog-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.blog-text p, .blog-text ul li {
  color: black;
  line-height: 1.25;
  margin-bottom: 20px;
}
.blog-text ul{
  padding: 0px 0px 0px 35px;
}
.blog-text h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 20px;
}
.sidebar-box {
  background: #f8f9fb;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.cta-box {
  background: linear-gradient(135deg, #0d6efd, #00b4db);
  color: #fff;
}
.cta-box h3 {
  margin-bottom: 20px;
}
.btn-primary {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  background: #fff;
  color: #0d6efd;
  font-weight: 600;
  border-radius: 5px;
  margin-top: 10px;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #f1f1f1;
}
.blog-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.blog-navigation a {
  font-weight: 600;
  text-decoration: none;
  color: #0d6efd;
  transition: 0.3s;
}
.blog-navigation a:hover {
  opacity: 0.7;
}
.blog-categories ul{
  list-style: none;
}
.blog-categories ul li{
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  background: #0d6efd;
  border: 1px solid #0d6efd;
  margin-top: 5px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.blog-categories ul li a{
  color: white;
  text-decoration: none;
}
.blog-categories ul li:hover{
  background: transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.blog-categories ul li:hover a{
  color: #0d6efd;
}
.blog-detail .blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 15px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.blog-detail .blog-content table thead {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
}
.blog-detail .blog-content table th,
.blog-detail .blog-content table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.blog-detail .blog-content table th {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.blog-detail .blog-content table tbody tr:hover {
  background-color: #f8f9fa;
  transition: 0.3s ease;
}
.blog-detail .blog-content table tbody tr:last-child td {
  border-bottom: none;
}
.blog-detail .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.blog-detail .blog-content table thead {
  background: #f1f5f9;
  color: #333;
}
.blog-detail .blog-content table tbody tr:nth-child(even) {
  background: #fafafa;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    padding: 60px 20px;
    text-align: center;
}
.thank-you-container {
    max-width: 600px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    animation: fadeUp 0.8s ease forwards;
}
.thank-you-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}
.thank-you-container h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1f2937;
}
.thank-you-message {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}
.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-first {
    padding: 12px 28px;
    background: #0d6efd;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}
.btn-first:hover {
    background: #0b5ed7;
}
.btn-outline {
    padding: 12px 28px;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}
.btn-outline:hover {
    background: #0d6efd;
    color: #fff;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .thank-you-container {
        padding: 40px 25px;
    }
    .thank-you-container h1 {
        font-size: 26px;
    }
    .thank-you-message {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
  .gastro-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  .counter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .top-flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .top-info {
    flex-direction: column;
    gap: 10px;
  }
  .hamburger {
    display: flex;
    z-index: 1100;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 30px;
    gap: 20px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.08);
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 10px 0;
    display: none;
    grid-template-columns: 1fr;
  }
  .mega-dropdown.active .mega-menu {
    display: grid;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .btn-appointment, .top-info p {
    display: none;
  }
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .award-content h2 {
    font-size: 20px;
  }
  .award-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .award-cta {
    padding: 10px 20px;
  }
  .testimonial-grid, .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .award-container {
    flex-direction: column;
    text-align: center;
  }
  .award-content h2 {
    font-size: 30px;
  }
  .award-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .award-cta {
    padding: 15px 30px;
  }
  .page-title {
    font-size: 36px;
  }
  .gi-layout {
    grid-template-columns: 1fr;
  }
  .video-card iframe {
    height: 250px;
  }
  .conintro-wrapper {
    gap: 40px;
  }
  .conintro-content h2 {
    font-size: 28px;
  }
  .conintro-content p {
    font-size: 16px;
  }
  .contact-card {
    flex-direction: column;
    padding: 30px;
  }
  .contact-left {
    border-right: none;
    padding-right: 0;
  }
  .contact-right iframe {
    height: 300px;
  }
  .appointment-card {
    flex-direction: column;
    padding: 40px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-wrapper {
    flex-direction: column;
  }
  .blog-sidebar {
    order: 2;
  }
  .blog-content {
    order: 1;
  }
}
@media (max-width: 900px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-left {
    flex-direction: column;
  }
  .cta-icon {
    font-size: 50px;
  }
  .cta-text h2 {
    font-size: 26px;
  }
  .cta-btn {
    margin-top: 20px;
  }
  .ambassadors-container {
    flex-direction: column;
  }
  .ambassadors .video-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .review-container {
    flex-direction: column;
    text-align: center;
  }
  .review-static {
    border-left: none;
    border-top: 1px solid #e4e8ee;
    padding-left: 0;
    padding-top: 30px;
    width: 100%;
  }
  .review-text {
    font-size: 16px;
  }
  .gastro-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .conintro-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .conintro-content {
    max-width: 100%;
  }
  .conintro-image {
    width: 100%;
  }
  .conintro-content .divider {
    margin: 20px auto;
  }
  .testimonial-grid, .media-grid {
    grid-template-columns: 1fr;
  }
  .video-testimonials {
    padding: 60px 0;
  }
  .testimonial-content h4, .media-content h4 {
    font-size: 18px;
  }
  .media-tabs {
    gap: 20px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
  }
  .media-tabs .tab {
    font-size: 16px;
  }
  .media-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .media-card.hide {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
  }
  .media-card.show {
    opacity: 1;
    transform: scale(1);
  }
  .blog-detail .blog-content table {
    font-size: 14px;
  }
  .blog-detail .blog-content table th,
  .blog-detail .blog-content table td {
    padding: 10px 12px;
  }
}
@media (max-width: 640px) {
  .tabs-wrapper {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .tabs-wrapper::-webkit-scrollbar {
    display: none;
  }
  .conditions-grid {
    grid-template-columns: 1fr;
  }
  .gastro-grid {
    grid-template-columns: 1fr;
  }
  .counter-grid {
    grid-template-columns: 1fr;
  }
  .contact-section {
    padding: 60px 15px;
  }
  .contact-left h2 {
    font-size: 18px;
  }
  .info-item {
    font-size: 14px;
  }
  .contact-right iframe {
    height: 250px;
  }
  .appointment-section {
    padding: 60px 15px;
  }
  .appointment-card {
    padding: 25px;
  }
  .appointment-left h2 {
    font-size: 24px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-section {
    padding: 60px 15px;
  }
  .blog-content h3 {
    font-size: 18px;
  }
  .blog-title {
    font-size: 24px;
  }
  .blog-navigation {
    flex-direction: column;
    gap: 10px;
  }
  .blog-navigation a {
    display: block;
  }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .map-col iframe {
    height: 200px;
  }
  .footer-logo {
    width: 180px;
  }
  .site-footer {
    padding: 50px 0 0;
  }
  .page-hero {
    padding: 60px 0 50px;
    text-align: center;
  }
  .page-title {
    font-size: 28px;
  }
  .breadcrumb {
    font-size: 14px;
  }
  .ambassadors-left h2 {
    font-size: 32px;
  }
  .tabs {
    gap: 20px;
    font-size: 16px;
  }
}
