:root {
  --primary-color: #0560b8;
  --primary-hover: #044b90;
  --bg-light: #f1f7fd;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --topbar-bg: #032d57;
  /* Deep rich dark shade matching primary blue */
  --white: #ffffff;
  --border-light: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(5, 96, 184, 0.1);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & layout */
.site-header {
  width: 100%;
  position: relative;
  z-index: 1000;
}

.container-fluid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Topbar Styling (Dark Theme) */
.topbar {
  background-color: var(--topbar-bg);
  color: #dbeafe;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-item i {
  color: #60a5fa;
  font-size: 1rem;
}

.topbar-item.emergency {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.topbar-item.emergency i {
  color: #f87171;
}

.topbar-icon {
  color: #dbeafe;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.topbar-icon:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Fix 1: Make the outer header sticky */
.site-header {
  width: 100%;
  position: sticky;
  top: -43px;
  /* Hides the topbar when it reaches top, sticking only the navbar */
  z-index: 1000;
}

/* Remove sticky from main-navbar */
.main-navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand/Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-mark {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-color);
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background-color: var(--bg-light);
}

/* Dropdown Containers & Menus */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-simple-menu {
  width: 240px;
}

.nav-simple-menu a,
.nav-mega-list a {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0.8rem;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-simple-menu a span,
.nav-mega-list a span {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-simple-menu a small,
.nav-mega-list a small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.nav-simple-menu a:hover,
.nav-mega-list a:hover {
  background: var(--bg-light);
}

.nav-simple-menu a:hover span,
.nav-mega-list a:hover span {
  color: var(--primary-color);
}

/* Mega Menu */
.nav-mega-menu {
  width: min(840px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem;
}

.nav-mega-intro {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
}

.nav-mega-intro strong {
  display: block;
  font-size: 0.85rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-mega-tags {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nav-mega-tags a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: var(--transition);
}

.nav-mega-tags a:hover {
  color: var(--primary-color);
}

.nav-mega-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.nav-mega-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mega-section-title {
  display: block;
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem 0.35rem;
}

.dropdown-all {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-light);
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}

/* Header Contact Button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-contact-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(5, 96, 184, 0.25);
  transition: var(--transition);
}

.header-contact-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 16px rgba(5, 96, 184, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

/* Mobile Overlay & Sidebar */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar-header {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.mobile-logo img {
  max-height: 40px;
}

.mobile-logo span {
  font-weight: 700;
  color: var(--primary-color);
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

.mobile-menu {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu>a,
.mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.8rem 1rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  border: none;
  background: none;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
}

.mobile-menu>a:hover,
.mobile-dropdown-btn:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  margin-top: 0.25rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}

.mobile-dropdown.active .mobile-dropdown-btn span:last-child {
  transform: rotate(180deg);
}

.mobile-dropdown-content a {
  padding: 0.6rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.mobile-menu-label {
  display: block;
  padding: 0.75rem 1rem 0.25rem;
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-dropdown-content a.view-all {
  color: var(--primary-color);
  font-weight: 600;
}

.mobile-contact {
  padding: 1.25rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-light);
}

.mobile-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive Rules */
@media (max-width: 991px) {
  .topbar-left .topbar-item:not(:first-child) {
    display: none;
  }

  .main-nav,
  .header-contact-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mega-menu {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

/* Hero Section Container with Fixed Background */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 20px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;

}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #032d57e3 0%, rgba(12, 38, 54, 0) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* Left Content & Slider Styles */
.hero-left {
  min-width: 0;
  /* Prevents grid breakout from carousel */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-slide-content h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-slide-content h1 span,
.hero-slide-content h1 highlight {
  color: #2bb6a8;
}

.hero-slide-content p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary {
  background-color: #2bb6a8;
  color: #fff;
}

.hero-btn-primary:hover {
  background-color: #23988c;
}

.hero-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.hero-stat h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.hero-stat p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* Right Fixed Form Styles */
.appointment-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 16px;
}

.card-subtitle {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 4px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.card-meta {
  font-size: 11px;
  color: #ffffff !important;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-form .form-group {
  margin-bottom: 5px !important;
}

.hero-form label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: #e2e8f0;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: #64748b;
}

.hero-submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #2bb6a8;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.hero-submit-btn:hover {
  background-color: #23988c;
}

.call-us {
  text-align: center;
  font-size: 12px;
  margin-top: 12px;
  color: #94a3b8;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}




.hero-slide-content {
  color: #fff;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}


.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-stat {
  background: rgba(255, 255, 255, .12);
  padding: 18px;
  border-radius: 15px;
  backdrop-filter: blur(15px);
  text-align: center;
}

.hero-stat h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 5px;
}

.hero-stat p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

.appointment-card {

  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}



.card-title {
  font-size: 30px;
  margin-bottom: 10px;
}



.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.hero-submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: #0560B8;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.call-us {
  margin-top: 20px;
  text-align: center;
}

.hero-appointment-card {
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(5, 46, 87, 0.58);
  border: 1px solid rgba(219, 234, 254, 0.34);
  box-shadow: 0 18px 46px rgba(2, 16, 35, 0.26);
}

.hero-appointment-card .card-subtitle {
  color: #dbeafe;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-appointment-card .card-title {
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
  margin-bottom: 8px;
}

.hero-appointment-card .card-meta {
  color: #eef6ff !important;
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.hero-appointment-form {
  display: grid;
  gap: 10px;
}

.hero-appointment-form .form-group {
  margin: 0 !important;
}

.hero-appointment-form .form-group label {
  color: #eef6ff;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 5px;
}

.hero-appointment-form .form-group input,
.hero-appointment-form .form-group textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 9px;
  border: 1px solid rgba(239, 246, 255, 0.88);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}

.hero-appointment-form .form-group textarea {
  min-height: 70px;
  resize: vertical;
}

.hero-appointment-form .form-group input::placeholder,
.hero-appointment-form .form-group textarea::placeholder {
  color: #dcecff;
  opacity: 1;
  font-weight: 600;
}

.hero-appointment-form .form-group input:focus,
.hero-appointment-form .form-group textarea:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(219, 234, 254, 0.18);
}

.hero-appointment-form .form-group small,
.hero-form-error {
  color: #ffe2e2;
  font-size: 12px;
  font-weight: 700;
}

.hero-form-alert,
.hero-form-error {
  border-radius: 8px;
  padding: 9px 10px;
  margin-bottom: 10px;
}

.hero-form-alert {
  color: #dcfce7;
  background: rgba(22, 101, 52, 0.34);
}

.hero-form-error {
  background: rgba(153, 27, 27, 0.34);
}

.hero-appointment-form .hero-submit-btn {
  min-height: 48px;
  padding: 10px 14px;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  font-size: 15px;
}

.hero-appointment-card .call-us {
  color: #dbeafe;
  font-size: 13px;
  margin: 12px 0 0;
}

.hero-appointment-card .call-us strong {
  color: #fff;
}

.owl-dots {

  text-align: left !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
}

.owl-theme .owl-dots .owl-dot.active span {
  width: 35px;
  border-radius: 20px;
  background: #fff;
}

@media(max-width:991px) {

  .hero-section {
    padding: 120px 0 70px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide-content h1 {
    font-size: 38px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

}


.about-section {
  padding: 70px 0;
  background: #def1ff;
  background: linear-gradient(180deg, rgba(222, 241, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}


.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.about-images {
  position: relative;
}

.image-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.image-card img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.experience-card {
  position: absolute;
  right: -10px;
  bottom: 40px;

  display: flex;
  gap: 15px;
  align-items: center;

  background: #0B5E95;
  color: #fff;

  padding: 22px 28px;

  border-radius: 18px;

  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.exp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 22px;
}

.experience-card h4 {
  margin: 0;
  font-size: 24px;
}

.experience-card p {
  margin: 5px 0 0;
  opacity: .9;
}

.section-tag {
  color: #1DA4B8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-content {
  width: 100%;
}

.about-content h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 15px 0 25px;
  font-weight: 800;
  color: #004477;
}

.about-content>p {
  color: #65748b;
  line-height: 1.9;
  margin-bottom: 35px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.feature-box {
  display: flex;
  gap: 18px;
}

.feature-box .icon {
  min-width: 56px;
  height: 56px;

  border-radius: 16px;

  background: #e8f7fa;
  color: #0B5E95;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 26px;
}

.feature-box h5 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #1c2b44;
}

.feature-box p {
  margin: 0;
  color: #6b7b90;
  line-height: 1.7;
}

.about-buttons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.btn-primary {
  background: #0B5E95;
  color: #fff;
  padding: 16px 34px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid #0B5E95;
  color: #0B5E95;
  padding: 16px 34px;
  border-radius: 12px;
  font-weight: 600;
}

@media(max-width:991px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -40px;
    margin-left: auto;
    width: max-content;
  }

  .about-content h2 {
    font-size: 34px;
  }

}




.why-robotic {

  padding: 70px 0;
  background: #ffffff;


}

.container {
  width: 100%;
  max-width: 1330px;
  margin: auto;

}

/*==========================*/

.section-title {

  text-align: center;
  max-width: 900px;
  margin: auto 70px;
  margin: auto;

}

.subtitle {

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 24px;
  border-radius: 40px;
  background: #ffffff;
  border: 1px solid #0560B8;
  color: #044b90;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;

}

.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin: 10px 0 0px;
  color: var(--primary-color);

}


.section-title p {

  font-size: 16px;
  color: #6A7890;
  line-height: 1.8;

}

/*=====================*/

.why-grid {

  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 25px;
  margin-top: 70px;

}

/*=====================*/

.image-card {

  position: relative;
  overflow: hidden;
  border-radius: 35px;
  height: 640px;

}

.image-card img {

  width: 100%;
  height: 100%;
  object-fit: cover;


}


.image-overlay {

  position: absolute;
  inset: 0;

  background: linear-gradient(180deg,
      rgba(0, 0, 0, .05),
      rgba(0, 0, 0, .75));

}

.image-content {

  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 10px;
  color: #fff;
  z-index: 2;

}

.icon-box {

  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #0560B8, #0D84FF);

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  font-size: 30px;
  margin-bottom: 25px;

  animation: float 4s infinite;

}

.image-content h3 {

  font-size: 29px;
  margin-top: 10px;
  font-weight: 700;
  color: white;

}

.image-content p {
  font-size: 17px;

}

.badge {

  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  margin-top: 0px;
  background: rgba(255, 255, 255, .12);

  backdrop-filter: blur(18px);

  border-radius: 18px;

}

/*======================*/

.content-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;

}

.wide-card {

  grid-column: span 2;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px;

  background: #fff;

  border-radius: 28px;

  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;

  transition: .4s;

  position: relative;

  overflow: hidden;

}

.small-card {

  padding: 30px;

  background: #fff;

  border-radius: 28px;

  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;

  transition: .4s;

  position: relative;

  overflow: hidden;

}

.bottom {

  display: flex;
  gap: 15px;
  align-items: center;

}

/*======================*/

.small-icon {

  width: 58px;
  height: 58px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf6ff;
  color: var(--primary);
  font-size: 24px;

  margin-bottom: 25px;

  transition: .4s;

}

.wide-card span {

  font-size: 13px;
  font-weight: 500;
  color: var(--orange);

}

.wide-card h3 {

  font-size: 24px;
  margin-top: 10px;
  font-weight: 700;
  color: var(--primary-color);

}

.small-card h4,
.bottom h4 {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color);

}

.small-card p,
.bottom p,
.wide-card p {

  font-size: 16px;

  color: #66748d;

}

/*======================*/

.wide-card::before,
.small-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(5, 96, 184, .08),
      transparent);

  transition: .8s;

}

.wide-card:hover::before,
.small-card:hover::before {

  left: 100%;

}

.wide-card:hover,
.small-card:hover {

  transform: translateY(-12px);

  box-shadow: 0 30px 70px rgba(5, 96, 184, .15);

  border-color: #0560B8;

}

.small-card:hover .small-icon,
.bottom:hover .small-icon {

  background: #0560B8;

  color: #fff;

  transform: rotate(12deg) scale(1.1);

}

/*=====================*/

@keyframes float {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-10px);

  }

}

/*=====================*/

@media(max-width:1100px) {

  .why-grid {

    grid-template-columns: 1fr;

  }

  .image-card {

    height: 550px;

  }

  .section-title h2 {

    font-size: 42px;

  }

}

@media(max-width:768px) {

  .content-grid {

    grid-template-columns: 1fr;

  }

  .wide-card {

    grid-column: span 1;

    flex-direction: column;
    align-items: flex-start;

  }

  .section-title h2 {

    font-size: 34px;

  }

  .image-content h3 {

    font-size: 30px;

  }

  .small-card,
  .wide-card {

    padding: 30px;

  }

}

.home-service-section {
  position: relative;
  padding: 70px 0;
  background: url('/uploads/banners/1784551323-banner-6a5e179b0fc827.33538095.png') center center/cover no-repeat;
  overflow: hidden;
  z-index: 1;
}
/*=========================================
        SERVICES PAGE
=========================================*/

.services-page-section{
    padding:90px 0;
    background:#F7FBFF;
}

.services-page-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:50px;
}

.services-page-head span{
    display:inline-block;
    background:#EAF6FF;
    color:#0560B8;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.services-page-head h2{
    font-size:46px;
    color:#032D57;
    line-height:1.2;
    max-width:700px;
    font-weight:700;
}

.services-page-head p{
    max-width:450px;
    color:#637485;
    line-height:1.8;
}

/*=========================================
        HIGHLIGHTS
=========================================*/

.services-page-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:50px;
}

.services-page-highlights div{
    background:#fff;
    padding:25px;
    border-radius:16px;
    text-align:center;
    border:1px solid #E3EEF8;
    box-shadow:0 8px 25px rgba(3,45,87,.05);
    transition:.35s;
}

.services-page-highlights div:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(5,96,184,.12);
}

.services-page-highlights i{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 15px;
    border-radius:50%;
    background:#0560B8;
    color:#fff;
    font-size:28px;
}

.services-page-highlights span{
    font-weight:600;
    color:#032D57;
}

/*=========================================
        CATEGORY NAV
=========================================*/

.service-category-nav{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;
}

.service-category-nav a{
    padding:12px 22px;
    border-radius:30px;
    background:#fff;
    color:#032D57;
    text-decoration:none;
    font-weight:600;
    border:1px solid #DCEAF7;
    transition:.3s;
}

.service-category-nav a:hover{
    background:#0560B8;
    color:#fff;
}
.home-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #032d57e3 0%, rgba(3, 62, 99, 0.826) 100%);
  z-index: 1;
}

.home-service-section .container {
  position: relative;
  z-index: 2;
}



.home-service-head {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
  align-items: end;
}

.home-service-head h2 {
  font-size: 44px;
  font-weight: 700;
  color: #0A4DA2;
  margin-top: 10px;
}

.home-service-head p {
  max-width: 550px;
  color: #667085;
  line-height: 1.8;
}

.ab-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: #EAF2FF;
  color: #0A4DA2;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 70px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: #fff;
  border: 1px solid #D7E6FF;
  border-radius: 22px;
  transition: .4s;
  text-decoration: none;
  overflow: hidden;
  min-height: 330px;
}




.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: .4s;
}

.service-icon i {
  font-size: 30px;
  color: #0560B8;
  transition: .4s;
}

.service-card h3 {
  font-size: 26px;
  line-height: 1.2;
  color: #0A4DA2;
  font-weight: 700;
  margin-bottom: 18px;
  transition: .35s;
}

.service-card p {
  color: #5E6470;
  line-height: 1.4;
  font-size: 16px;
  transition: .35s;
}

.service-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0560B8;
  font-weight: 700;
  font-size: 17px;
  transition: .35s;
}

.service-btn i {
  transition: .35s;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: #0560B8;
  box-shadow: 0 30px 70px rgba(5, 96, 184, .18);
}



.service-card:hover .service-icon i {
  color: #004477;
}

.service-card:hover .service-btn i {
  transform: translateX(8px);
}

@media(max-width:1200px) {

  .home-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media(max-width:991px) {

  .home-service-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:576px) {

  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
  }

  .home-service-head h2 {
    font-size: 34px;
  }

  .service-card h3 {
    font-size: 28px;
  }

}



/*==========================
    WHY CHOOSE US
==========================*/

.home-achievement-section {
  padding: 70px 0;
  background: #F6FAFF;
  position: relative;
  overflow: hidden;
}

.home-achievement-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 96, 184, .08), transparent 70%);
  top: -180px;
  left: -150px;
}

.home-achievement-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(5, 96, 184, .06), transparent 70%);
  bottom: -150px;
  right: -120px;
}

.home-achievement-wrap {
  position: relative;
  z-index: 2;
}

.home-achievement-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr .75fr;
  gap: 28px;
  align-items: start;
}

.home-achievement-head {
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  border: 1px solid #DDEBFF;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
  height: 100%;
}

.home-achievement-head span {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 40px;
  background: #EAF3FF;
  color: #0560B8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.home-achievement-head h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #083C8A;
  font-weight: 700;
  margin-bottom: 22px;
}

.home-achievement-head p {
  color: #667085;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 35px;
}

.achievement-features {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.achievement-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: #F7FBFF;
  border: 1px solid #D8E7FF;
  border-radius: 16px;
  transition: .35s;
}

.achievement-feature i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0560B8;
  color: #fff;
  border-radius: 12px;
  font-size: 22px;
}

.achievement-feature p {
  margin: 0;
  color: #0B4A9E;
  font-weight: 600;
  line-height: 1.4;
}

.achievement-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(5, 96, 184, .15);
}

/*==========================
    Cards
==========================*/

.home-achievement-card {
  background: #fff;
  border: 1px solid #DCE8FB;
  border-radius: 22px;
  padding: 38px 30px;
  text-align: center;
  margin-bottom: 25px;
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.home-achievement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0560B8, #2D8CFF);
  opacity: 0;
  transition: .4s;
}

.home-achievement-card>* {
  position: relative;
  z-index: 2;
}

.home-achievement-card i {
  width: 72px;
  height: 72px;
  margin: auto auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EDF4FF;
  color: #0560B8;
  border-radius: 18px;
  font-size: 34px;
  transition: .35s;
}

.home-achievement-card strong {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #083C8A;
  margin-bottom: 12px;
  transition: .35s;
}

.home-achievement-card p {
  margin: 0;
  color: #667085;
  font-size: 17px;
  transition: .35s;
}

.home-achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(5, 96, 184, .18);
  border-color: #0560B8;
}

.home-achievement-card:hover::before {
  opacity: 1;
}

.home-achievement-card:hover i {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  color: #fff;
}

.home-achievement-card:hover strong,
.home-achievement-card:hover p {
  color: #fff;
}

/*==========================
    Responsive
==========================*/

@media(max-width:1200px) {

  .home-achievement-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-achievement-head {
    grid-column: 1/-1;
  }

}

@media(max-width:768px) {

  .home-achievement-grid {
    grid-template-columns: 1fr;
  }

  .home-achievement-head {
    padding: 35px;
  }

  .home-achievement-head h2 {
    font-size: 34px;
  }

  .achievement-features {
    flex-direction: column;
  }

  .home-achievement-card {
    margin-bottom: 20px;
  }

}



/*==================================
    TESTIMONIAL SECTION
==================================*/

.home-review-section {
  padding: 70px 0;
  background: #F5F9FF;
  position: relative;
  overflow: hidden;
}

.home-review-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(5, 96, 184, .08), transparent 70%);
  top: -180px;
  left: -120px;
}

.home-review-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(5, 96, 184, .06), transparent 70%);
  bottom: -180px;
  right: -120px;
}

.home-review-wrap {
  position: relative;
  z-index: 2;
  padding: 0 30px;
}

.home-review-head {
  text-align: center;
  margin-bottom: 70px;
}

.home-review-head span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #EAF3FF;
  color: #0560B8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.home-review-head h2 {
  font-size: 46px;
  font-weight: 700;
  color: #083C8A;
}

.home-review-head h2 span {
  background: none;
  color: #0560B8;
  padding: 0;
}

/*==================================
CARD
==================================*/

.home-review-card {
  background: #fff;
  border: 1px solid #DCE8FB;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: .4s;
  overflow: hidden;
  min-height: 360px;
}





/*==================================
QUOTE ICON
==================================*/

.home-review-quote {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #EDF5FF;
  color: #0560B8;
  font-size: 34px;
  margin-bottom: 28px;
  transition: .35s;
}



/*==================================
TEXT
==================================*/

.blockquote {
  font-size: 17px;
  line-height: 1.9;
  color: #5F6B7A;
  margin-bottom: 30px;
  transition: .35s;
}


/*==================================
STARS
==================================*/

.home-review-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 30px;
}

.home-review-stars i {
  color: #D6D6D6;
  font-size: 20px;
}

.home-review-stars .is-active {
  color: #FDBB2D;
}

/*==================================
AUTHOR
==================================*/

.home-review-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-review-author img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #EDF5FF;
}

.home-review-author strong {
  display: block;
  font-size: 20px;
  color: #083C8A;
  margin-bottom: 6px;
  transition: .35s;
}

.home-review-author span {
  color: #667085;
  transition: .35s;
}


/*==================================
OWL DOTS
==================================*/

.home-review-carousel {
  margin-top: 70px !important;
}

.home-review-carousel .owl-dots {
  margin-top: 5px !important;
  text-align: center;
}

.home-review-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #C8D8F5;
  transition: .35s;
}

.home-review-carousel .owl-dot.active span {
  width: 34px;
  border-radius: 30px;
  background: #0560B8;
}

/*==================================
NAVIGATION
==================================*/

.home-review-carousel .owl-nav {
  margin-top: 35px;
  text-align: center;
}

.home-review-carousel .owl-nav button {
  width: 55px;
  height: 55px;
  border-radius: 50% !important;
  background: #fff !important;
  color: #0560B8 !important;
  border: 1px solid #D8E8FF !important;
  margin: 0 8px;
  transition: .35s;
  font-size: 22px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.home-review-carousel .owl-nav button:hover {
  background: #0560B8 !important;
  color: #fff !important;
  transform: translateY(-4px);
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px) {

  .home-review-head h2 {
    font-size: 38px;
  }

  .home-review-card {
    padding: 32px;
  }

}

@media(max-width:576px) {

  .home-review-section {
    padding: 30px 0;
  }

  .home-review-wrap {
    padding: 0 15px;
  }

  .home-review-head h2 {
    font-size: 30px;
  }

  .home-review-card {
    min-height: auto;
    padding: 28px;
  }

  .home-review-author img {
    width: 60px;
    height: 60px;
  }

  .home-review-author strong {
    font-size: 18px;
  }

}




.infrastructure-section {
  width: 100%;
  padding: 70px 0;
  background: #F5F9FF;
}

.infrastructure-section>.container {
  max-width: 1320px;
  padding-right: 24px;
  padding-left: 24px;
}

.infrastructure-section .section-header {
  text-align: center;
  margin-bottom: 34px;
}

.infrastructure-section .section-title {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.infrastructure-section .underline {
  width: 72px;
  height: 3px;
  background-color: #0957BD;
  border-radius: 2px;
  margin: 0 auto;
}

/* Bento Grid */
.infrastructure-section .bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-top: 70px;
}

.infrastructure-section .card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  border: 1px solid #E8EEF5;
  min-height: 238px;
}

.infrastructure-section .card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  color: #0957BD;
  flex-shrink: 0;
}

.infrastructure-section .card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.infrastructure-section .card-title {
  font-size: clamp(21px, 1.6vw, 25px);
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
  letter-spacing: 0;
  line-height: 1.25;
}

.infrastructure-section .card-desc {
  font-size: 15px;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.55;
  margin: 0;
}

/* Custom Adjustments for Grid */
.infrastructure-section .card-davinci {
  grid-column: span 6;
  position: relative;
  justify-content: space-between;
  min-height: 330px;
}

.infrastructure-section .card-davinci .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.infrastructure-section .certified-badge {
  background-color: #DCE6FF;
  color: #243B68;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.infrastructure-section .stats-container {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #E5E7EB;
}

.infrastructure-section .stat-box {
  flex: 1;
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
}

.infrastructure-section .stat-number {
  font-size: 18px;
  font-weight: 600;
  color: #0B5ED7;
  margin-bottom: 4px;
}

.infrastructure-section .stat-label {
  font-size: 10px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0.5px;
}

.infrastructure-section .card-vision,
.infrastructure-section .card-console {
  grid-column: span 3;
  justify-content: flex-end;
}

.infrastructure-section .card-vision .card-icon,
.infrastructure-section .card-console .card-icon,
.infrastructure-section .card-blue .card-icon,
.infrastructure-section .card-imaging .card-icon {
  margin-bottom: auto;
}

/* Blue Highlight Card */
.infrastructure-section .card-blue {
  grid-column: span 3;
  background-color: #0560B8;
  color: #FFFFFF;
  justify-content: flex-end;
}

.infrastructure-section .card-blue .card-icon {
  color: #FFFFFF;
}

.infrastructure-section .card-blue .card-title {
  color: #FFFFFF;
}

.infrastructure-section .card-blue .card-desc {
  color: #E0E7FF;
}

.infrastructure-section .card-imaging {
  grid-column: span 3;
}

.infrastructure-section .card-ai {
  grid-column: span 6;
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  min-height: 238px;
}

.infrastructure-section .card-ai-content {
  flex: 1;
}

.infrastructure-section .card-ai-image {
  width: min(36%, 220px);
  height: 136px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #CBD5E1;
}

.infrastructure-section .card-ai-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Icon specific colors override */
.infrastructure-section .icon-teal {
  color: #0D9488;
}

/* Responsive Grid */
@media (max-width: 1024px) {

  .infrastructure-section .card-davinci,
  .infrastructure-section .card-vision,
  .infrastructure-section .card-console,
  .infrastructure-section .card-blue,
  .infrastructure-section .card-imaging,
  .infrastructure-section .card-ai {
    grid-column: span 6;
  }

  .infrastructure-section .card-davinci {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .infrastructure-section {
    padding: 30px 0;
  }

  .infrastructure-section .bento-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 18px;
  }

  .infrastructure-section .card-davinci,
  .infrastructure-section .card-vision,
  .infrastructure-section .card-console,
  .infrastructure-section .card-blue,
  .infrastructure-section .card-imaging,
  .infrastructure-section .card-ai {
    grid-column: span 1;
    min-height: 220px;
    padding: 24px;
  }

  .infrastructure-section .stats-container {
    flex-direction: column;
  }

  .infrastructure-section .card-ai {
    flex-direction: column;
    align-items: flex-start;
  }

  .infrastructure-section .card-ai-image {
    width: 100%;
    height: 180px;
  }
}




.robotic-advantage {
  padding: 60px 0;
  background: #fff;
}



.robotic-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* LEFT */

.section-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #EAF7FC;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.section-icon svg {
  width: 26px;
  height: 26px;
  fill: #0560B8;
}

.sub-title {
  color: #28A4A2;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.main-title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #15263A;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.description {
  color: #6D7B8C;
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 28px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.tags span {
  background: #EAF8FB;
  color: #0560B8;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  transition: .3s ease;
}

.tags span:hover {
  background: #0560B8;
  color: #fff;
  transform: translateY(-2px);
}

.robot-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 2px solid #D8E2EC;
  border-radius: 10px;
  text-decoration: none;
  color: #15263A;
  font-size: 15px;
  font-weight: 600;
  transition: .3s ease;
}

.robot-btn:hover {
  background: #0560B8;
  border-color: #0560B8;
  color: #fff;
  transform: translateY(-2px);
}

.robot-btn svg {
  width: 18px;
  height: 18px;
}

/* RIGHT */

.compare-card {
  background: #F5F8FC;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  transition: .3s ease;
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(5, 96, 184, .08);
}

.compare-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #15263A;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 2px solid #DFE8F2;
  color: #15263A;
}

.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #E7EEF5;
  font-size: 14px;
  color: #6D7B8C;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  color: #15263A;
  font-weight: 600;
}

.robotic {
  color: #0560B8 !important;
  font-weight: 700;
}

/* Responsive */

@media(max-width:1100px) {

  .robotic-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main-title {
    font-size: 32px;
  }

}

@media(max-width:768px) {

  .robotic-advantage {
    padding: 30px 0;
  }

  .main-title {
    font-size: 28px;
  }

  .description {
    font-size: 15px;
  }

  .compare-card {
    padding: 20px;
  }

  .compare-title {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .compare-table th,
  .compare-table td {
    font-size: 13px;
    padding: 10px 8px;
  }

  .tags span {
    font-size: 12px;
    padding: 6px 12px;
  }

  .robot-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

}



.home-achievement-section {
  position: relative;
  padding: 70px 0;
  background: url('/uploads/banners/1784551323-banner-6a5e179b0fc827.33538095.png') center center/cover no-repeat;
  overflow: hidden;
  z-index: 1;
}

.home-achievement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #032d57e3 0%, rgba(3, 62, 99, 0.826) 100%);
  z-index: 1;
}

.home-achievement-section .container {
  position: relative;
  z-index: 2;
}


/* ==========================================================================
   FAQ Section Layout
   ========================================================================== */

.faq-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Two-column layout for desktop */
@media (min-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
  }

  /* Keep left content visible while scrolling FAQs */
  .faq-sticky {
    position: sticky;
    top: 100px;
  }
}

/* Left Content Header Styling */
.faq-sticky .section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0284c7;
  /* Brand primary */
  margin-bottom: 12px;
}

.faq-sticky h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 16px;
}

.faq-sticky p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* ==========================================================================
   Custom Accordion Styling
   ========================================================================== */

.custom-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-faq .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px !important;
  background-color: #f8fafc;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.custom-faq .accordion-item:hover {
  border-color: #cbd5e1;
}

/* Active card highlight */
.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  background-color: #ffffff;
  border-color: #38bdf8;
  box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.08);
}

/* Accordion Header / Button */
.custom-faq .accordion-header {
  margin: 0;
}

.custom-faq .accordion-button {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  background-color: transparent;
  padding: 20px 24px;
  border: none;
  box-shadow: none !important;
  gap: 16px;
  transition: color 0.2s ease;
}

.custom-faq .accordion-button:not(.collapsed) {
  color: #0284c7;
  background-color: transparent;
}

/* Custom indicator icon animation using Bootstrap's default icon slot */
.custom-faq .accordion-button::after {
  width: 1.25rem;
  height: 1.25rem;
  background-size: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accordion Body */
.custom-faq .accordion-body {
  padding: 0 24px 20px 24px;
  font-size: 0.975rem;
  line-height: 1.65;
  color: #475569;
}

.custom-faq .accordion-body p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
  .faq-section {
    padding: 30px 0;
  }

  .faq-sticky h2 {
    font-size: 1.75rem;
  }

  .custom-faq .accordion-button {
    padding: 16px 18px;
    font-size: 0.975rem;
  }

  .custom-faq .accordion-body {
    padding: 0 18px 16px 18px;
    font-size: 0.9rem;
  }
}


.contact-page-wrapper {

  padding: 70px 0px;
}

/* ==========================================
   Section 1: Contact Cards
   ========================================== */
.contact-cards-section {
  text-align: center;
  padding: 70px 0px;
}

.section-header {
  margin-bottom: 40px;
}

.sub-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2dd4bf;
  text-transform: uppercase;
}

.main-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 6px;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  align-items: center;
}

/* Individual Card Styling */
.contact-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 180px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

/* Featured WhatsApp Card */
.contact-card.active-card {
  border-color: #f1f5f9;
  box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.icon-box {
  width: 44px;
  height: 44px;
  background-color: #e0f2fe;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.contact-card .value {
  font-size: 0.875rem;
  font-weight: 600;
  word-break: break-all;
}

.primary-link {
  color: #0f2b48;
}

.accent-link {
  color: #0284c7;
}

.muted-text {
  color: #64748b;
  font-weight: 400 !important;
  font-size: 0.8rem !important;
}

.text-small {
  font-size: 0.8rem !important;
}

/* ==========================================
   Section 2: Gradient CTA Banner
   ========================================== */
.consultation-cta-banner {
  background: linear-gradient(135deg, #0a2540 0%, #173b52 50%, #1e7078 100%);
  border-radius: 20px;
  padding: 60px 30px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cta-content {
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* CTA Buttons */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 120px;
}

.btn-filled {
  background-color: #2aa399;
  color: #ffffff;
  border: 1px solid #2aa399;
}

.btn-filled:hover {
  background-color: #228b82;
  border-color: #228b82;
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   Responsive Adjustments
   ========================================== */
@media (max-width: 768px) {

  .main-heading,
  .cta-content h2 {
    font-size: 1.75rem;
  }

  .consultation-cta-banner {
    padding: 40px 20px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Site Footer Layout
   ========================================================================== */

.site-footer {
  background-color: #0f172a;
  /* Dark sleek slate background */
  color: #94a3b8;
  padding-top: 70px;
  padding-bottom: 30px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Footer Brand & About Section */
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  display: inline-block;
  text-decoration: none;
}

.footer-brand img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-brand h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.footer-about p {
  color: #94a3b8;
  margin: 0;
  max-width: 380px;
}

/* Footer Contact List */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
}

.footer-contact-item i {
  font-size: 1.2rem;
  color: #38bdf8;
  /* Accent color */
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #38bdf8;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  background-color: #38bdf8;
  color: #0f172a;
  border-color: #38bdf8;
  transform: translateY(-2px);
}

/* Footer Navigation Link Columns */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

/* ==========================================================================
   Footer Bottom Section
   ========================================================================== */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.875rem;
  color: #64748b;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .site-footer {
    padding-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-about {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .topbar{
    padding: 10px;
  }
  .site-header {
        top: -50px;

  }

 .topbar-left .topbar-item{
  display: none;
 }
 .hero-section{
  padding: 50px 0px;
 }
.about-section{
  padding: 30px 0px;
}
.home-service-section{
  padding: 30px 0px;
}
.why-robotic{
   padding: 30px 0px;
}
.home-achievement-section{
  padding: 30px 0px;
}
.contact-page-wrapper{
  padding: 30px 0px;
}
.contact-cards-section{
    padding: 30px 0px;
}
.contact-grid{
  padding: 20px;
}
    .consultation-cta-banner {
width: 95%;
margin: auto;

}
}

/* ==========================
   Contact Page
========================== */

.contact-page{
    padding:80px 0;
    background:#f7fafd;
}

.contact-page-head{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.section-label{
    display:inline-block;
    background:#e8f4ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.contact-page-head h1{
    font-size:42px;
    font-weight:700;
    color:#1a1a1a;
    margin-bottom:18px;
}

.contact-page-head p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* ==========================
   Info Cards
========================== */

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:60px;
}

.contact-info-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    text-decoration:none;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    border:1px solid #edf1f5;
}

.contact-info-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-info-card i{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border-radius:50%;
    background:#032D57;
    color:#fff;
    font-size:30px;
    margin-bottom:18px;
}

.contact-info-card span{
    display:block;
    color:#888;
    font-size:14px;
    margin-bottom:8px;
}

.contact-info-card strong{
    display:block;
    color:#222;
    font-size:18px;
    font-weight:600;
    line-height:1.6;
}

/* ==========================
   Layout
========================== */

.contact-main-layout{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:35px;
    align-items:start;
}

.contact-main-layout aside iframe{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.contact-form-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.contact-form-head{
    margin-bottom:30px;
}

.contact-form-head h2{
    font-size:32px;
    margin-top:10px;
    color:#222;
}

.contact-form-head p{
    color:#666;
    line-height:1.7;
    margin-top:10px;
}

/* ==========================
   Form
========================== */

.contact-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.contact-form-grid label{
    display:flex;
    flex-direction:column;
}

.contact-form-grid span{
    font-weight:600;
    margin-bottom:8px;
    color:#222;
}

.contact-form-grid em{
    color:red;
    font-style:normal;
}

.contact-form-grid input,
.contact-form-grid textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #d9e3ef;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:.3s;
    background:#fff;
}

.contact-form-grid textarea{
    min-height:170px;
    resize:vertical;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus{
    border-color:#032D57;
    box-shadow:0 0 0 4px rgba(13,110,253,.12);
}

.contact-email-field,
.contact-message-field{
    grid-column:1/-1;
}

/* ==========================
   Button
========================== */

.contact-submit-btn{
    margin-top:30px;
    width:100%;
    border:none;
    padding:16px;
    border-radius:12px;
    background:#032D57;
    color:#fff;
    font-size:17px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    transition:.3s;
}

.contact-submit-btn:hover{
    background:#032D57;
    transform:translateY(-2px);
}

/* ==========================
   Alerts
========================== */

.contact-alert,
.contact-error{
    padding:15px 18px;
    border-radius:10px;
    margin-bottom:20px;
    font-size:15px;
}

.contact-alert{
    background:#e7f8ee;
    color:#198754;
}

.contact-error{
    background:#ffe8e8;
    color:#dc3545;
}

/* ==========================
   Validation
========================== */

.contact-form-grid small{
    color:#dc3545;
    margin-top:5px;
    font-size:13px;
}

/* ==========================
   Responsive
========================== */

@media(max-width:991px){

.contact-main-layout{
    grid-template-columns:1fr;
}

.contact-info-grid{
    grid-template-columns:1fr;
}

.contact-form-grid{
    grid-template-columns:1fr;
}

.contact-email-field,
.contact-message-field{
    grid-column:auto;
}

.contact-page-head h1{
    font-size:34px;
}

.contact-form-head h2{
    font-size:28px;
}

}

@media(max-width:576px){

.contact-page{
    padding:60px 0;
}

.contact-form-card{
    padding:25px;
}

.contact-page-head h1{
    font-size:28px;
}

.contact-info-card{
    padding:25px 18px;
}

.contact-info-card strong{
    font-size:16px;
}

}

.inner-breadcrumb{
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

/* Dark Gradient Overlay */
.inner-breadcrumb::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(3, 46, 92, 0.75),
        rgba(1, 28, 81, 0.774)
    );
    z-index: -1;
}

/* Optional Pattern */
.breadcrumb-pattern{
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .4;
    z-index: -1;
}

.breadcrumb-content{
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.breadcrumb-subtitle{
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 18px;
}

.breadcrumb-content h1{
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb-nav{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.9);
}

.breadcrumb-nav a{
    color: #fff;
    text-decoration: none;
}

.breadcrumb-nav a:hover{
    color: #0dcaf0;
}

.breadcrumb-nav .divider{
    font-size: 14px;
    opacity: .8;
}

@media(max-width:768px){
    .inner-breadcrumb{
        padding: 80px 0;
    }

    .breadcrumb-content h1{
        font-size: 34px;
    }
}

/* ==========================================
   Service Detail Page
========================================== */

.service-detail-page {
    position: relative;
    overflow: hidden;
    background: #f5f9fd;
    padding: 72px 0 90px;
}

.service-detail-bg {
    position: absolute;
    inset: 0 0 auto;
    height: 560px;
    background:
        linear-gradient(135deg, rgba(3,45,87,.96), rgba(5,96,184,.88)),
        url("/uploads/banners/1784636939-banner-6a5f660b38f346.76657183.jpg") center/cover;
}

.service-detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .35;
}

.service-detail-wrap {
    position: relative;
    z-index: 1;
}

.service-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 38px;
    align-items: stretch;
    color: #fff;
}

.service-detail-hero-copy {
    align-self: center;
    padding: 26px 0 40px;
}

.service-detail-eyebrow,
.service-section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-detail-eyebrow {
    padding: 9px 15px;
    color: #c9ecff;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
}

.service-detail-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    color: #0560b8;
    font-size: 32px;
    margin: 24px 0 16px;
    box-shadow: 0 18px 38px rgba(0,0,0,.15);
}

.service-detail-hero-copy h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(40px, 5.3vw, 68px);
    line-height: 1.02;
    font-weight: 900;
}

.service-detail-hero-copy p {
    max-width: 810px;
    color: #d8ecfb;
    line-height: 1.8;
    font-size: 17px;
    margin: 0;
}

.service-detail-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.service-detail-primary,
.service-detail-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    padding: 13px 18px;
    text-decoration: none;
    font-weight: 850;
    transition: transform .25s ease, background .25s ease;
}

.service-detail-primary {
    background: #fff;
    color: #0560b8;
}

.service-detail-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
}

.service-detail-primary:hover,
.service-detail-secondary:hover {
    transform: translateY(-2px);
}

.service-detail-secondary:hover {
    color: #fff;
    background: rgba(255,255,255,.16);
}

.service-detail-hero-media {
    border-radius: 8px;
    overflow: hidden;
    min-height: 430px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    padding: 14px;
    box-shadow: 0 24px 70px rgba(3,23,43,.28);
}

.service-detail-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 402px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: start;
    margin-top: 34px;
}

.service-detail-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail-card,
.service-location-card,
.service-info-card,
.service-inquiry-card,
.service-related-card {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    box-shadow: 0 20px 55px rgba(15, 45, 75, .08);
}

.service-detail-card,
.service-info-card,
.service-inquiry-card,
.service-related-card {
    padding: 30px;
}

.service-section-label {
    color: #0560b8;
    background: #eaf6ff;
    padding: 7px 12px;
    margin-bottom: 14px;
}

.service-detail-card h2,
.service-info-card h3,
.service-related-card h3 {
    color: #032d57;
    margin: 0 0 16px;
    font-weight: 850;
    line-height: 1.25;
}

.service-detail-card h2 {
    font-size: 28px;
}

.service-detail-card p,
.service-detail-card div,
.service-inquiry-card p {
    color: #526172;
    line-height: 1.85;
    font-size: 15.5px;
}

.service-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-benefit-grid article {
    border: 1px solid #e3eefb;
    border-radius: 8px;
    background: #f8fbff;
    padding: 20px;
}

.service-benefit-grid i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #0560b8;
    color: #fff;
    font-size: 23px;
    margin-bottom: 16px;
}

.service-benefit-grid h3 {
    margin: 0 0 8px;
    color: #032d57;
    font-size: 18px;
    font-weight: 850;
}

.service-benefit-grid p {
    margin: 0;
    color: #5c6b7a;
    line-height: 1.7;
    font-size: 14px;
}

.service-condition-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.service-condition-grid span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    border: 1px solid #e3eefb;
    border-radius: 8px;
    background: #f8fbff;
    color: #334155;
    padding: 13px 14px;
    font-weight: 750;
    line-height: 1.55;
}

.service-condition-grid i {
    color: #0f766e;
    font-size: 18px;
    margin-top: 2px;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-process-grid article {
    border-radius: 8px;
    background: #f8fbff;
    border: 1px solid #e3eefb;
    padding: 20px;
}

.service-process-grid article > span {
    display: inline-flex;
    color: #0560b8;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 16px;
}

.service-process-grid h3 {
    color: #032d57;
    font-size: 18px;
    font-weight: 850;
    margin: 0 0 8px;
}

.service-process-grid p {
    margin: 0;
    color: #5c6b7a;
    line-height: 1.7;
    font-size: 14px;
}

.service-location-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
}

.service-location-card > i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eaf6ff;
    color: #0560b8;
    font-size: 24px;
}

.service-location-card span,
.service-location-card strong {
    display: block;
}

.service-location-card span {
    color: #64748b;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.service-location-card strong {
    color: #032d57;
    line-height: 1.45;
}

.service-location-card a {
    border-radius: 8px;
    background: #0560b8;
    color: #fff;
    text-decoration: none;
    font-weight: 850;
    padding: 12px 16px;
    white-space: nowrap;
}

.service-detail-side {
    position: sticky;
    top: 108px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-info-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.service-info-card dl div {
    border: 1px solid #e3eefb;
    border-radius: 8px;
    background: #f8fbff;
    padding: 13px 14px;
}

.service-info-card dt {
    color: #637083;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.service-info-card dd {
    color: #0f2742;
    font-weight: 850;
    margin: 0;
}

.service-inquiry-card {
    background: linear-gradient(135deg, #032d57, #0560b8);
    color: #fff;
}

.service-inquiry-card span,
.service-inquiry-card strong {
    display: block;
}

.service-inquiry-card span {
    color: #a9dcff;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-inquiry-card strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.35;
}

.service-inquiry-card p {
    color: #d7ecfb;
    margin: 14px 0 20px;
}

.service-inquiry-card a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 8px;
    background: #fff;
    color: #0560b8;
    text-decoration: none;
    font-weight: 850;
    padding: 12px 16px;
    margin-top: 10px;
}

.service-related-list {
    display: grid;
    gap: 10px;
}

.service-related-list a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 8px;
    background: #f8fbff;
    border: 1px solid #e3eefb;
    color: #032d57;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 14px;
}

.service-related-list i {
    color: #0560b8;
}

@media (max-width: 1200px) {
    .service-detail-hero {
        grid-template-columns: minmax(0, 1fr) 360px;
    }

    .service-detail-layout {
        grid-template-columns: minmax(0, 1fr) 350px;
    }

    .service-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .service-detail-page {
        padding: 52px 0 70px;
    }

    .service-detail-bg {
        height: 760px;
    }

    .service-detail-hero,
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-side {
        position: static;
    }
}

@media (max-width: 767px) {
    .service-detail-hero-media {
        min-height: 290px;
    }

    .service-detail-hero-media img {
        min-height: 260px;
    }

    .service-detail-primary,
    .service-detail-secondary,
    .service-detail-hero-actions,
    .service-benefit-grid,
    .service-condition-grid,
    .service-process-grid,
    .service-location-card {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .service-detail-card,
    .service-info-card,
    .service-inquiry-card,
    .service-related-card {
        padding: 22px;
    }

    .service-location-card a {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   Doctors Listing Page
========================================== */

.doctors-page {
    background: #f5f9fd;
    padding: 80px 0 90px;
}

.doctors-page-wrap {
    display: grid;
    gap: 28px;
}

.doctors-page-head {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 46px;
    background:
        linear-gradient(135deg, rgba(3,45,87,.96), rgba(5,96,184,.9)),
        url("/uploads/banners/1784636939-banner-6a5f660b38f346.76657183.jpg") center/cover;
    color: #fff;
}

.doctors-page-head::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .35;
}

.doctors-page-head > * {
    position: relative;
    z-index: 1;
}

.doctors-page-head span {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    color: #d9efff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.doctors-page-head h1 {
    max-width: 850px;
    margin: 18px 0 14px;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 900;
}

.doctors-page-head p {
    max-width: 760px;
    margin: 0;
    color: #d3e8f9;
    line-height: 1.75;
    font-size: 16px;
}

.doctors-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.doctors-page-actions a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    padding: 12px 16px;
    text-decoration: none;
    font-weight: 800;
}

.doctors-page-actions a:first-child {
    background: #fff;
    color: #0560b8;
}

.doctors-page-actions a:last-child {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.26);
    color: #fff;
}

.doctors-focus-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.doctors-focus-strip article {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    background: #fff;
    padding: 17px;
    box-shadow: 0 18px 42px rgba(15, 45, 75, .06);
}

.doctors-focus-strip i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eaf6ff;
    color: #0560b8;
    font-size: 23px;
    flex: 0 0 auto;
}

.doctors-focus-strip span {
    color: #032d57;
    font-weight: 850;
    line-height: 1.35;
}

.doctors-page-grid {
    display: grid;
    gap: 24px;
}

.doctors-list-card {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 20px 55px rgba(15, 45, 75, .08);
}

.doctors-list-photo {
    display: block;
    height: 390px;
    border-radius: 8px;
    overflow: hidden;
    background: #dbeafe;
}

.doctors-list-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.doctors-list-body {
    align-self: center;
    padding: 12px 14px 12px 0;
}

.doctors-list-kicker {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: #eaf6ff;
    color: #0560b8;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.doctors-list-body h3 {
    margin: 16px 0 10px;
    color: #032d57;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 900;
}

.doctors-list-speciality {
    margin: 0;
    color: #0f2742;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 850;
}

.doctors-list-qualification {
    margin: 8px 0 0;
    color: #617184;
    line-height: 1.7;
    font-weight: 650;
}

.doctors-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.doctors-list-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 8px;
    background: #f1f8ff;
    color: #064d89;
    padding: 9px 11px;
    font-size: 13px;
    font-weight: 850;
}

.doctors-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.doctors-list-tags span {
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    padding: 8px 11px;
    font-size: 13px;
    font-weight: 750;
}

.doctors-list-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.doctors-list-actions a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    padding: 12px 16px;
    text-decoration: none;
    font-weight: 850;
}

.doctors-list-actions a:first-child {
    background: #0560b8;
    color: #fff;
}

.doctors-list-actions a:last-child {
    background: #eaf6ff;
    color: #0560b8;
}

.doctors-help-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 8px;
    background: #032d57;
    color: #fff;
    padding: 26px 30px;
}

.doctors-help-band span,
.doctors-help-band strong {
    display: block;
}

.doctors-help-band span {
    color: #9fd6ff;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
}

.doctors-help-band strong {
    max-width: 760px;
    color: #fff;
    font-size: 21px;
    line-height: 1.4;
}

.doctors-help-band a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    background: #fff;
    color: #0560b8;
    text-decoration: none;
    font-weight: 850;
    padding: 12px 16px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .doctors-page {
        padding: 60px 0 70px;
    }

    .doctors-page-head {
        padding: 34px;
    }

    .doctors-focus-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .doctors-list-card {
        grid-template-columns: 1fr;
    }

    .doctors-list-photo {
        height: 420px;
    }

    .doctors-list-body {
        padding: 6px;
    }

    .doctors-help-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .doctors-page-head {
        padding: 26px;
    }

    .doctors-page-actions,
    .doctors-page-actions a,
    .doctors-focus-strip,
    .doctors-list-actions,
    .doctors-list-actions a {
        width: 100%;
    }

    .doctors-focus-strip {
        grid-template-columns: 1fr;
    }

    .doctors-list-card {
        padding: 14px;
    }

    .doctors-list-photo {
        height: 340px;
    }

    .doctors-list-body h3 {
        font-size: 31px;
    }

    .doctors-help-band {
        padding: 24px;
    }

    .doctors-help-band a {
        width: 100%;
    }
}

/*=====================================
        BLOG PAGE
=====================================*/

.blogs-page{
    padding:90px 0;
    background:#F7FBFF;
}

.blog-page-head{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.section-label{
    display:inline-block;
    padding:8px 18px;
    background:#DFF3FF;
    color:#0560B8;
    border-radius:40px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.blog-page-copy h1{
    font-size:46px;
    font-weight:700;
    color:#032D57;
    margin-bottom:18px;
}

.blog-page-copy p{
    color:#5b6b7b;
    line-height:1.9;
    font-size:16px;
}

/*=====================================
        LAYOUT
=====================================*/

.blog-page-body{
    display:grid;
    grid-template-columns:2fr 340px;
    gap:40px;
}

.blog-list-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/*=====================================
        CARD
=====================================*/

.blog-list-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    border:1px solid #E3EEF8;
    box-shadow:0 12px 30px rgba(3,45,87,.06);
}

.blog-list-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(5,96,184,.15);
}

.blog-list-image{
    display:block;
    position:relative;
    overflow:hidden;
}

.blog-list-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.blog-list-card:hover img{
    transform:scale(1.08);
}

.blog-list-image span{
    position:absolute;
    top:18px;
    left:18px;
    background:#0560B8;
    color:#fff;
    padding:7px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/*=====================================
        CONTENT
=====================================*/

.blog-list-content{
    padding:28px;
}

.blog-list-meta{
    display:flex;
    gap:20px;
    margin-bottom:15px;
    color:#6d7c8b;
    font-size:14px;
}

.blog-list-meta i{
    color:#0560B8;
    margin-right:5px;
}

.blog-list-content h2{
    font-size:24px;
    margin-bottom:15px;
    line-height:1.4;
}

.blog-list-content h2 a{
    color:#032D57;
    text-decoration:none;
    transition:.3s;
}

.blog-list-content h2 a:hover{
    color:#0560B8;
}

.blog-list-content p{
    color:#667788;
    line-height:1.8;
    margin-bottom:25px;
}

/*=====================================
        BUTTON
=====================================*/

.blog-read-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    background:#0560B8;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.blog-read-btn:hover{
    background:#032D57;
    color:#fff;
}

.blog-read-btn i{
    transition:.3s;
}

.blog-read-btn:hover i{
    transform:translateX(4px);
}

/*=====================================
        SIDEBAR
=====================================*/

.blog-sidebar{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.blog-sidebar-panel{
    background:#fff;
    border-radius:18px;
    padding:30px;
    border:1px solid #E3EEF8;
    box-shadow:0 10px 30px rgba(3,45,87,.05);
}

.blog-category-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:20px;
}

.blog-category-list span{
    background:#EAF6FF;
    color:#0560B8;
    padding:10px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.blog-category-list span:hover{
    background:#0560B8;
    color:#fff;
}

/*=====================================
        CTA BOX
=====================================*/

.blog-sidebar-panel.is-dark{
    background:linear-gradient(145deg,#032D57,#0560B8);
    color:#fff;
}

.blog-sidebar-panel.is-dark span{
    display:block;
    color:#BFDFFF;
    margin-bottom:12px;
}

.blog-sidebar-panel.is-dark strong{
    display:block;
    font-size:24px;
    line-height:1.5;
    margin-bottom:25px;
}

.blog-sidebar-panel.is-dark a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    color:#0560B8;
    padding:13px 22px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.blog-sidebar-panel.is-dark a:hover{
    background:#DFF3FF;
}

/*=====================================
        EMPTY
=====================================*/

.blog-empty{
    background:#fff;
    padding:60px;
    border-radius:18px;
    text-align:center;
    border:2px dashed #C7DDF2;
}

.blog-empty i{
    font-size:55px;
    color:#0560B8;
    margin-bottom:15px;
}

.blog-empty strong{
    display:block;
    font-size:22px;
    color:#032D57;
    margin-bottom:8px;
}

.blog-empty span{
    color:#6a7785;
}

/*=====================================
        RESPONSIVE
=====================================*/

@media(max-width:992px){

.blog-page-body{
    grid-template-columns:1fr;
}

.blog-list-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.blog-page-copy h1{
    font-size:34px;
}

.blog-list-image img{
    height:220px;
}

.blog-list-content{
    padding:22px;
}

}

@media(max-width:576px){

.blogs-page{
    padding:60px 0;
}

.blog-page-copy h1{
    font-size:28px;
}

.blog-list-content h2{
    font-size:21px;
}

.blog-sidebar-panel{
    padding:22px;
}

}

/*=========================================
        BLOG DETAIL PAGE
=========================================*/

.blog-detail-page{
    background:#F7FBFF;
    padding:80px 0;
}

.blog-detail-wrap{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/*=========================================
        HERO
=========================================*/

.blog-detail-hero{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:70px;
}

.blog-pill{
    display:inline-block;
    background:#EAF6FF;
    color:#0560B8;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.blog-detail-hero-copy h1{
    font-size:48px;
    line-height:1.2;
    color:#032D57;
    margin-bottom:20px;
    font-weight:700;
}

.blog-detail-hero-copy p{
    color:#5c6b7b;
    line-height:1.9;
    font-size:17px;
    margin-bottom:25px;
}

.blog-detail-meta{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    color:#6b7b88;
}

.blog-detail-meta span{
    display:flex;
    align-items:center;
    gap:8px;
}

.blog-detail-meta i{
    color:#0560B8;
}

.blog-detail-hero-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(3,45,87,.12);
    object-fit:cover;
}

/*=========================================
        LAYOUT
=========================================*/

.blog-detail-layout{
    display:grid;
    grid-template-columns:2fr 360px;
    gap:40px;
    align-items:start;
}

/*=========================================
        ARTICLE
=========================================*/

.blog-detail-main{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(3,45,87,.06);
}

.blog-detail-copy{
    color:#465564;
    line-height:1.9;
    font-size:17px;
}

.blog-detail-copy h2,
.blog-detail-copy h3{
    color:#032D57;
    margin:35px 0 18px;
}

.blog-detail-copy p{
    margin-bottom:18px;
}

.blog-detail-copy ul,
.blog-detail-copy ol{
    padding-left:20px;
    margin-bottom:20px;
}

.blog-detail-copy li{
    margin-bottom:10px;
}

.blog-detail-copy img{
    width:100%;
    border-radius:15px;
    margin:25px 0;
}

.blog-detail-copy blockquote{
    border-left:5px solid #0560B8;
    background:#F2F9FF;
    padding:25px;
    border-radius:10px;
    margin:30px 0;
    font-style:italic;
}

/*=========================================
        SIDEBAR
=========================================*/

.blog-side-panel{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.blog-side-box{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(3,45,87,.05);
}

.blog-side-box h3{
    color:#032D57;
    margin-bottom:20px;
    font-size:22px;
}

/*=========================================
        CONTACT BOX
=========================================*/

.blog-contact-box{
    background:linear-gradient(135deg,#032D57,#0560B8);
    color:#fff;
}

.blog-contact-box .section-label{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.blog-contact-box strong{
    display:block;
    font-size:28px;
    margin:15px 0;
}

.blog-contact-box p{
    color:#d9eaff;
    line-height:1.8;
    margin-bottom:25px;
}

.blog-contact-box a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 24px;
    background:#fff;
    color:#0560B8;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.blog-contact-box a:hover{
    background:#EAF6FF;
}

/*=========================================
        RELATED POSTS
=========================================*/

.blog-related-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.blog-related-list a{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:#032D57;
    transition:.3s;
}

.blog-related-list img{
    width:90px;
    height:75px;
    object-fit:cover;
    border-radius:10px;
}

.blog-related-list span{
    font-weight:600;
    line-height:1.5;
}

.blog-related-list a:hover span{
    color:#0560B8;
}

/*=========================================
        TAGS
=========================================*/

.blog-tag-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.blog-tag-list a,
.blog-tag-list span{
    background:#EAF6FF;
    color:#0560B8;
    text-decoration:none;
    padding:10px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.blog-tag-list a:hover{
    background:#0560B8;
    color:#fff;
}

/*=========================================
        TABLE
=========================================*/

.blog-detail-copy table{
    width:100%;
    border-collapse:collapse;
    margin:30px 0;
}

.blog-detail-copy table th{
    background:#0560B8;
    color:#fff;
    padding:14px;
}

.blog-detail-copy table td{
    border:1px solid #d8e6f4;
    padding:14px;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

.blog-detail-hero{
    grid-template-columns:1fr;
}

.blog-detail-layout{
    grid-template-columns:1fr;
}

.blog-detail-main{
    padding:30px;
}

}

@media(max-width:768px){

.blog-detail-page{
    padding:60px 0;
}

.blog-detail-hero-copy h1{
    font-size:34px;
}

.blog-detail-main{
    padding:25px;
}

.blog-side-box{
    padding:22px;
}

.blog-contact-box strong{
    font-size:24px;
}

.blog-detail-copy{
    font-size:16px;
}

}

@media(max-width:576px){

.blog-detail-hero-copy h1{
    font-size:28px;
}

.blog-detail-meta{
    gap:15px;
    flex-direction:column;
}

.blog-related-list img{
    width:75px;
    height:65px;
}

}
/*=========================================
            FAQ PAGE
=========================================*/

.faq-page{
    padding:90px 0;
    background:#F7FBFF;
}

.faq-page-head{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.section-label{
    display:inline-block;
    padding:8px 18px;
    background:#EAF6FF;
    color:#0560B8;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.faq-page-head h1{
    font-size:46px;
    font-weight:700;
    color:#032D57;
    margin-bottom:18px;
}

.faq-page-head p{
    font-size:16px;
    color:#627384;
    line-height:1.9;
}

/*=========================================
            LAYOUT
=========================================*/

.faq-page-layout{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:35px;
    align-items:start;
}

/*=========================================
            LEFT CARD
=========================================*/

.faq-help-card{
    background:linear-gradient(135deg,#032D57,#0560B8);
    color:#fff;
    padding:35px;
    border-radius:20px;
    position:sticky;
    top:100px;
}

.faq-help-card .section-label{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.faq-help-card strong{
    display:block;
    font-size:28px;
    line-height:1.4;
    margin:18px 0;
}

.faq-help-card p{
    color:#d9ebff;
    line-height:1.9;
    margin-bottom:25px;
}

.faq-help-list{
    list-style:none;
    margin:0 0 30px;
    padding:0;
}

.faq-help-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
    color:#fff;
}

.faq-help-list i{
    width:28px;
    height:28px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.faq-help-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:#fff;
    color:#0560B8;
    padding:15px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.faq-help-btn:hover{
    background:#EAF6FF;
    color:#032D57;
}

/*=========================================
            ACCORDION
=========================================*/

.faq-page-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-page-item{
    border:none;
    border-radius:16px !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(3,45,87,.06);
}

.faq-page-item .accordion-button{
    background:#fff;
    color:#032D57;
    font-size:18px;
    font-weight:600;
    padding:22px 28px;
    box-shadow:none;
}

.faq-page-item .accordion-button:not(.collapsed){
    background:#0560B8;
    color:#fff;
}

.faq-page-item .accordion-button:focus{
    box-shadow:none;
}

.faq-page-item .accordion-button::after{
    filter:brightness(0);
}

.faq-page-item .accordion-button:not(.collapsed)::after{
    filter:brightness(100);
}

.faq-page-answer{
    background:#fff;
    color:#5f6d7c;
    line-height:1.9;
    font-size:16px;
    padding:25px 30px;
}

.faq-page-answer p:last-child{
    margin-bottom:0;
}

/*=========================================
            EMPTY
=========================================*/

.client-empty{
    background:#fff;
    border-radius:20px;
    padding:70px 40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(3,45,87,.05);
}

.client-empty i{
    font-size:60px;
    color:#0560B8;
    margin-bottom:18px;
}

.client-empty strong{
    display:block;
    color:#032D57;
    font-size:26px;
    margin-bottom:12px;
}

.client-empty span{
    display:block;
    color:#687888;
    line-height:1.8;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.faq-page-layout{
    grid-template-columns:1fr;
}

.faq-help-card{
    position:relative;
    top:0;
}

}

@media(max-width:768px){

.faq-page{
    padding:60px 0;
}

.faq-page-head h1{
    font-size:34px;
}

.faq-help-card{
    padding:28px;
}

.faq-help-card strong{
    font-size:24px;
}

.faq-page-item .accordion-button{
    font-size:16px;
    padding:18px 20px;
}

.faq-page-answer{
    padding:20px;
}

}

@media(max-width:576px){

.faq-page-head h1{
    font-size:28px;
}

.faq-help-card{
    padding:22px;
}

.client-empty{
    padding:45px 20px;
}

.client-empty strong{
    font-size:22px;
}

}

/*=========================================
            GALLERY PAGE
=========================================*/

.gallery-section{
    padding:90px 0;
    background:#F7FBFF;
}

.home-service-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:40px;
    margin-bottom:55px;
}

.home-service-head span{
    display:inline-block;
    background:#EAF6FF;
    color:#0560B8;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.home-service-head h2{
    font-size:46px;
    font-weight:700;
    color:#032D57;
    margin:0;
}

.home-service-head p{
    max-width:450px;
    color:#667788;
    line-height:1.8;
    font-size:16px;
}

/*=========================================
            GRID
=========================================*/

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/*=========================================
            ITEM
=========================================*/

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    display:block;
    background:#fff;
    box-shadow:0 12px 30px rgba(3,45,87,.08);
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

/*=========================================
            OVERLAY
=========================================*/

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(5,96,184,.10),
        rgba(3,45,87,.85)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    transition:.35s;
}

.gallery-overlay i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    color:#0560B8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transform:scale(.5);
    transition:.35s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

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

.gallery-item:hover .gallery-overlay i{
    transform:scale(1);
}

/*=========================================
            EMPTY
=========================================*/

.gallery-empty{
    background:#fff;
    padding:70px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(3,45,87,.05);
}

.gallery-empty i{
    font-size:65px;
    color:#0560B8;
}

.gallery-empty h4{
    color:#032D57;
    font-weight:700;
}

.gallery-empty p{
    color:#667788;
}

/*=========================================
            LIGHTBOX
=========================================*/

.glightbox-clean .gslide-description{
    background:#032D57;
    color:#fff;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:1200px){

.gallery-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:992px){

.home-service-head{
    flex-direction:column;
    align-items:flex-start;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.home-service-head h2{
    font-size:36px;
}

}

@media(max-width:576px){

.gallery-section{
    padding:60px 0;
}

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item img{
    height:250px;
}

.home-service-head h2{
    font-size:28px;
}

.home-service-head p{
    font-size:15px;
}

.gallery-overlay i{
    width:60px;
    height:60px;
    font-size:24px;
}

}

/* ==========================================
   ABOUT PAGE
========================================== */

.about-full-page{
    background:#fff;
    overflow:hidden;
}

.about-full-wrap{
    max-width:1320px;
    margin:auto;
    padding:70px 15px;
}

/* ==========================================
   HERO
========================================== */

.about-full-hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-bottom:80px;
}

.about-full-copy span{
    display:inline-flex;
    align-items:center;
    padding:8px 18px;
    border-radius:50px;
    background:#EAF6FF;
    color:#0560B8;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.about-full-copy h2{
    font-size:50px;
    line-height:1.2;
    color:#032D57;
    margin-bottom:25px;
    font-weight:700;
}

.about-full-copy p{
    font-size:17px;
    color:#5c6673;
    line-height:1.8;
    margin-bottom:35px;
}

.about-full-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.about-full-actions a{
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
    font-weight:600;
    transition:.35s;
}

.about-full-actions a:first-child{
    background:#0560B8;
    color:#fff;
}

.about-full-actions a:first-child:hover{
    background:#032D57;
}

.about-full-actions a:last-child{
    border:2px solid #0560B8;
    color:#0560B8;
}

.about-full-actions a:last-child:hover{
    background:#0560B8;
    color:#fff;
}

.about-full-media img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* ==========================================
   STATS
========================================== */

.about-full-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:90px;
}

.about-full-stats article{
    background:#fff;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    border:1px solid #d9ebfb;
    transition:.35s;
}

.about-full-stats article:hover{
    background:#0560B8;
    color:#fff;
    transform:translateY(-8px);
}

.about-full-stats article i{
    font-size:42px;
    color:#0560B8;
    margin-bottom:18px;
    display:block;
}

.about-full-stats article:hover i{
    color:#fff;
}

.about-full-stats strong{
    display:block;
    font-size:34px;
    color:#032D57;
    margin-bottom:8px;
}

.about-full-stats article:hover strong{
    color:#fff;
}

.about-full-stats span{
    color:#666;
}

.about-full-stats article:hover span{
    color:#fff;
}

/* ==========================================
   SECTION TITLE
========================================== */

.about-full-intro{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:40px;
    margin-bottom:50px;
}

.about-full-intro span{
    color:#0560B8;
    font-weight:700;
    margin-bottom:10px;
    display:block;
}

.about-full-intro h2{
    color:#032D57;
    font-size:42px;
    line-height:1.3;
}

.about-full-intro p{
    color:#666;
    line-height:1.9;
    max-width:550px;
}

/* ==========================================
   CAPABILITY GRID
========================================== */

.about-capability-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:90px;
}

.about-capability-grid article{
    background:#fff;
    border-radius:18px;
    padding:35px;
    border:1px solid #dbeeff;
    transition:.35s;
}

.about-capability-grid article:hover{
    background:#032D57;
    transform:translateY(-8px);
}

.about-capability-grid i{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#EAF6FF;
    color:#0560B8;
    font-size:32px;
    margin-bottom:25px;
}

.about-capability-grid h3{
    color:#032D57;
    margin-bottom:15px;
    font-size:22px;
}

.about-capability-grid p{
    color:#666;
    line-height:1.8;
}

.about-capability-grid article:hover h3,
.about-capability-grid article:hover p{
    color:#fff;
}

/* ==========================================
   STORY
========================================== */

.about-story-panel{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:90px;
}

.about-story-images img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:24px;
}

.about-story-copy span{
    color:#0560B8;
    font-weight:700;
}

.about-story-copy h2{
    margin:20px 0;
    font-size:42px;
    color:#032D57;
}

.about-story-copy p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

/* ==========================================
   PROCESS
========================================== */

.about-process-section{
    margin-bottom:90px;
}

.about-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.about-process-grid article{
    background:#EAF6FF;
    border-radius:20px;
    padding:35px;
    transition:.35s;
}

.about-process-grid article:hover{
    background:#0560B8;
    color:#fff;
}

.about-process-grid span{
    font-size:55px;
    color:#0560B8;
    font-weight:700;
}

.about-process-grid article:hover span{
    color:#fff;
}

.about-process-grid h3{
    margin:20px 0 15px;
    color:#032D57;
}

.about-process-grid article:hover h3{
    color:#fff;
}

.about-process-grid p{
    color:#666;
    line-height:1.8;
}

.about-process-grid article:hover p{
    color:#fff;
}

/* ==========================================
   MORE SECTION
========================================== */

.about-more-list{
    display:flex;
    flex-direction:column;
    gap:40px;
    margin-bottom:90px;
}

.about-more-list article{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:35px;
    align-items:center;
}

.about-more-list img{
    width:100%;
    height:240px;
    border-radius:18px;
    object-fit:cover;
}

.about-more-list span{
    color:#0560B8;
    font-weight:600;
}

.about-more-list h2{
    color:#032D57;
    margin:15px 0;
}

.about-more-list p{
    color:#666;
    line-height:1.9;
}

.doctor-about-more article {
    grid-template-columns: 1fr;
    background: #fff;
    border: 1px solid #dbeeff;
    border-radius: 18px;
    padding: 35px;
}

.doctor-about-more ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.doctor-about-more li {
    position: relative;
    background: #f8fbff;
    border: 1px solid #e3eefb;
    border-radius: 8px;
    padding: 13px 14px 13px 38px;
    color: #334155;
    line-height: 1.65;
    font-weight: 650;
}

.doctor-about-more li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0560b8;
}

/* ==========================================
   SERVICES
========================================== */

.about-service-preview{
    margin-bottom:90px;
}

.about-service-preview-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.about-service-preview-grid a{
    background:#fff;
    border:1px solid #dcefff;
    border-radius:18px;
    padding:30px;
    text-decoration:none;
    transition:.35s;
}

.about-service-preview-grid a:hover{
    background:#032D57;
    transform:translateY(-6px);
}

.about-service-preview-grid i{
    font-size:38px;
    color:#0560B8;
    margin-bottom:18px;
    display:block;
}

.about-service-preview-grid span{
    display:block;
    color:#0560B8;
    margin-bottom:8px;
}

.about-service-preview-grid strong{
    color:#032D57;
    font-size:20px;
}

.about-service-preview-grid a:hover i,
.about-service-preview-grid a:hover span,
.about-service-preview-grid a:hover strong{
    color:#fff;
}

/* ==========================================
   CTA
========================================== */

.about-full-cta{
    background:linear-gradient(135deg,#032D57,#0560B8);
    border-radius:25px;
    padding:60px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.about-full-cta span{
    opacity:.9;
}

.about-full-cta h2{
    margin-top:15px;
    font-size:42px;
}

.about-full-cta a{
    background:#fff;
    color:#0560B8;
    padding:18px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.about-full-cta a:hover{
    background:#EAF6FF;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){

.about-capability-grid,
.about-process-grid,
.about-service-preview-grid,
.about-full-stats{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:991px){

.about-full-hero,
.about-story-panel,
.about-full-intro,
.about-more-list article,
.about-full-cta{
grid-template-columns:1fr;
display:grid;
}

.about-full-copy h2,
.about-story-copy h2,
.about-full-intro h2,
.about-full-cta h2{
font-size:34px;
}

.about-full-media img,
.about-story-images img{
height:420px;
}

.about-full-cta{
text-align:center;
justify-items:center;
}

}

@media(max-width:767px){

.about-capability-grid,
.about-process-grid,
.about-service-preview-grid,
.about-full-stats{
grid-template-columns:1fr;
}

.about-full-copy h2{
font-size:30px;
}

.about-full-media img{
height:320px;
}

.about-story-images img{
height:320px;
}

.about-full-wrap{
padding:50px 15px;
}

.doctor-about-more ul{
grid-template-columns:1fr;
}

}

/* ==========================================
   Doctor Detail Page
========================================== */

.doctor-detail-page {
    position: relative;
    overflow: hidden;
    background: #f5f9fd;
    padding: 70px 0 90px;
}

.doctor-detail-bg {
    position: absolute;
    inset: 0 0 auto;
    height: 560px;
    background:
        linear-gradient(135deg, rgba(3,45,87,.96), rgba(5,96,184,.86)),
        url("/uploads/banners/1784636939-banner-6a5f660b38f346.76657183.jpg") center/cover;
}

.doctor-detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .35;
}

.doctor-detail-wrap {
    position: relative;
    z-index: 1;
}

.doctor-detail-hero {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 44px;
    align-items: stretch;
    color: #fff;
}

.doctor-detail-photo-panel {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 8px;
    padding: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 70px rgba(3,23,43,.28);
}

.doctor-detail-photo {
    height: 440px;
    border-radius: 8px;
    overflow: hidden;
    background: #dbeafe;
}

.doctor-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.doctor-detail-status {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: #fff;
    color: #0f2742;
    border-radius: 8px;
    padding: 13px 14px;
}

.doctor-detail-status span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #0f766e;
}

.doctor-detail-status i {
    font-size: 17px;
}

.doctor-detail-status strong {
    font-size: 14px;
    white-space: nowrap;
}

.doctor-detail-copy {
    align-self: center;
    padding: 24px 0 34px;
}

.doctor-detail-eyebrow,
.doctor-detail-section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.doctor-detail-eyebrow {
    padding: 9px 15px;
    color: #c9ecff;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
}

.doctor-detail-copy h1 {
    margin: 18px 0 12px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.02;
    font-weight: 900;
    color: #fff;
}

.doctor-detail-speciality {
    margin: 0;
    max-width: 780px;
    color: #e6f4ff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
}

.doctor-detail-qualification {
    margin: 10px 0 0;
    max-width: 820px;
    color: #b8d7ee;
    font-size: 15px;
    line-height: 1.7;
}

.doctor-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.doctor-detail-primary,
.doctor-detail-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    padding: 13px 18px;
    text-decoration: none;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.doctor-detail-primary {
    background: #fff;
    color: #0560b8;
    box-shadow: 0 15px 34px rgba(0,0,0,.16);
}

.doctor-detail-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
}

.doctor-detail-primary:hover,
.doctor-detail-secondary:hover {
    transform: translateY(-2px);
}

.doctor-detail-secondary:hover {
    color: #fff;
    background: rgba(255,255,255,.16);
}

.doctor-detail-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.doctor-detail-facts article {
    min-height: 132px;
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(3, 45, 87, .16);
}

.doctor-detail-facts i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eaf6ff;
    color: #0560b8;
    font-size: 21px;
    margin-bottom: 12px;
}

.doctor-detail-facts strong,
.doctor-detail-facts span {
    display: block;
}

.doctor-detail-facts strong {
    color: #032d57;
    font-size: 16px;
    line-height: 1.35;
}

.doctor-detail-facts span {
    color: #4b8ec8;
    font-size: 13px;
    margin-top: 5px;
}

.doctor-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 28px;
    align-items: start;
    margin-top: 34px;
}

.doctor-detail-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.doctor-detail-card,
.doctor-location-card,
.doctor-appointment-panel {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    box-shadow: 0 20px 55px rgba(15, 45, 75, .08);
}

.doctor-detail-card {
    padding: 34px;
}

.doctor-detail-section-label {
    color: #0560b8;
    background: #eaf6ff;
    padding: 7px 12px;
    margin-bottom: 14px;
}

.doctor-detail-card h2 {
    margin: 0 0 16px;
    color: #032d57;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 850;
}

.doctor-detail-card p,
.doctor-detail-prose {
    color: #526172;
    line-height: 1.85;
    font-size: 15.5px;
}

.doctor-detail-prose p:last-child {
    margin-bottom: 0;
}

.doctor-appointment-copy-card {
    background: linear-gradient(135deg, #fff, #eef7ff);
}

.doctor-appointment-copy-card a {
    width: fit-content;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    border-radius: 8px;
    background: #0560b8;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 16px;
}

.doctor-timeline-list,
.doctor-check-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.doctor-timeline-list div,
.doctor-check-list span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    border: 1px solid #e3eefb;
    border-radius: 8px;
    background: #f8fbff;
    padding: 14px 16px;
    color: #334155;
    line-height: 1.65;
    font-size: 14.5px;
    font-weight: 650;
}

.doctor-timeline-list i,
.doctor-check-list i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eaf6ff;
    color: #0560b8;
    font-size: 18px;
    margin-top: 1px;
}

.doctor-expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.doctor-expertise-grid article {
    border: 1px solid #e3eefb;
    background: #f8fbff;
    border-radius: 8px;
    padding: 20px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.doctor-expertise-grid article:hover {
    transform: translateY(-3px);
    border-color: #9ed2ff;
    background: #fff;
}

.doctor-expertise-grid i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #0560b8;
    color: #fff;
    font-size: 23px;
    margin-bottom: 16px;
}

.doctor-expertise-grid h3 {
    margin: 0 0 8px;
    color: #032d57;
    font-size: 18px;
    font-weight: 800;
}

.doctor-expertise-grid p {
    margin: 0;
    color: #5c6b7a;
    line-height: 1.7;
    font-size: 14px;
}

.doctor-detail-split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.doctor-credential-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.doctor-credential-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border-radius: 8px;
    background: #eff7ff;
    color: #064d89;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 800;
}

.doctor-info-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.doctor-info-list div {
    border: 1px solid #e3eefb;
    border-radius: 8px;
    padding: 13px 14px;
    background: #f8fbff;
}

.doctor-info-list dt {
    color: #637083;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.doctor-info-list dd {
    color: #0f2742;
    font-weight: 800;
    margin: 0;
}

.doctor-location-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
}

.doctor-location-card > i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eaf6ff;
    color: #0560b8;
    font-size: 24px;
}

.doctor-location-card span,
.doctor-location-card strong {
    display: block;
}

.doctor-location-card span {
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.doctor-location-card strong {
    color: #032d57;
    line-height: 1.45;
}

.doctor-location-card a {
    border-radius: 8px;
    background: #0560b8;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 16px;
    white-space: nowrap;
}

.doctor-appointment-panel {
    position: sticky;
    top: 108px;
    padding: 24px;
}

.doctor-appointment-panel .contact-form-head {
    margin-bottom: 18px;
}

.doctor-appointment-panel .contact-form-head h2 {
    color: #032d57;
    font-size: 26px;
    margin: 0 0 8px;
}

.doctor-appointment-panel .contact-form-head p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

.doctor-appointment-panel .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
}

.doctor-appointment-panel .contact-form-grid label {
    margin: 0;
}

.doctor-panel-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
}

.doctor-panel-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border-radius: 8px;
    background: #eff7ff;
    color: #0560b8;
    text-decoration: none;
    font-weight: 800;
}

.doctor-related-block {
    margin-top: 54px;
}

@media (max-width: 1200px) {
    .doctor-detail-hero {
        grid-template-columns: 330px minmax(0, 1fr);
        gap: 30px;
    }

    .doctor-detail-photo {
        height: 390px;
    }

    .doctor-detail-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .doctor-detail-layout {
        grid-template-columns: minmax(0, 1fr) 370px;
    }
}

@media (max-width: 991px) {
    .doctor-detail-page {
        padding: 50px 0 70px;
    }

    .doctor-detail-bg {
        height: 720px;
    }

    .doctor-detail-hero,
    .doctor-detail-layout,
    .doctor-detail-split-card {
        grid-template-columns: 1fr;
    }

    .doctor-detail-photo-panel {
        max-width: 420px;
    }

    .doctor-detail-copy {
        padding: 0 0 10px;
    }

    .doctor-appointment-panel {
        position: static;
    }
}

@media (max-width: 767px) {
    .doctor-detail-page {
        padding-top: 34px;
    }

    .doctor-detail-photo {
        height: 340px;
    }

    .doctor-detail-copy h1 {
        font-size: 36px;
    }

    .doctor-detail-speciality {
        font-size: 17px;
    }

    .doctor-detail-actions,
    .doctor-detail-primary,
    .doctor-detail-secondary {
        width: 100%;
    }

    .doctor-detail-facts,
    .doctor-expertise-grid,
    .doctor-location-card {
        grid-template-columns: 1fr;
    }

    .doctor-detail-card,
    .doctor-appointment-panel {
        padding: 22px;
    }

    .doctor-location-card {
        justify-items: start;
    }

    .doctor-location-card a {
        width: 100%;
        text-align: center;
    }
}
