:root {
  --ssk-primary: #002e6d;
  --ssk-dark: #001f4d;
  --ssk-blue: #063b88;
  --ssk-light: #f5f9ff;
  --ssk-text: #10284c;
  --ssk-muted: #60718f;
  --ssk-border: #dfe9f7;
  --ssk-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
  color: var(--ssk-text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.ssk-container {
  max-width: 1280px !important;
  margin: auto;
  padding: 0 18px;
}

.ssk-topbar {
  background: #00275f;
  color: #ffffff;
  font-size: 12px;
  padding: 9px 0;
}

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

.ssk-top-left, .ssk-top-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ssk-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.ssk-topbar i {
  font-size: 14px;
}

.ssk-social i {
  background: rgba(255,255,255,.12);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-size: 11px;
}

.ssk-header {
  background: #ffffff;
  box-shadow: 0 4px 22px rgba(0, 35, 85, .08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.ssk-navbar {
  min-height: 92px;
}

.ssk-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ssk-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--ssk-primary);
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.ssk-logo-text h4 {
  color: var(--ssk-primary);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  letter-spacing: .4px;
}

.ssk-logo-text h5 {
  color: var(--ssk-primary);
  font-size: 17px;
  font-weight: 700;
  margin: 2px 0 0;
  letter-spacing: 3px;
}

.ssk-logo-text p {
  color: #31557e;
  font-size: 10px;
  margin: 2px 0 0;
  font-weight: 500;
}

.ssk-menu .nav-link {
  color: #1b2b46;
  font-size: 13px;
  font-weight: 600;
  padding: 34px 13px !important;
  position: relative;
}

.ssk-main-btn {
  background: var(--ssk-primary);
  color: #ffffff;
  padding: 14px 29px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 12px 24px rgba(0, 46, 109, .22);
  transition: .3s;
}

.ssk-main-btn:hover {
  background: #00419a;
  color: #fff;
  transform: translateY(-2px);
}

.ssk-white-btn {
  background: #ffffff;
  color: var(--ssk-primary);
  padding: 15px 27px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 16px 35px rgba(0,0,0,.18);
}

.ssk-white-btn i {
  background: var(--ssk-primary);
  color: #fff;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.ssk-outline-btn {
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.42);
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #00419a;
  backdrop-filter: blur(8px);
}

.ssk-outline-btn i {
  background: rgba(255,255,255,.18);
  color: #fff;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.ssk-hero {
  position: relative;
  min-height: 445px;
  background:linear-gradient(90deg, rgba(0,34,82,.99) 0%, rgba(0,47,111,.3) 38%, rgba(0,47,111,.11) 63%, rgba(0,47,111,.05) 100%),
        url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  color: #fff;
}

.ssk-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0,89,190,.22), transparent 38%);
  pointer-events: none;
}

.ssk-hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 50px 0;
}

.ssk-hero-tag {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ssk-hero-tag::after {
  content: "";
  width: 48px;
  height: 2px;
  background: #ffffff;
  display: block;
}

.ssk-hero h1 {
  
  line-height: 1.18;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -.8px;
}

.ssk-hero p {
  color: #e8f2ff;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 27px;
  max-width: 460px;
}

.ssk-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ssk-hero-feature-box {
  position: absolute;
  right: 11%;
  bottom: 18px;
  width: 480px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 22px 45px rgba(0,0,0,.2);
  z-index: 3;
  padding: 8px 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.ssk-hero-feature {
  padding: 0 12px;
  border-right: 1px solid #edf2f9;
}

.ssk-hero-feature:last-child {
  border-right: 0;
}

.ssk-hero-feature i {
  color: var(--ssk-primary);
  font-size: 31px;
  margin-bottom: 9px;
  display: block;
}

.ssk-hero-feature h6 {
  color: #10284c;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  margin: 0;
}

.ssk-about {
  padding: 26px 0 38px;
  background: #fff;
}

.ssk-about-img {
  position: relative;
  /* padding-left: 25px; */
}

.ssk-about-img img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 35px rgba(0, 42, 105, .12);
}

.ssk-experience {
  position: absolute;
  left: 0;
  bottom: 18px;
  background: var(--ssk-primary);
  color: #fff;
  width: 150px;
  height: 145px;
  border-radius: 5px;
  padding: 21px 18px;
  box-shadow: 0 20px 35px rgba(0, 46, 109, .28);
}

.ssk-experience h3 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 8px;
}

.ssk-experience p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  color: #fff;
  font-weight: 500;
}

.ssk-small-title {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ssk-primary);
  font-weight: 800;
  letter-spacing: .3px;
  margin-bottom: 8px;
  display: block;
}

.ssk-section-title {
  font-size: 27px;
  line-height: 1.25;
  color: var(--ssk-primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.ssk-para {
  color: #5d6d88;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 0;
}

.ssk-stats-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.ssk-stat-item {
  background: #fff;
  border: 1px solid #e6eefb;
  border-radius: 16px;
  padding: 16px 13px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 8px 25px rgba(0, 48, 113, 0.06);
  transition: 0.3s ease;
}

.ssk-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 48, 113, 0.12);
}

.ssk-stat-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 14px;
  /* background: linear-gradient(135deg, #003071, #1659c7); */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}




.ssk-stat-item h4 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #003071;
}

.ssk-stat-item p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #64748b;
}

/* Tablet */
@media (max-width: 991px) {
  .ssk-stats-index {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ssk-stats-index {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 25px;
  }

  .ssk-stat-item {
    flex-direction: column;
    text-align: center;
    padding: 18px 12px;
    gap: 12px;
    border-radius: 14px;
  }

  .ssk-stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 20px;
  }

  .ssk-stat-item h4 {
    font-size: 22px;
  }

  .ssk-stat-item p {
    font-size: 13px;
    margin-top: 2px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .ssk-stats-index {
    gap: 12px;
  }

  .ssk-stat-item {
    padding: 16px 10px;
  }

  .ssk-stat-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 18px;
  }

  .ssk-stat-item h4 {
    font-size: 20px;
  }

  .ssk-stat-item p {
    font-size: 12px;
  }
}

.ssk-departments {
  background: #f6faff;
  padding: 34px 0 32px;
}

.ssk-dept-left h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ssk-primary);
  line-height: 1.3;
  margin-bottom: 18px;
}

.ssk-dept-card {
  height: 145px;
  background: #ffffff;
  border-radius: 7px;
  box-shadow: 0 10px 25px rgba(0, 38, 90, .08);
  border: 1px solid #edf3fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.ssk-dept-card::before {
  content: "";
  position: absolute;
  top: 0;
  width: 44px;
  height: 3px;
  background: var(--ssk-primary);
  opacity: 0;
  transition: .3s;
}

.ssk-dept-card:hover::before {
  opacity: 1;
}

.ssk-dept-card:hover {
  transform: translateY(-5px);
}

.ssk-dept-card .ssk-icon-round {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef5ff;
  display: grid;
  place-items: center;
  color: var(--ssk-primary);
  font-size: 28px;
  margin-bottom: 12px;
}

.ssk-dept-card h5 {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  color: #122b50;
  text-align: center;
  margin: 0;
}

.ssk-why {
  background: linear-gradient(90deg, rgba(0,34,82,.98), rgba(0,52,121,.98)),
        url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center;
  padding: 33px 0;
  color: #fff;
}

.ssk-why-title h2 {
  font-size: 25px;
  line-height: 1.35;
  font-weight: 800;
  margin: 0;
}

.ssk-why-card {
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 7px;
  padding: 23px 20px;
  min-height: 118px;
  
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.03);
}

.ssk-why-card i {
  font-size: 33px;
  color: #fff;
  flex: 0 0 auto;
}

.ssk-why-card h5 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 5px;
}

.ssk-why-card p {
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
  color: #dcecff;
}

.ssk-facility-doctors {
  padding: 31px 0 24px;
  background: #fff;
}

.ssk-facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ssk-border);
  border-left: 1px solid var(--ssk-border);
  margin-top: 18px;
}

.ssk-facility-item {
  min-height: 140px;
  border-right: 1px solid var(--ssk-border);
  border-bottom: 1px solid var(--ssk-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 14px;
  background: #fff;
  transition: 0.3s ease;
}

.ssk-facility-item:hover {
  background: #f5f9ff;
}

.ssk-facility-item i {
  font-size: 34px;
  color: #1659c7;
  margin-bottom: 12px;
  display: block;
}

.ssk-facility-item h6 {
  font-size: 15px;
  font-weight: 700;
  color: #003071;
  margin: 0;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 991px) {
  .ssk-facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ssk-facility-grid {
    grid-template-columns: repeat(2, 1fr);
    border: 0;
    gap: 12px;
    margin-top: 20px;
  }

  .ssk-facility-item {
    min-height: 118px;
    border: 1px solid #e6eefb;
    border-radius: 14px;
    padding: 18px 10px;
    box-shadow: 0 8px 24px rgba(0, 48, 113, 0.06);
  }

  .ssk-facility-item i {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .ssk-facility-item h6 {
    font-size: 13px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .ssk-facility-grid {
    gap: 10px;
  }

  .ssk-facility-item {
    min-height: 105px;
    padding: 15px 8px;
  }

  .ssk-facility-item i {
    font-size: 25px;
  }

  .ssk-facility-item h6 {
    font-size: 12px;
  }
}

.ssk-doctors-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ssk-doctor-card {
  text-align: center;
}

.ssk-doctor-img {
  background: #f1f4f8;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 11px;
}

.ssk-doctor-img img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  object-position: top;
}

.ssk-doctor-card h5 {
  color: var(--ssk-primary);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 2px;
}

.ssk-doctor-card p {
  color: #4d5c73;
  font-size: 10px;
  line-height: 1.5;
  margin: 0;
}

.ssk-arrow-btn {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 1px solid #dce7f5;
  color: var(--ssk-primary);
  background: #fff;
  display: grid;
  place-items: center;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 2;
}

.ssk-arrow-left {
  left: -15px;
}

.ssk-arrow-right {
  right: -15px;
}

.ssk-camp-section {
  padding: 0 0 22px;
  background: #fff;
}

.ssk-camp-box {
  background: linear-gradient(90deg, #eef6ff 0%, #f7fbff 42%, #ffffff 100%);
  overflow: hidden;
}

.ssk-camp-content {
  padding: 35px 30px;
}

.ssk-camp-content h2 {
  font-size: 26px;
  color: var(--ssk-primary);
  font-weight: 800;
  margin-bottom: 20px;
}

.ssk-camp-info {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px; */
  margin-bottom: 18px;
}

.ssk-camp-info-item {
  
  gap: 11px;
  align-items: flex-start;
}

.ssk-camp-info-item i {
  color: var(--ssk-primary);
  font-size: 24px;
}

.ssk-camp-info-item h6 {
  font-size: 12px;
  font-weight: 800;
  margin: 0;
  color: var(--ssk-primary);
}

.ssk-camp-info-item p {
  font-size: 11px;
  line-height: 1.5;
  margin: 2px 0 0;
  color: #51637c;
}

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

.ssk-check-list li {
  font-size: 12px;
  color: #334966;
  margin-bottom: 8px;
}

.ssk-check-list i {
  color: var(--ssk-primary);
  margin-right: 8px;
}

.ssk-camp-img img {
  width: 100%;
  height: 325px;
  object-fit: cover;
}

.ssk-updates {
  padding: 0 0 28px;
  background: #fff;
}

.ssk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.ssk-gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ssk-gallery-grid img:hover {
  transform: scale(1.03);
}

/* Large Tablet */
@media (max-width: 991px) {
  .ssk-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .ssk-gallery-grid img {
    height: 180px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ssk-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 15px;
  }

  .ssk-gallery-grid img {
    height: 140px;
    border-radius: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .ssk-gallery-grid {
    gap: 6px;
  }

  .ssk-gallery-grid img {
    height: 120px;
    border-radius: 8px;
  }
}

.ssk-news-item {
  display: grid;
  grid-template-columns: 171px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e5edf7;
}

.ssk-news-item img {
  width: 176px;
  height: 151px;
  object-fit: cover;
  border-radius: 3px;
}

.ssk-news-item h5 {
  color: #172d4e;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 4px;
}

.ssk-news-item p {
  font-size: 10px;
  color: var(--ssk-primary);
  margin: 0;
}

.ssk-report-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e5edf7;
}

.ssk-pdf-icon {
  width: 42px;
  height: 48px;
  background: #ef233c;
  color: #fff;
  border-radius: 3px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.ssk-report-item h5 {
  font-size: 12px;
  color: #172d4e;
  font-weight: 800;
  margin-bottom: 4px;
}

.ssk-report-item p {
  font-size: 10px;
  color: #67768d;
  margin: 0;
}

.ssk-small-btn {
  background: var(--ssk-primary);
  color: #fff;
  border: none;
  font-size: 10px;
  font-weight: 800;
  border-radius: 3px;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ssk-testimonials {
  background: linear-gradient(90deg, rgba(0,34,82,.98), rgba(0,52,121,.98)),
        url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 37px 0;
}

.ssk-testimonial-title h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  line-height: 1.35;
}

.ssk-test-card {
  background: #fff;
  color: #172d4e;
  border-radius: 7px;
  padding: 23px 24px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.ssk-stars {
  color: #ffc107;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 9px;
}

.ssk-test-card p {
  font-size: 12px;
  color: #4f617a;
  line-height: 1.65;
  margin-bottom: 13px;
}

.ssk-patient {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ssk-patient img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.ssk-patient h6 {
  font-size: 12px;
  color: var(--ssk-primary);
  font-weight: 800;
  margin: 0;
}

.ssk-patient span {
  font-size: 10px;
  color: #77869a;
}

.ssk-contact {
  padding: 28px 0;
  background: #f7fbff;
}

.ssk-contact-info, .ssk-appointment-form {
  background: #fff;
  height: 100%;
  padding: 24px 25px;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0, 38, 90, .06);
}

.ssk-contact-info h2, .ssk-appointment-form h2 {
  color: var(--ssk-primary);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
}

.ssk-contact-line {
  display: flex;
  gap: 14px;
  margin-bottom: 17px;
}

.ssk-contact-line i {
  color: var(--ssk-primary);
  font-size: 24px;
  flex: 0 0 auto;
}

.ssk-contact-line h6 {
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 3px;
}

.ssk-contact-line p {
  font-size: 12px;
  color: #53657d;
  line-height: 1.55;
  margin: 0;
}

.ssk-form-control {
  height: 46px;
  border: 1px solid #dfe8f4;
  background: #fff;
  border-radius: 4px;
  padding: 0 14px;
  font-size: 12px;
  color: #243b5b;
  box-shadow: none !important;
}

textarea.ssk-form-control {
  height: 97px;
  padding-top: 12px;
  resize: none;
}

.ssk-map {
  height: 100%;
  min-height: 340px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 38, 90, .06);
}

.ssk-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

@media (max-width: 1199px) {

}

@media (max-width: 991px) {

}

@media (max-width: 575px) {

}

.ssk-header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.ssk-navbar {
  min-height: 85px;
  padding: 0;
}

/* .ssk-container {
  max-width: 1400px;
  width: 100%;
} */

.ssk-logo-wrap img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.ssk-menu .nav-link {
  color: #10284c;
  font-size: 14px;
  font-weight: 600;
  padding: 32px 12px !important;
  white-space: nowrap;
}

.ssk-main-btn {
  background: #002e6d;
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width:991px) {

}

.ssk-mobile-toggle {
  border: 0;
  box-shadow: none !important;
}

.ssk-mobile-menu {
  width: 75% !important;
  max-width: 360px;
  border-right: 0;
  border-radius: 0 22px 22px 0;
  transition: transform .45s ease-in-out;
}

.ssk-mobile-menu-head {
  padding: 22px;
  border-bottom: 1px solid #e6eef9;
}

.ssk-mobile-menu-head img {
  width: 170px;
}

.ssk-mobile-links {
  gap: 6px;
}

.ssk-mobile-links li a {
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border-radius: 10px;
  color: #10284c;
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
}

.ssk-mobile-links li a:hover, .ssk-mobile-links li a.active {
  background: #eef5ff;
  color: #002e6d;
  padding-left: 22px;
}

@media (max-width:991px) {

}

.ssk-premium-footer {
  background: radial-gradient(circle at top left, rgba(255,255,255,.09), transparent 28%),
    linear-gradient(135deg,#001f4d,#003071);
  color: #dceaff;
  padding: 45px 0 0;
}

.ssk-footer-topbox {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 25px 30px;
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ssk-footer-topbox h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ssk-footer-topbox p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
  font-size: 15px;
}

.ssk-footer-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #063b72;
  padding: 13px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: .3s ease;
}

.ssk-footer-call:hover {
  background: #0d6efd;
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .ssk-footer-topbox {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 22px 18px;
    gap: 18px;
    border-radius: 16px;
  }

  .ssk-footer-topbox h3 {
    font-size: 21px;
    line-height: 1.3;
  }

  .ssk-footer-topbox p {
    font-size: 14px;
    line-height: 1.6;
  }

  .ssk-footer-call {
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
  }
}

.ssk-footer-call {
  background: #fff;
  color: #002e6d;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 500;
  white-space: nowrap;
}

.ssk-premium-footer-logo {
  width: 210px;
  margin-bottom: 18px;
}

.ssk-premium-footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
}

.ssk-premium-footer p, .ssk-premium-footer a {
 
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.ssk-premium-footer a {
  display: block;
  transition: .3s;
  color: rgb(255, 255, 255);
}


.ssk-footer-topbox a{
  color: #002e6d !important;
}

.ssk-premium-footer a:hover {
  color: #fff;
  padding-left: 5px;
}

.ssk-footer-social {
  display: flex;
  gap: 10px;
}

.ssk-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.11);
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
}

.ssk-premium-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 35px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.ssk-premium-footer-bottom p {
  margin: 0;
  font-size: 12px;
}

@media (max-width:768px) {

}

html, body {
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width:991px) {

}

@media (max-width:575px) {

}

.ssk-about-hero {
  min-height: 380px;
  background: linear-gradient(90deg,rgba(0,36,88,.98) 0%,rgba(0,45,105,.88) 38%,rgba(0,45,105,.22) 70%),
    url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center right;
  color: #fff;
  display: flex;
  align-items: center;
}

.ssk-breadcrumb {
  font-size: 14px;
  margin-bottom: 25px;
  padding-top: 18px;
}

.ssk-about-hero h1 {
  font-size: 49px;
  font-weight: 600;
  margin-bottom: 18px;
}

.ssk-about-line {
  width: 70px;
  height: 2px;
  background: #fff;
  margin-bottom: 25px;
}

.ssk-about-hero h5 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ssk-about-hero p {
  font-size: 17px;
  color: #eaf3ff;
}

.ssk-about-main {
  padding: 70px 0 45px;
}

.ssk-about-img img {
  width: 100%;
  height: 345px;
  object-fit: cover;
  border-radius: 9px;
}

.ssk-small-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: #003b8e;
  margin-bottom: 14px;
  display: block;
}

.ssk-section-title {
  font-size: 32px;
  font-weight: 600;
  color: #07337b;
  line-height: 1.25;
  margin-bottom: 22px;
}

.ssk-para {
  font-size: 15px;
  line-height: 1.9;
  color: #36475f;
}

.ssk-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.ssk-stat-card {
  background: #fff;
  border: 1px solid #e8eef9;
  border-radius: 16px;
  padding: 12px 0px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 48, 113, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.ssk-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 48, 113, 0.12);
}

.ssk-stat-card i {
  font-size: 34px;
  color: #1659c7;
  margin-bottom: 12px;
  display: block;
}

.ssk-stat-card h4 {
  font-size: 23px;
  font-weight: 700;
  color: #003071;
  margin-bottom: 6px;
}

.ssk-stat-card p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* Tablet */
@media (max-width: 991px) {
  .ssk-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ssk-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 25px;
  }

  .ssk-stat-card {
    padding: 10px 6px;
    border-radius: 14px;
  }

  .ssk-stat-card i {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .ssk-stat-card h4 {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .ssk-stat-card p {
    font-size: 12px;
    line-height: 1.4;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .ssk-stats {
    gap: 12px;
  }

  .ssk-stat-card {
    padding: 18px 10px;
  }

  .ssk-stat-card i {
    font-size: 24px;
  }

  .ssk-stat-card h4 {
    font-size: 20px;
  }

  .ssk-stat-card p {
    font-size: 11px;
  }
}

.ssk-mission-box {
  background: #f5f9ff;
  border-radius: 12px;
  padding: 35px 30px;
  margin-top: 55px;
}

.ssk-mission-card {
  height: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: 0.3s ease;
}

.ssk-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(0, 48, 113, 0.12);
}

.ssk-mission-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #003071, #1659c7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.ssk-mission-card h5 {
  color: #003071;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ssk-mission-card p {
  color: #53657d;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.ssk-mission-card ul {
  color: #53657d;
  font-size: 15px;
  line-height: 1.8;
}

/* Tablet View */
@media (max-width: 991px) {
  .ssk-mission-box {
    padding: 28px 22px;
    margin-top: 40px;
  }

  .ssk-mission-card {
    padding: 22px;
  }
}

/* Mobile View */
@media (max-width: 767px) {
  .ssk-mission-box {
    padding: 20px 14px;
    margin-top: 35px;
    border-radius: 16px;
  }

  .ssk-mission-card {
    flex-direction: column;
    gap: 14px;
    padding: 22px 18px;
    border-radius: 16px;
    text-align: left;
  }

  .ssk-mission-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 13px;
    font-size: 21px;
  }

  .ssk-mission-card h5 {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .ssk-mission-card p,
  .ssk-mission-card ul {
    font-size: 14px;
    line-height: 1.65;
  }

  .ssk-mission-card ul {
    padding-left: 18px !important;
  }
}

/* Small Mobile View */
@media (max-width: 420px) {
  .ssk-mission-box {
    padding: 18px 12px;
  }

  .ssk-mission-card {
    padding: 20px 16px;
  }
}

.ssk-mission-card {
  display: flex;
  gap: 24px;
  padding: 10px 22px 0 22px;
  border-right: 1px solid #dce7f6;
  height: 100%;
}

.ssk-mission-card:last-child {
  border-right: 0;
}

.ssk-mission-icon {
  width: 70px;
  height: 70px;
  background: #e8f1ff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #003b8e;
  font-size: 34px;
  flex: 0 0 auto;
}

.ssk-mission-card h5 {
  font-size: 18px;
  font-weight: 800;
  color: #003b8e;
  margin-bottom: 12px;
}

.ssk-mission-card p, .ssk-mission-card li {
  font-size: 14px;
  line-height: 1.8;
  color: #283b57;
}

.ssk-why {
  background: #002b67;
  padding: 55px 0;
  color: #fff;
}

.ssk-why-title h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 22px;
}

.ssk-why-title p {
  color: #dcecff;
  font-size: 15px;
  line-height: 1.8;
}

.ssk-why-card {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 9px;
  padding: 30px 25px;
  height: 100%;
}

.ssk-why-card i {
  font-size: 43px;
  margin-bottom: 24px;
}

.ssk-why-card h5 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}

.ssk-why-card p {
  color: #dcecff;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.ssk-leadership {
  padding: 60px 0 35px;
}

.ssk-leadership h2 {
  font-size: 30px;
  font-weight: 800;
  color: #071f4a;
  margin-bottom: 28px;
}

.ssk-doctor-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,35,90,.09);
  overflow: hidden;
  text-align: center;
}

.ssk-doctor-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: top;
  background: #f2f5fa;
}

.ssk-doctor-card-content {
  padding: 16px 12px;
}

.ssk-doctor-card h5 {
  color: #071f4a;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 5px;
}

.ssk-doctor-card p {
  color: #39506e;
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

.ssk-trust-box {
  height: 100%;
  border-radius: 9px;
  padding: 26px 36px;
  color: #fff;
  background: linear-gradient(rgba(0,43,103,.88),rgba(0,43,103,.88)),
    url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center;
}

.ssk-trust-box h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
}

.ssk-trust-box h3 span {
  color: #ffd44d;
}

.ssk-trust-box p {
  margin-top: 25px;
  font-size: 17px;
  line-height: 1.8;
  color: #eef6ff;
}

.ssk-trust-line {
  width: 60px;
  height: 3px;
  background: #fff;
  margin-top: 25px;
}

.ssk-cta {
  padding-bottom: 45px;
  padding-top: 45px;
}



.ssk-cta-box::before {
  content: "+";
  position: absolute;
  left: 25px;
  top: -45px;
  font-size: 170px;
  font-weight: 800;
  color: rgba(255,255,255,.06);
}



.ssk-cta-btn {
  background: #fff;
  color: #003071;
  padding: 16px 35px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width:1200px) {

}

@media (max-width:991px) {

}

@media (max-width:576px) {

}

a {
  text-decoration: none;
}

.ssk-contact-hero {
  min-height: 360px;
  background: linear-gradient(90deg,rgba(240,247,255,.98),rgba(240,247,255,.88),rgba(240,247,255,.22)),
    url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}

/* .ssk-breadcrumb {
  font-size: 14px;
  margin-bottom: 22px;
} */

.ssk-contact-hero h1 {
  font-size: 34px;
  font-weight: 600;
  color: #071f4a;
  margin-bottom: 14px;
}

.ssk-red-line {
  width: 50px;
  height: 3px;
  background: #e51b24;
  border-radius: 10px;
  margin-bottom: 20px;
}

.ssk-contact-hero p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: #2f4364;
}

.ssk-hero-icons {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.ssk-hero-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ssk-hero-icon i {
  width: 42px;
  height: 42px;
  background: #eef5ff;
  color: #f9fafc;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
}

.ssk-hero-icon h6 {
  font-size: 13px;
  font-weight: 800;
  color: #003071;
  margin: 0;
}

.ssk-hero-icon p {
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

.ssk-contact-section {
  padding: 45px 0 65px;
}

.ssk-info-card {
  background: #fff;
  border: 1px solid #dfe9f7;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  display: flex;
  gap: 18px;
  box-shadow: 0 8px 25px rgba(0,35,90,.07);
}

.ssk-info-card i {
  width: 54px;
  height: 54px;
  background: #eef5ff;
  color: #003b8e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  flex: 0 0 auto;
}

.ssk-info-card h5 {
  font-size: 16px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 8px;
}

.ssk-info-card p {
  color: #4d5f78;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.ssk-info-card a {
  color: #003b8e;
  font-weight: 800;
  font-size: 13px;
}

.ssk-form-box {
  background: #002b67;
  color: #fff;
  border-radius: 10px;
  padding: 34px;
  height: 100%;
  box-shadow: 0 14px 35px rgba(0,43,103,.20);
}

.ssk-form-box h2, .ssk-map-box h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
}

.ssk-form-box p {
  font-size: 14px;
  color: #dcecff;
  line-height: 1.8;
}

.ssk-form-control {
  height: 50px;
  border: 0;
  border-radius: 5px;
  padding: 0 16px;
  font-size: 13px;
  box-shadow: none !important;
}

textarea.ssk-form-control {
  height: 120px;
  padding-top: 14px;
  resize: none;
}

.ssk-red-btn {
  background: #e51b24;
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ssk-map-box {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dfe9f7;
  box-shadow: 0 8px 25px rgba(0,35,90,.07);
  position: relative;
}

.ssk-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.ssk-map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #fff;
  border-radius: 9px;
  padding: 22px;
  width: 260px;
  box-shadow: 0 12px 30px rgba(0,35,90,.16);
}

.ssk-map-card h5 {
  font-size: 16px;
  font-weight: 800;
  color: #003071;
}

.ssk-map-card p {
  font-size: 12px;
  line-height: 1.7;
  color: #4d5f78;
  margin-bottom: 8px;
}

.ssk-map-actions {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid #dfe9f7;
}

.ssk-map-actions a {
  padding: 18px 10px;
  color: #003071;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid #dfe9f7;
}

.ssk-map-actions a:last-child {
  border-right: 0;
}

.ssk-quick-box {
  background: #f2f7ff;
  border-radius: 10px;
  padding: 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe9f7;
}

.ssk-quick-box h3 {
  font-size: 25px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 12px;
}

.ssk-quick-box p {
  font-size: 14px;
  color: #4d5f78;
  line-height: 1.8;
}

.ssk-quick-img {
  position: absolute;
  right: 20px;
  bottom: 5px;
  width: 150px;
  opacity: .85;
}

.ssk-emergency-box {
  background: #fff1f1;
  border-radius: 10px;
  padding: 32px;
  height: 100%;
  border: 1px solid #ffdada;
  position: relative;
}

.ssk-emergency-box h3 {
  color: #e51b24;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.ssk-emergency-box p {
  color: #4d5f78;
  font-size: 14px;
  line-height: 1.8;
}

.ssk-emergency-phone {
  color: #e51b24;
  font-size: 32px;
  font-weight: 800;
}

.ssk-emergency-icon {
  position: absolute;
  right: 35px;
  top: 35px;
  font-size: 72px;
  color: #e51b24;
  opacity: .18;
}

.ssk-small-title {
  font-size: 12px;
  color: #003b8e;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.ssk-section-title {
  font-size: 28px;
  color: #071f4a;
  font-weight: 600;
  margin-bottom: 25px;
}

.ssk-dept-card {
  background: #fff;
  border: 1px solid #dfe9f7;
  border-radius: 9px;
  padding: 25px 18px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0,35,90,.06);
  transition: .3s;
}

.ssk-dept-card:hover {
  transform: translateY(-6px);
}

.ssk-dept-card i {
  font-size: 42px;
  color: #003b8e;
}

.ssk-dept-card h5 {
  font-size: 16px;
  color: #003071;
  font-weight: 800;
  margin-bottom: 8px;
}

.ssk-dept-card p {
  font-size: 12px;
  color: #4d5f78;
  margin: 0;
  line-height: 1.6;
}

.ssk-why-img img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  border-radius: 10px;
}

.ssk-why-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.ssk-why-list li {
  font-size: 14px;
  color: #243b5c;
  margin-bottom: 11px;
}

.ssk-why-list i {
  color: #003b8e;
  margin-right: 8px;
}

.ssk-link-box {
  background: #fff;
  border: 1px solid #dfe9f7;
  border-radius: 10px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0,35,90,.06);
}

.ssk-link-box h5 {
  color: #003071;
  font-weight: 800;
  margin-bottom: 14px;
}

.ssk-link-box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #071f4a;
  border-bottom: 1px solid #edf2f8;
  padding: 11px 0;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width:1200px) {

}

@media (max-width:991px) {

}

@media (max-width:576px) {

}

.ssk-camp-hero {
  min-height: 375px;
  background: linear-gradient(90deg,rgba(0,36,88,.98),rgba(0,45,105,.78),rgba(0,45,105,.22)),
  url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center right;
  color: #fff;
}

.ssk-camp-hero h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
}

.ssk-camp-hero p {
  font-size: 16px;
  line-height: 1.8;
  color: #eaf3ff;
  max-width: 550px;
}

.ssk-hero-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

.ssk-section {
  padding: 60px 0;
}

.ssk-camp-card {
  background: #fff;
  border: 1px solid #e5edf8;
  border-radius: 9px;
  box-shadow: 0 8px 25px rgba(0,35,90,.08);
  overflow: hidden;
  height: 100%;
}

.ssk-camp-img {
  height: 275px;
  position: relative;
}

.ssk-camp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ssk-date-box {
  position: absolute;
  left: 18px;
  bottom: 0;
  background: #003b8e;
  color: #fff;
  width: 72px;
  text-align: center;
  border-radius: 5px 5px 0 0;
  padding: 9px 5px;
}

.ssk-date-box h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.ssk-date-box span {
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.ssk-camp-content {
  padding: 22px;
}

.ssk-camp-content h5 {
  font-size: 16px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 15px;
}

.ssk-camp-info {
  margin-bottom: 20px;
}

.ssk-camp-info-item {
  
  align-items: flex-start;
  gap: 14px;
  background: #f7faff;
  border: 1px solid #e6eefb;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.ssk-camp-info-item i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003071;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
}

.ssk-camp-info-item h6 {
  margin: 0 0 4px;
  color: #003071;
  font-size: 14px;
  font-weight: 700;
}

.ssk-camp-info-item p {
  margin: 0;
  color: #5d6d83;
  font-size: 13px;
  line-height: 1.6;
}

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

.ssk-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #40536f;
  font-size: 14px;
}

.ssk-check-list li i {
  color: #0d6efd;
  font-size: 18px;
}

.ssk-small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #003071;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.ssk-small-btn:hover {
  background: #1659c7;
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 767px) {

  .ssk-camp-content {
    padding: 18px;
  }

  .ssk-camp-content h5 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .ssk-camp-info-item {
    padding: 14px;
    border-radius: 14px;
  }

  .ssk-camp-info-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }

  .ssk-camp-info-item h6 {
    font-size: 13px;
  }

  .ssk-camp-info-item p {
    font-size: 12px;
  }

  .ssk-check-list {
    margin-top: 8px;
  }

  .ssk-check-list li {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .ssk-small-btn {
    width: 100%;
    margin-top: 15px !important;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
  }
}

/* Small Phones */
@media (max-width: 480px) {

  .ssk-camp-content {
    padding: 15px;
  }

  .ssk-camp-info-item {
    gap: 12px;
    padding: 12px;
  }

  .ssk-camp-info-item i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 15px;
  }

  .ssk-camp-content h5 {
    font-size: 17px;
  }
}

/* .ssk-outline-btn {
  border: 1px solid #003b8e;
  color: #003b8e;
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
} */

.ssk-outline-btn:hover {
  background: #003b8e;
  color: #fff;
}

.ssk-commitment {
  background: #002b67;
  border-radius: 10px;
  color: #fff;
  padding: 35px;
  margin-top: 35px;
}

.ssk-commit-icon {
  width: 95px;
  height: 95px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #003b8e;
  font-size: 42px;
}

.ssk-commitment h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.ssk-commitment p {
  color: #dcecff;
  font-size: 14px;
  line-height: 1.8;
}

.ssk-commit-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.ssk-commit-stat i {
  font-size: 28px;
  color: #ffffff;
  margin-right: 8px;
}

.ssk-commit-stat h4 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: #e1e1e1 !important;
}

.ssk-commit-stat span {
  font-size: 12px;
 
  color: #eceded !important;
}

.ssk-benefits {
  border: 1px dashed rgba(255,255,255,.35);
  border-radius: 9px;
  padding: 25px;
  height: 100%;
}

.ssk-benefits h5 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 15px;
}

.ssk-benefits li {
  list-style: none;
  font-size: 13px;
  margin-bottom: 10px;
  color: #eaf3ff;
}

.ssk-benefits i {
  margin-right: 8px;
  color: #fff;
}

.ssk-gallery-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,35,90,.08);
}

.ssk-highlight-box {
  border: 1px solid #e5edf8;
  border-radius: 9px;
  box-shadow: 0 8px 25px rgba(0,35,90,.06);
  padding: 25px;
  background: #fff;
}

.ssk-highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  border-right: 1px solid #e5edf8;
}

.ssk-highlight-item:last-child {
  border-right: 0;
}

.ssk-highlight-item i {
  font-size: 35px;
  color: #003b8e;
}

.ssk-highlight-item h4 {
  font-size: 22px;
  font-weight: 800;
  color: #003071;
  margin: 0;
}

.ssk-highlight-item p {
  font-size: 12px;
  color: #52647d;
  margin: 0;
}



.ssk-cta-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.ssk-cta-left i {
  width: 82px;
  height: 82px;
  background: rgba(255,255,255,.14);
  border-radius: 50%;
  display: none;
  place-items: center;
  font-size: 42px;
}

.ssk-cta-box {
  background: linear-gradient(90deg, #003071, #1659c7);
  color: #fff;
  border-radius: 10px;
  padding: 32px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.ssk-cta-box h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ssk-cta-box p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

.ssk-cta-btn {
  background: #fff;
  color: #003071;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: .3s ease;
}

.ssk-cta-btn:hover {
  background: #eaf2ff;
  color: #003071;
}

/* Mobile View */
@media (max-width: 767px) {
    .ssk-cta-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 22px;
        gap: 20px;
        border-radius: 18px;
        background: linear-gradient(135deg, #003071 0%, #1659c7 100%);
        box-shadow: 0 10px 30px rgba(0, 48, 113, 0.18);
        overflow: hidden;
        position: relative;
    }

    .ssk-cta-box h2,
    .ssk-cta-box h3,
    .ssk-cta-box h4 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .ssk-cta-box p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0;
        opacity: 0.95;
    }

    .ssk-cta-box .btn,
    .ssk-cta-box a.btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 10px;
    }

    /* Optional decorative glow */
    .ssk-cta-box::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 120px;
        height: 120px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
    }

    .ssk-cta-box::after {
        content: "";
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 100px;
        height: 100px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
    }
}

.ssk-white-btn {
  background: #fff;
  color: #003071;
  padding: 15px 34px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}

.ssk-contact-card {
  border: 1px solid #e5edf8;
  border-radius: 9px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,35,90,.06);
  height: 100%;
  display: flex;
  gap: 18px;
}

.ssk-contact-card i {
  width: 55px;
  height: 55px;
  background: #eef5ff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #003b8e;
  font-size: 25px;
  flex: 0 0 auto;
}

.ssk-contact-card h5 {
  font-size: 16px;
  font-weight: 800;
  color: #003071;
}

.ssk-contact-card p {
  font-size: 13px;
  color: #52647d;
  margin-bottom: 8px;
}

.ssk-contact-card strong {
  font-size: 14px;
  color: #003071;
}

@media (max-width:991px) {

}

@media (max-width:576px) {

}

.ssk-facilities-hero {
  min-height: 380px;
  background: linear-gradient(90deg,rgba(0,36,88,.98),rgba(0,45,105,.82),rgba(0,45,105,.25)),
  url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center right;
  color: #fff;
  display: flex;
  align-items: center;
}

/* .ssk-breadcrumb {
  font-size: 14px;
  margin-bottom: 22px;
} */

.ssk-facilities-hero h1 {
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 15px;
}

.ssk-hero-line {
  width: 70px;
  height: 2px;
  background: #fff;
  margin-bottom: 20px;
}

.ssk-facilities-hero p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 470px;
  color: #eaf3ff;
}

.ssk-hero-icons {
  display: flex;
  gap: 35px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.ssk-hero-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

.ssk-hero-icon i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.ssk-section-title {
  font-size: 32px;
  font-weight: 600;
  color: #071f4a;
  line-height: 1.3;
  margin-bottom: 28px;
}

.ssk-facility-card {
  background: #fff;
  border: 1px solid #e5edf8;
  border-radius: 9px;
  box-shadow: 0 8px 25px rgba(0,35,90,.08);
  overflow: hidden;
  height: 100%;
}

.ssk-facility-img {
  height: 180px;
  position: relative;
}

.ssk-facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ssk-facility-icon {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #003b8e;
  font-size: 25px;
  position: absolute;
  left: 22px;
  bottom: -27px;
  box-shadow: 0 8px 18px rgba(0,35,90,.15);
}

.ssk-facility-content {
  padding: 42px 20px 24px;
}

.ssk-facility-content h5 {
  font-size: 16px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 12px;
}

.ssk-facility-content p {
  font-size: 13px;
  line-height: 1.8;
  color: #495b75;
  margin: 0;
}

.ssk-stats-strip {
  background: linear-gradient(90deg,#003071,#0045b1);
  border-radius: 10px;
  padding: 32px 35px;
  color: #fff;
  margin-top: 45px;
}

.ssk-stat-item i {
  font-size: 38px;
  color: #0045b1;
}

.ssk-stat-item h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  color:  #0045b1;
}

.ssk-service-card {
  height: 145px;
  background: #fff;
  border: 1px solid #e5edf8;
  border-radius: 9px;
  box-shadow: 0 8px 25px rgba(0,35,90,.06);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  transition: .3s;
}

.ssk-service-card:hover {
  transform: translateY(-5px);
}

.ssk-service-card i {
  font-size: 38px;
  color: #003b8e;
  margin-bottom: 15px;
}

.ssk-service-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: #003071;
  margin: 0;
}

.ssk-comfort-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 9px;
}

.ssk-feature-box {
  background: #fff;
  border: 1px solid #e5edf8;
  border-radius: 9px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,35,90,.07);
  height: 100%;
  display: flex;
  gap: 18px;
}

.ssk-feature-box i {
  width: 55px;
  height: 55px;
  background: #eef5ff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #003b8e;
  font-size: 25px;
  flex: 0 0 auto;
}

.ssk-feature-box h5 {
  font-size: 16px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 9px;
}

.ssk-feature-box p {
  font-size: 13px;
  line-height: 1.8;
  color: #4f6078;
  margin: 0;
}

.ssk-tour {
  background: #002b67;
  border-radius: 10px;
  padding: 28px;
  color: #fff;
}

.ssk-play {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.45);
  display: grid;
  place-items: center;
  font-size: 42px;
}

.ssk-tour h3 {
  font-size: 22px;
  font-weight: 800;
}

.ssk-tour p {
  font-size: 13px;
  color: #dcecff;
  line-height: 1.8;
}

.ssk-tour-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.25);
}

.ssk-tour-thumb img {
  width: 100%;
  height: 115px;
  object-fit: cover;
}

.ssk-tour-thumb span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent,rgba(0,0,0,.75));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 28px 10px 10px;
  text-align: center;
}

.ssk-help-box {
  background: #f3f8ff;
  border-radius: 10px;
  padding: 30px 38px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}

.ssk-help-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ssk-help-item i {
  font-size: 42px;
  color: #003b8e;
}

.ssk-help-item h4 {
  font-size: 20px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 5px;
}

.ssk-help-item p {
  font-size: 13px;
  color: #4f6078;
  margin: 0;
}

@media (max-width:991px) {

}

@media (max-width:576px) {

}

.ssk-sketch-facility-section {
  padding: 55px 0;
  background: linear-gradient(180deg,#fff,#f5f9ff);
}

.ssk-sketch-layout {
  position: relative;
  max-width: 1050px;
  height: 460px;
  margin: auto;
}

.ssk-center-oval {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 210px;
  height: 250px;
  border-radius: 50%;
  background: #fff;
  border: 8px solid #edf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(0,43,103,.14);
  z-index: 3;
}

.ssk-center-oval img {
  width: 150px;
}

.ssk-sketch-card {
  position: absolute;
  width: 330px;
  min-height: 90px;
  background: #fff;
  border: 1px solid #dfe9f7;
  border-radius: 18px 18px 28px 28px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0,35,90,.08);
  transition: .35s ease;
}

.ssk-sketch-card i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef5ff;
  color: #003b8e;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex: 0 0 auto;
}

.ssk-sketch-card h5 {
  font-size: 16px;
  font-weight: 500;
  color: #003071;
  margin: 0 0 4px;
}

.ssk-sketch-card p {
  font-size: 14px;
  font-weight: 500;
  color: #51637c;
  margin: 0;
}

.ssk-sketch-card:hover {
  background: #003071;
  transform: translateY(-6px);
}

.ssk-sketch-card:hover i {
  background: #fff;
}

.ssk-sketch-card:hover h5, .ssk-sketch-card:hover p {
  color: #fff;
}

.top-left {
  top: 0;
  left: 150px;
}

.top-right {
  top: 0;
  right: 150px;
}

.mid-left {
  top: 175px;
  left: 0;
}

.mid-right {
  top: 175px;
  right: 0;
}

.bottom-left {
  bottom: 0;
  left: 180px;
}

.bottom-right {
  bottom: 0;
  right: 180px;
}

@media (max-width: 991px) {

  .ssk-sketch-facility-section {
    padding: 50px 0;
  }

  .ssk-sketch-layout {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 100%;
    padding: 0 15px;
  }

  .ssk-center-oval {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-width: 6px;
  }

  .ssk-center-oval img {
    width: 120px;
  }

  .ssk-sketch-card {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .top-left,
  .top-right,
  .mid-left,
  .mid-right,
  .bottom-left,
  .bottom-right {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .ssk-sketch-card i {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .ssk-sketch-card h5 {
    font-size: 16px;
  }

  .ssk-sketch-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {

  .ssk-sketch-facility-section {
    padding: 40px 0;
  }

  .ssk-sketch-layout {
    gap: 14px;
    padding: 0 12px;
  }

  .ssk-center-oval {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0,43,103,.12);
  }

  .ssk-center-oval img {
    width: 95px;
  }

  .ssk-sketch-card {
    padding: 16px;
    gap: 12px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,35,90,.08);
  }

  .ssk-sketch-card i {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 20px;
  }

  .ssk-sketch-card h5 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .ssk-sketch-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .ssk-sketch-card:hover {
    transform: translateY(-3px);
  }
}

.ssk-dept-hero {
  min-height: 310px;
  background: linear-gradient(90deg,rgba(0,36,88,.98),rgba(0,45,105,.82),rgba(0,45,105,.35)),
  url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center right;
  color: #fff;
  display: flex;
  align-items: center;
}

/* .ssk-breadcrumb {
  font-size: 14px;
  margin-bottom: 18px;
} */

.ssk-dept-hero h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ssk-title-line {
  width: 65px;
  height: 2px;
  background: #fff;
  margin-bottom: 20px;
}

.ssk-dept-hero p {
  font-size: 16px;
  line-height: 1.8;
  color: #eaf3ff;
  max-width: 430px;
}

.ssk-section {
  padding: 65px 0;
}

.ssk-small-title {
  font-size: 12px;
  font-weight: 800;
  color: #003b8e;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.ssk-section-title {
  font-size: 34px;
  font-weight: 600;
  color: #071f4a;
  line-height: 1.3;
  margin-bottom: 28px;
}

.ssk-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 28px;
}

.ssk-slider-controls button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #dce7f6;
  background: #fff;
  color: #003b8e;
  margin-left: 8px;
}

.ssk-special-card {
  background: #fff;
  border: 1px solid #e5edf8;
  border-radius: 9px;
  box-shadow: 0 8px 25px rgba(0,35,90,.08);
  overflow: hidden;
  height: 100%;
}

.ssk-special-img {
  height: 185px;
  position: relative;
}

.ssk-special-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ssk-special-icon {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #003b8e;
  font-size: 25px;
  position: absolute;
  left: 22px;
  bottom: -27px;
  box-shadow: 0 8px 18px rgba(0,35,90,.15);
}

.ssk-special-content {
  padding: 42px 20px 24px;
}

.ssk-special-content h5 {
  font-size: 16px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 12px;
}

.ssk-special-content p {
  font-size: 13px;
  line-height: 1.8;
  color: #495b75;
  margin-bottom: 18px;
}

.ssk-learn {
  font-size: 13px;
  font-weight: 800;
  color: #003b8e;
}

.ssk-stats-strip {
  background: linear-gradient(90deg,#003071,#0045b1);
  border-radius: 10px;
  padding: 34px 40px;
  color: #fff;
  margin-top: 45px;
}

.ssk-stat-item {
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid rgba(255,255,255,.2);
  justify-content: center;
}

.ssk-stat-item:last-child {
  border-right: 0;
}

.ssk-stat-item i {
  font-size: 40px;
  color: #0045b1
}

.ssk-stat-item h3 {
  font-size: 30px;
  font-weight: 800;
  margin: 0;
  color:  #0045b1;
}

.ssk-stat-item p {
  font-size: 13px;
  margin: 2px 0 0;
  
}

.ssk-dept-card {
  height: 170px;
  background: #fff;
  border: 1px solid #e5edf8;
  border-radius: 9px;
  box-shadow: 0 8px 25px rgba(0,35,90,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: .3s;
}

.ssk-dept-card:hover {
  transform: translateY(-6px);
}

.ssk-dept-card i {
  font-size: 42px;
  color: #003b8e;
}

.ssk-dept-card h5 {
  font-size: 14px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 10px;
}

.ssk-dept-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #53657d;
  margin: 0;
}

.ssk-focus-box {
  background: #f3f8ff;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 45px;
}

.ssk-focus-img img {
  width: 100%;
  height: 335px;
  object-fit: cover;
}

.ssk-focus-content {
  padding: 40px;
}

.ssk-focus-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #071f4a;
  margin-bottom: 15px;
}

.ssk-focus-content p {
  font-size: 14px;
  line-height: 1.9;
  color: #40536f;
}

.ssk-check-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 13px;
  margin: 25px 0;
}

.ssk-check-list span {
  font-size: 13px;
  font-weight: 600;
  color: #071f4a;
}

.ssk-check-list i {
  color: #003b8e;
  margin-right: 8px;
}

.ssk-why {
  background: #002b67;
  color: #fff;
  padding: 60px 0;
}

.ssk-why h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

.ssk-why-card {
  background: #fff;
  color: #071f4a;
  border-radius: 9px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 24px rgba(0,0,0,.1);
}

.ssk-why-card i {
  font-size: 45px;
  color: #003b8e;
  margin-bottom: 18px;
}

.ssk-why-card h5 {
  font-size: 16px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 12px;
}

.ssk-why-card p {
  font-size: 13px;
  line-height: 1.8;
  color: #455873;
  margin: 0;
}



.ssk-footer {
  background: #002b67;
  color: #dceaff;
  padding-top: 45px;
}

.ssk-footer-logo {
  width: 210px;
  margin-bottom: 18px;
}

.ssk-footer p {
  font-size: 13px;
  line-height: 1.8;
  color: #dceaff;
}

.ssk-footer h5 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ssk-footer a {
  display: block;
  color: #dceaff;
  font-size: 13px;
  margin-bottom: 9px;
}

.ssk-footer-col {
  border-left: 1px solid rgba(255,255,255,.16);
  padding-left: 32px;
  min-height: 165px;
}

.ssk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 30px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width:991px) {

}

@media (max-width:576px) {

}

.ssk-special-card {
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
  cursor: pointer;
}

.ssk-special-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
  transition: .7s;
  z-index: 2;
}

.ssk-special-card:hover::before {
  left: 100%;
}

.ssk-special-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,51,120,.15);
}

.ssk-special-card:hover .ssk-special-img img {
  transform: scale(1.08);
}

.ssk-special-img {
  position: relative;
  overflow: visible;
}

.ssk-special-img img {
  transition: all .5s ease;
}

.ssk-special-card:hover .ssk-special-icon {
  background: #003b8e;
  color: #fff;
  transform: rotate(360deg);
}

.ssk-special-icon {
  transition: .6s ease;
}

.ssk-special-card:hover h5 {
  color: #003b8e;
}

.ssk-special-card:hover .ssk-learn {
  color: #003b8e;
  font-weight: 700;
}

.ssk-special-card:hover .ssk-learn i {
  transform: translateX(5px);
}

.ssk-learn i {
  transition: .3s ease;
}

.ssk-learn {
  color: #003071;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: .3s;
}

.ssk-learn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #003b8e;
  transition: .3s;
}

.ssk-special-card:hover .ssk-learn::after {
  width: 100%;
}

/* .ssk-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 20px;
} */

.ssk-faq-hero {
  min-height: 340px;
  background: linear-gradient(90deg,rgba(240,247,255,.98),rgba(240,247,255,.88),rgba(240,247,255,.20)),
  url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}

.ssk-faq-hero h1 {
  font-size: 29px;
  font-weight: 600;
  color: #08265d;
  line-height: 1.18;
  margin-bottom: 16px;
}

.ssk-red-line {
  width: 44px;
  height: 3px;
  background: #e60012;
  margin-bottom: 20px;
}

.ssk-faq-hero p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: #263b5c;
}

.ssk-feature-strip {
  background: #fff;
  border-radius: 14px;
  padding: 28px 34px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 35px rgba(0,35,90,.10);
}

.ssk-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid #dfe9f7;
  height: 100%;
}

.ssk-feature-item:last-child {
  border-right: 0;
}

.ssk-feature-item i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #eef5ff;
  color: #003b8e;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.ssk-feature-item h6 {
  font-size: 15px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 4px;
}

.ssk-feature-item p {
  font-size: 13px;
  color: #465a76;
  margin: 0;
}

.ssk-faq-section {
  padding: 45px 0 65px;
}

.ssk-filter-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.ssk-filter-btn {
  border: 1px solid #dce7f6;
  background: #fff;
  color: #003071;
  padding: 14px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 22px rgba(0,35,90,.05);
}

.ssk-filter-btn.active {
  background: #003b8e;
  color: #fff;
}

.ssk-search {
  margin-left: auto;
  min-width: 260px;
  position: relative;
}

.ssk-search input {
  width: 100%;
  height: 48px;
  border: 1px solid #dce7f6;
  border-radius: 7px;
  padding: 0 45px 0 15px;
  font-size: 13px;
}

.ssk-search i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #003b8e;
}

.accordion-item {
  border: 1px solid #dfe9f7 !important;
  border-radius: 8px !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,35,90,.05);
}

.accordion-button {
  font-size: 15px;
  font-weight: 800;
  color: #071f4a;
  padding: 18px 22px;
  box-shadow: none !important;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  background: #f4f8ff;
  color: #003071;
}

.ssk-q-no {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #eef5ff;
  color: #003b8e;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  margin-right: 16px;
  flex: 0 0 auto;
}

.accordion-body {
  font-size: 14px;
  line-height: 1.8;
  color: #40536f;
  padding: 0 22px 22px 70px;
  background: #f4f8ff;
}

.ssk-help-box {
  background: #f0f6ff;
  border-radius: 14px;
  padding: 34px 45px;
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ssk-help-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ssk-help-left img {
  width: 150px;
}

.ssk-help-left h6 {
  color: #003b8e;
  font-weight: 800;
  font-size: 13px;
}

.ssk-help-left h3 {
  font-size: 28px;
  font-weight: 800;
  color: #071f4a;
}

.ssk-help-left p {
  color: #40536f;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.ssk-contact-mini {
  background: #fff;
  border-radius: 10px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 260px;
}

.ssk-contact-mini i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef5ff;
  color: #003b8e;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.ssk-contact-mini h6 {
  font-size: 13px;
  color: #40536f;
  margin-bottom: 4px;
}

.ssk-contact-mini a {
  font-size: 16px;
  font-weight: 800;
  color: #003071;
}

.ssk-footer {
  background: #002b67;
  color: #dceaff;
  padding-top: 45px;
}

@media (max-width:991px) {

}

@media (max-width:576px) {

}

.ssk-news-hero {
  min-height: 340px;
  background: linear-gradient(90deg,rgba(0,31,77,.98),rgba(0,43,103,.85),rgba(0,43,103,.15)),
    url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center right;
  color: #fff;
  display: flex;
  align-items: center;
}

/* .ssk-breadcrumb {
  font-size: 14px;
  margin-bottom: 18px;
} */

.ssk-news-hero h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 14px;
}

.ssk-news-hero h1 span {
  color: var(--ssk-red);
}

.ssk-hero-line {
  width: 78px;
  height: 3px;
  background: var(--ssk-red);
  margin-bottom: 20px;
}

.ssk-news-hero p {
  max-width: 520px;
  color: #edf5ff;
  font-size: 16px;
  line-height: 1.8;
}

.ssk-news-section {
  padding: 34px 0 0;
}

.ssk-filter-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.ssk-filter-btn {
  min-width: 160px;
  border: 1px solid #d6e2f2;
  background: #fff;
  color: #003071;
  padding: 17px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: .3s;
}

.ssk-filter-btn i {
  font-size: 24px;
}

.ssk-filter-btn.active, .ssk-filter-btn:hover {
  background: var(--ssk-red);
  color: #fff;
  border-color: var(--ssk-red);
  box-shadow: 0 10px 25px rgba(237,11,19,.2);
}

.ssk-news-row {
  padding: 28px 12px;
  border-bottom: 1px solid #dbe6f3;
}

.ssk-news-img {
  height: 310px;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 28px rgba(0,35,90,.1);
}

.ssk-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.ssk-news-row:hover .ssk-news-img img {
  transform: scale(1.05);
}

.ssk-date-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #003071;
  color: #fff;
  width: 74px;
  height: 82px;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.ssk-date-badge h3 {
  font-size: 31px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.ssk-date-badge span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.ssk-date-badge small {
  font-size: 12px;
  font-weight: 700;
}

.ssk-news-content {
  padding: 18px 20px;
}

.ssk-category {
  font-size: 13px;
  color: var(--ssk-red);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.ssk-news-content h2 {
  font-size: 21px;
  font-weight: 600;
  color: #071f4a;
  line-height: 1.3;
  margin-bottom: 15px;
}

.ssk-news-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #465a76;
  margin-bottom: 20px;
}

.ssk-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #1c2d45;
  font-size: 13px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.ssk-meta i {
  color: #000;
}

.ssk-read-btn {
  background: #003071;
  color: #fff;
  border-radius: 5px;
  padding: 14px 25px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.ssk-read-btn:hover {
  background: #c80008;
  color: #fff;
}

.ssk-carousel-box {
  margin-top: 20px;
}

.ssk-carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.ssk-carousel-head h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

.ssk-slider-controls button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #dce7f6;
  background: #fff;
  color: #003b8e;
  margin-left: 8px;
}

.ssk-mini-card {
  border: 1px solid var(--ssk-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,35,90,.07);
  background: #fff;
  height: 100%;
}

.ssk-mini-card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.ssk-mini-card-content {
  padding: 20px;
}

.ssk-mini-card-content span {
  color: var(--ssk-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ssk-mini-card-content h5 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  margin: 8px 0;
}

.ssk-mini-card-content p {
  color: #52637b;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.ssk-subscribe {
  margin: 30px 0 20px;
  background: #f0f6ff;
  border-radius: 10px;
  padding: 26px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.ssk-subscribe::after {
  content: "";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 28px;
  bottom: -25px;
  font-size: 90px;
  color: rgba(0,59,142,.08);
}

.ssk-sub-left {
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.ssk-sub-icon {
  width: 76px;
  height: 76px;
  background: #003b8e;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 36px;
  flex: 0 0 auto;
}

.ssk-subscribe h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.ssk-subscribe p {
  color: #435773;
  margin: 0;
  font-size: 14px;
}

.ssk-sub-form {
  display: flex;
  gap: 0;
  width: 480px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.ssk-sub-form input {
  height: 52px;
  border: 0;
  outline: 0;
  padding: 0 18px;
  flex: 1;
  border-radius: 5px 0 0 5px;
  font-size: 14px;
}

.ssk-sub-form button {
  height: 52px;
  border: 0;
  background: #003071;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 0 32px;
  border-radius: 0 5px 5px 0;
}

.ssk-footer {
  background: var(--ssk-blue);
  color: #dceaff;
  padding-top: 45px;
}

.ssk-footer-logo {
  width: 210px;
  margin-bottom: 18px;
}

.ssk-footer p {
  font-size: 13px;
  line-height: 1.8;
  color: #dceaff;
}

.ssk-footer h5 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ssk-footer a {
  display: block;
  color: #dceaff;
  font-size: 13px;
  margin-bottom: 9px;
}

.ssk-footer-col {
  border-left: 1px solid rgba(255,255,255,.16);
  padding-left: 32px;
  min-height: 165px;
}

.ssk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 30px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width:1200px) {

}

@media (max-width:991px) {

}

@media (max-width:576px) {

}

/* .ssk-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 20px;
} */

.ssk-main-btn {
  background: #003071;
  color: #fff;
  padding: 14px 28px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  transition: 0.3s;
  white-space: nowrap;
}

.ssk-main-btn:hover {
  background: #00439d;
  color: #fff;
  transform: translateY(-2px);
}

.ssk-small-title {
  font-size: 12px;
  font-weight: 800;
  color: #003b8e;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: inline-block;
  margin-bottom: 12px;
}

.ssk-section-title {
  font-size: 32px;
  font-weight: 600;
  color: #071f4a;
  line-height: 1.28;
  margin-bottom: 18px;
  display: none;
}

.ssk-red-line {
  width: 48px;
  height: 3px;
  background: #e51b24;
  border-radius: 10px;
  margin-bottom: 22px;
}

.ssk-ortho-detail-section {
  padding: 70px 0 55px;
  background: radial-gradient(circle at top right, rgba(0, 59, 142, 0.08), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ssk-ortho-image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 39, 95, 0.18);
  min-height: 520px;
}

.ssk-ortho-image-box img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.ssk-ortho-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 35, 85, 0.9));
}

.ssk-ortho-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  right: 26px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.ssk-ortho-badge i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #003b8e;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  flex: 0 0 auto;
}

.ssk-ortho-badge h4 {
  font-size: 20px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 4px;
}

.ssk-ortho-badge p {
  font-size: 13px;
  color: #4f6078;
  margin: 0;
  line-height: 1.6;
}

.ssk-ortho-content {
  padding-left: 25px;
}

.ssk-ortho-content p {
  color: #40536f;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.ssk-ortho-highlight {
  background: #ffffff;
  border: 1px solid #dfe9f7;
  border-radius: 14px;
  padding: 24px;
  margin: 26px 0;
  box-shadow: 0 12px 35px rgba(0, 35, 90, 0.08);
}

.ssk-ortho-highlight h5 {
  font-size: 18px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 14px;
}

.ssk-ortho-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ssk-ortho-list li {
  font-size: 14px;
  color: #071f4a;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.ssk-ortho-list i {
  color: #003b8e;
  margin-top: 3px;
  flex: 0 0 auto;
}

.ssk-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.ssk-info-card {
  background: #ffffff;
  border: 1px solid #dfe9f7;
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 35, 90, 0.07);
  height: 100%;
}

.ssk-info-card i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eef5ff;
  color: #003b8e;
  display: grid;
  place-items: center;
  font-size: 23px;
}

.ssk-info-card h6 {
  font-size: 14px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 7px;
}

.ssk-info-card p {
  font-size: 12px;
  color: #51637c;
  line-height: 1.6;
  margin: 0;
}

.ssk-timing-card {
  background: linear-gradient(160deg, #002b67, #003f99);
  color: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0, 43, 103, 0.28);
  margin-top: 32px;
}

.ssk-timing-card h4 {
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.ssk-timing-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
}

.ssk-timing-row:last-child {
  border-bottom: 0;
}

.ssk-timing-row span:last-child {
  font-weight: 800;
  text-align: right;
}

.ssk-emergency-box {
  background: #ffffff;
  color: #071f4a;
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ssk-emergency-box small {
  color: #6a7890;
  font-size: 12px;
}

.ssk-emergency-box h5 {
  font-size: 16px;
  font-weight: 800;
  margin: 3px 0 0;
}

.ssk-doctors-section {
  padding: 20px 0 70px;
  background: #ffffff;
}

.ssk-doctor-card {
  background: #fff;
  border: 1px solid #dfe9f7;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 35, 90, 0.08);
  transition: 0.3s;
}

.ssk-doctor-card:hover {
  transform: translateY(-6px);
}

.ssk-doctor-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  object-position: top;
  background: #f2f6fb;
}

.ssk-doctor-body {
  padding: 18px 14px 22px;
}

.ssk-doctor-body h5 {
  font-size: 16px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 6px;
}

.ssk-doctor-body p {
  font-size: 12px;
  color: #51637c;
  line-height: 1.7;
  margin: 0;
}

.ssk-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.ssk-slider-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #dce7f6;
  background: #fff;
  color: #003b8e;
  margin-left: 8px;
  transition: 0.3s;
  
}

.ssk-slider-controls button:hover {
  background: #003b8e;
  color: #fff;
}

.ssk-faq-section {
  padding: 60px 0;
  background: #f7fbff;
}

.ssk-faq-card {
  background: #fff;
  border: 1px solid #dfe9f7;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 35, 90, 0.06);
}

.ssk-faq-card h5 {
  font-size: 17px;
  font-weight: 800;
  color: #003071;
  margin-bottom: 10px;
}

.ssk-faq-card p {
  font-size: 14px;
  color: #40536f;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991px) {

}

@media (max-width: 576px) {

}



@media (max-width: 991px) {

    .ssk-help-box {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 28px;
    }

    .ssk-help-item {
        width: 100%;
    }

    .ssk-main-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .ssk-help-box {
        padding: 22px 18px;
        border-radius: 18px;
        gap: 16px;
    }

    .ssk-help-item {
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .ssk-help-item:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .ssk-help-item i {
        width: 50px;
        height: 50px;
        font-size: 22px;
        border-radius: 14px;
    }

    .ssk-help-item h4 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .ssk-help-item p {
        font-size: 13px;
        line-height: 1.5;
    }

    .ssk-main-btn {
        width: 100%;
        min-height: 52px;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 5px;
    }
}



.ssk-contact-note {
  color: #40536f;
  font-size: 14px;
  line-height: 1.8;
}

.ssk-department-note {
  color: #455873;
  font-size: 14px;
  line-height: 1.8;
}

/* Sample page styles moved from sample.html */
body.sample-page {
  --ssk-primary: #002e6d;
  --ssk-dark: #001f4d;
  --ssk-blue: #063b88;
  --ssk-light: #f5f9ff;
  --ssk-text: #10284c;
  --ssk-muted: #60718f;
  --ssk-border: #dfe9f7;
  --ssk-white: #ffffff;
}

body.sample-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body.sample-page {
  background: #ffffff;
  color: var(--ssk-text);
  overflow-x: hidden;
}

body.sample-page a {
  text-decoration: none;
}

body.sample-page img {
  max-width: 100%;
  display: block;
}

body.sample-page .ssk-container {
  max-width: 1280px !important;
  margin: auto;
  padding: 0 18px;
}

body.sample-page .ssk-topbar {
  background: #00275f;
  color: #ffffff;
  font-size: 12px;
  padding: 9px 0;
}

body.sample-page .ssk-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.sample-page .ssk-top-left, body.sample-page .ssk-top-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

body.sample-page .ssk-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

body.sample-page .ssk-topbar i {
  font-size: 14px;
}

body.sample-page .ssk-social i {
  background: rgba(255,255,255,.12);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-size: 11px;
}

body.sample-page .ssk-header {
  background: #ffffff;
  box-shadow: 0 4px 22px rgba(0, 35, 85, .08);
  position: sticky;
  top: 0;
  z-index: 999;
}

body.sample-page .ssk-navbar {
  min-height: 92px;
}

body.sample-page .ssk-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.sample-page .ssk-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--ssk-primary);
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 25px;
}

body.sample-page .ssk-logo-text h4 {
  color: var(--ssk-primary);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  letter-spacing: .4px;
}

body.sample-page .ssk-logo-text h5 {
  color: var(--ssk-primary);
  font-size: 17px;
  font-weight: 700;
  margin: 2px 0 0;
  letter-spacing: 3px;
}

body.sample-page .ssk-logo-text p {
  color: #31557e;
  font-size: 10px;
  margin: 2px 0 0;
  font-weight: 500;
}

body.sample-page .ssk-menu .nav-link {
  color: #1b2b46;
  font-size: 13px;
  font-weight: 600;
  padding: 34px 13px !important;
  position: relative;
}

body.sample-page .ssk-main-btn {
  background: var(--ssk-primary);
  color: #ffffff;
  padding: 14px 29px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 12px 24px rgba(0, 46, 109, .22);
  transition: .3s;
}

body.sample-page .ssk-main-btn:hover {
  background: #00419a;
  color: #fff;
  transform: translateY(-2px);
}

body.sample-page .ssk-white-btn {
  background: #ffffff;
  color: var(--ssk-primary);
  padding: 15px 27px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 16px 35px rgba(0,0,0,.18);
}

body.sample-page .ssk-white-btn i {
  background: var(--ssk-primary);
  color: #fff;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

body.sample-page .ssk-outline-btn {
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.42);
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}

body.sample-page .ssk-outline-btn i {
  background: rgba(255,255,255,.18);
  color: #fff;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

body.sample-page .ssk-hero {
  position: relative;
  min-height: 445px;
  background: linear-gradient(90deg, rgba(0,34,82,.99) 0%, rgba(0,47,111,.94) 38%, rgba(0,47,111,.35) 63%, rgba(0,47,111,.05) 100%),
        url("assets/images/main-hero-original.png");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  color: #fff;
}

body.sample-page .ssk-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0,89,190,.22), transparent 38%);
  pointer-events: none;
}

body.sample-page .ssk-hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 50px 0;
}

body.sample-page .ssk-hero-tag {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.sample-page .ssk-hero-tag::after {
  content: "";
  width: 48px;
  height: 2px;
  background: #ffffff;
  display: block;
}

body.sample-page .ssk-hero h1 {
  font-size: 50px;
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -.8px;
}

body.sample-page .ssk-hero p {
  color: #e8f2ff;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 27px;
  max-width: 460px;
}

body.sample-page .ssk-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

body.sample-page .ssk-hero-feature-box {
  position: absolute;
  right: 11%;
  bottom: 18px;
  width: 480px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 22px 45px rgba(0,0,0,.2);
  z-index: 3;
  padding: 8px 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

body.sample-page .ssk-hero-feature {
  padding: 0 12px;
  border-right: 1px solid #edf2f9;
}

body.sample-page .ssk-hero-feature:last-child {
  border-right: 0;
}

body.sample-page .ssk-hero-feature i {
  color: var(--ssk-primary);
  font-size: 31px;
  margin-bottom: 9px;
  display: block;
}

body.sample-page .ssk-hero-feature h6 {
  color: #10284c;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  margin: 0;
}

body.sample-page .ssk-about {
  padding: 26px 0 38px;
  background: #fff;
}

body.sample-page .ssk-about-img {
  position: relative;
  padding-left: 25px;
}

body.sample-page .ssk-about-img img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 35px rgba(0, 42, 105, .12);
}

body.sample-page .ssk-experience {
  position: absolute;
  left: 0;
  bottom: 18px;
  background: var(--ssk-primary);
  color: #fff;
  width: 150px;
  height: 145px;
  border-radius: 5px;
  padding: 21px 18px;
  box-shadow: 0 20px 35px rgba(0, 46, 109, .28);
}

body.sample-page .ssk-experience h3 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 8px;
}

body.sample-page .ssk-experience p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  color: #fff;
  font-weight: 500;
}

body.sample-page .ssk-small-title {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ssk-primary);
  font-weight: 800;
  letter-spacing: .3px;
  margin-bottom: 8px;
  display: block;
}

body.sample-page .ssk-section-title {
  font-size: 27px;
  line-height: 1.25;
  color: var(--ssk-primary);
  font-weight: 800;
  margin-bottom: 14px;
}

body.sample-page .ssk-para {
  color: #5d6d88;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 0;
}

body.sample-page .ssk-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

body.sample-page .ssk-stat-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

body.sample-page .ssk-stat-icon {
  color: var(--ssk-primary);
  font-size: 34px;
  line-height: 1;
}

body.sample-page .ssk-stat-item h4 {
  color: var(--ssk-primary);
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

body.sample-page .ssk-stat-item p {
  color: #344763;
  font-size: 12px;
  margin: 2px 0 0;
  font-weight: 500;
}

body.sample-page .ssk-departments {
  background: #f6faff;
  padding: 34px 0 32px;
}

body.sample-page .ssk-dept-left h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ssk-primary);
  line-height: 1.3;
  margin-bottom: 18px;
}

body.sample-page .ssk-dept-card {
  height: 145px;
  background: #ffffff;
  border-radius: 7px;
  box-shadow: 0 10px 25px rgba(0, 38, 90, .08);
  border: 1px solid #edf3fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

body.sample-page .ssk-dept-card::before {
  content: "";
  position: absolute;
  top: 0;
  width: 44px;
  height: 3px;
  background: var(--ssk-primary);
  opacity: 0;
  transition: .3s;
}

body.sample-page .ssk-dept-card:hover::before {
  opacity: 1;
}

body.sample-page .ssk-dept-card:hover {
  transform: translateY(-5px);
}

body.sample-page .ssk-dept-card .ssk-icon-round {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef5ff;
  display: grid;
  place-items: center;
  color: var(--ssk-primary);
  font-size: 28px;
  margin-bottom: 12px;
}

body.sample-page .ssk-dept-card h5 {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  color: #122b50;
  text-align: center;
  margin: 0;
}

body.sample-page .ssk-why {
  background: linear-gradient(90deg, rgba(0,34,82,.98), rgba(0,52,121,.98)),
        url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center;
  padding: 33px 0;
  color: #fff;
}

body.sample-page .ssk-why-title h2 {
  font-size: 25px;
  line-height: 1.35;
  font-weight: 800;
  margin: 0;
}

body.sample-page .ssk-why-card {
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 7px;
  padding: 23px 20px;
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.03);
}

body.sample-page .ssk-why-card i {
  font-size: 33px;
  color: #fff;
  flex: 0 0 auto;
}

body.sample-page .ssk-why-card h5 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 5px;
}

body.sample-page .ssk-why-card p {
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
  color: #dcecff;
}

body.sample-page .ssk-facility-doctors {
  padding: 31px 0 24px;
  background: #fff;
}

body.sample-page .ssk-facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ssk-border);
  border-left: 1px solid var(--ssk-border);
  margin-top: 18px;
}

body.sample-page .ssk-facility-item {
  min-height: 106px;
  border-right: 1px solid var(--ssk-border);
  border-bottom: 1px solid var(--ssk-border);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 15px 10px;
}

body.sample-page .ssk-facility-item i {
  color: var(--ssk-primary);
  font-size: 27px;
  margin-bottom: 8px;
}

body.sample-page .ssk-facility-item h6 {
  font-size: 11px;
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
}

body.sample-page .ssk-doctors-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

body.sample-page .ssk-doctor-card {
  text-align: center;
}

body.sample-page .ssk-doctor-img {
  background: #f1f4f8;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 11px;
}

body.sample-page .ssk-doctor-img img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  object-position: top;
}

body.sample-page .ssk-doctor-card h5 {
  color: var(--ssk-primary);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 2px;
}

body.sample-page .ssk-doctor-card p {
  color: #4d5c73;
  font-size: 10px;
  line-height: 1.5;
  margin: 0;
}

body.sample-page .ssk-arrow-btn {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 1px solid #dce7f5;
  color: var(--ssk-primary);
  background: #fff;
  display: grid;
  place-items: center;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 2;
}

body.sample-page .ssk-arrow-left {
  left: -15px;
}

body.sample-page .ssk-arrow-right {
  right: -15px;
}

body.sample-page .ssk-camp-section {
  padding: 0 0 22px;
  background: #fff;
}

body.sample-page .ssk-camp-box {
  background: linear-gradient(90deg, #eef6ff 0%, #f7fbff 42%, #ffffff 100%);
  overflow: hidden;
}

body.sample-page .ssk-camp-content {
  padding: 35px 30px;
}

body.sample-page .ssk-camp-content h2 {
  font-size: 26px;
  color: var(--ssk-primary);
  font-weight: 800;
  margin-bottom: 20px;
}

body.sample-page .ssk-camp-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px;
  margin-bottom: 18px;
}

body.sample-page .ssk-camp-info-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

body.sample-page .ssk-camp-info-item i {
  color: var(--ssk-primary);
  font-size: 24px;
}

body.sample-page .ssk-camp-info-item h6 {
  font-size: 12px;
  font-weight: 800;
  margin: 0;
  color: var(--ssk-primary);
}

body.sample-page .ssk-camp-info-item p {
  font-size: 11px;
  line-height: 1.5;
  margin: 2px 0 0;
  color: #51637c;
}

body.sample-page .ssk-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.sample-page .ssk-check-list li {
  font-size: 12px;
  color: #334966;
  margin-bottom: 8px;
}

body.sample-page .ssk-check-list i {
  color: var(--ssk-primary);
  margin-right: 8px;
}

body.sample-page .ssk-camp-img img {
  width: 100%;
  height: 325px;
  object-fit: cover;
}

body.sample-page .ssk-updates {
  padding: 0 0 28px;
  background: #fff;
}

body.sample-page .ssk-update-card {
  height: 100%;
  border-right: 1px solid #e4ecf6;
  padding: 0 22px;
}

body.sample-page .ssk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 12px;
}

body.sample-page .ssk-gallery-grid img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 3px;
}

body.sample-page .ssk-news-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e5edf7;
}

body.sample-page .ssk-news-item img {
  width: 82px;
  height: 65px;
  object-fit: cover;
  border-radius: 3px;
}

body.sample-page .ssk-news-item h5 {
  color: #172d4e;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  margin-bottom: 4px;
}

body.sample-page .ssk-news-item p {
  font-size: 10px;
  color: var(--ssk-primary);
  margin: 0;
}

body.sample-page .ssk-report-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e5edf7;
}

body.sample-page .ssk-pdf-icon {
  width: 42px;
  height: 48px;
  background: #ef233c;
  color: #fff;
  border-radius: 3px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

body.sample-page .ssk-report-item h5 {
  font-size: 12px;
  color: #172d4e;
  font-weight: 800;
  margin-bottom: 4px;
}

body.sample-page .ssk-report-item p {
  font-size: 10px;
  color: #67768d;
  margin: 0;
}

body.sample-page .ssk-small-btn {
  background: var(--ssk-primary);
  color: #fff;
  border: none;
  font-size: 10px;
  font-weight: 800;
  border-radius: 3px;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.sample-page .ssk-testimonials {
  background: linear-gradient(90deg, rgba(0,34,82,.98), rgba(0,52,121,.98)),
        url("../images/main-hero-original.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 37px 0;
}

body.sample-page .ssk-testimonial-title h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  line-height: 1.35;
}

body.sample-page .ssk-test-card {
  background: #fff;
  color: #172d4e;
  border-radius: 7px;
  padding: 23px 24px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

body.sample-page .ssk-stars {
  color: #ffc107;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 9px;
}

body.sample-page .ssk-test-card p {
  font-size: 12px;
  color: #4f617a;
  line-height: 1.65;
  margin-bottom: 13px;
}

body.sample-page .ssk-patient {
  display: flex;
  align-items: center;
  gap: 9px;
}

body.sample-page .ssk-patient img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

body.sample-page .ssk-patient h6 {
  font-size: 12px;
  color: var(--ssk-primary);
  font-weight: 800;
  margin: 0;
}

body.sample-page .ssk-patient span {
  font-size: 10px;
  color: #77869a;
}

body.sample-page .ssk-contact {
  padding: 28px 0;
  background: #f7fbff;
}

body.sample-page .ssk-contact-info, body.sample-page .ssk-appointment-form {
  background: #fff;
  height: 100%;
  padding: 24px 25px;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0, 38, 90, .06);
}

body.sample-page .ssk-contact-info h2, body.sample-page .ssk-appointment-form h2 {
  color: var(--ssk-primary);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
}

body.sample-page .ssk-contact-line {
  display: flex;
  gap: 14px;
  margin-bottom: 17px;
}

body.sample-page .ssk-contact-line i {
  color: var(--ssk-primary);
  font-size: 24px;
  flex: 0 0 auto;
}

body.sample-page .ssk-contact-line h6 {
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 3px;
}

body.sample-page .ssk-contact-line p {
  font-size: 12px;
  color: #53657d;
  line-height: 1.55;
  margin: 0;
}

body.sample-page .ssk-form-control {
  height: 46px;
  border: 1px solid #dfe8f4;
  background: #fff;
  border-radius: 4px;
  padding: 0 14px;
  font-size: 12px;
  color: #243b5b;
  box-shadow: none !important;
}

body.sample-page textarea.ssk-form-control {
  height: 97px;
  padding-top: 12px;
  resize: none;
}

body.sample-page .ssk-map {
  height: 100%;
  min-height: 340px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 38, 90, .06);
}

body.sample-page .ssk-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

body.sample-page .ssk-footer {
  background: #00275f;
  color: #dceaff;
  padding-top: 34px;
}

body.sample-page .ssk-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

body.sample-page .ssk-footer-logo .ssk-logo-icon {
  background: #fff;
  color: var(--ssk-primary);
}

body.sample-page .ssk-footer-logo h4 {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

body.sample-page .ssk-footer-logo h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 2px 0 0;
  letter-spacing: 3px;
}

body.sample-page .ssk-footer p {
  font-size: 12px;
  line-height: 1.8;
  color: #dceaff;
  margin-bottom: 12px;
}

body.sample-page .ssk-footer h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 17px;
  text-transform: uppercase;
}

body.sample-page .ssk-footer a {
  display: block;
  color: #dceaff;
  font-size: 12px;
  margin-bottom: 9px;
  transition: .3s;
}

body.sample-page .ssk-footer a:hover {
  color: #fff;
  padding-left: 4px;
}

body.sample-page .ssk-footer-social i {
  width: 25px;
  height: 25px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-right: 5px;
  font-size: 11px;
}

body.sample-page .ssk-footer-col {
  border-left: 1px solid rgba(255,255,255,.15);
  padding-left: 30px;
  min-height: 150px;
}

body.sample-page .ssk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 25px;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

body.sample-page .ssk-footer-bottom p {
  margin: 0;
  font-size: 11px;
}

@media (max-width: 1199px) {
  body.sample-page .ssk-menu .nav-link {
    padding: 18px 9px !important;
    font-size: 12px;
  }

  body.sample-page .ssk-hero-feature-box {
    right: 4%;
  }
}

@media (max-width: 991px) {
  body.sample-page .ssk-topbar-inner {
    justify-content: center;
  }

  body.sample-page .ssk-navbar {
    min-height: auto;
    padding: 14px 0;
  }

  body.sample-page .ssk-menu .nav-link {
    padding: 12px 0 !important;
  }

  body.sample-page .ssk-menu .nav-link::after {
    display: none;
  }

  body.sample-page .ssk-hero {
    min-height: auto;
    padding-bottom: 150px;
    background-position: center;
  }

  body.sample-page .ssk-hero h1 {
    font-size: 38px;
  }

  body.sample-page .ssk-hero-feature-box {
    left: 18px;
    right: 18px;
    width: auto;
    grid-template-columns: repeat(4, 1fr);
    bottom: 20px;
  }

  body.sample-page .ssk-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  body.sample-page .ssk-facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.sample-page .ssk-update-card {
    border-right: 0;
    border-bottom: 1px solid #e4ecf6;
    padding: 24px 0;
  }

  body.sample-page .ssk-footer-col {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  body.sample-page .ssk-top-left, body.sample-page .ssk-top-right {
    gap: 10px;
    justify-content: center;
  }

  body.sample-page .ssk-logo-text h4 {
    font-size: 16px;
  }

  body.sample-page .ssk-logo-text h5 {
    font-size: 13px;
  }

  body.sample-page .ssk-hero {
    padding-bottom: 300px;
  }

  body.sample-page .ssk-hero h1 {
    font-size: 31px;
  }

  body.sample-page .ssk-hero-actions {
    flex-direction: column;
  }

  body.sample-page .ssk-white-btn, body.sample-page .ssk-outline-btn {
    justify-content: center;
    width: 100%;
  }

  body.sample-page .ssk-hero-feature-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  body.sample-page .ssk-hero-feature {
    border-bottom: 1px solid #edf2f9;
    padding: 14px 8px;
  }

  body.sample-page .ssk-about-img {
    padding-left: 0;
  }

  body.sample-page .ssk-experience {
    left: 15px;
  }

  body.sample-page .ssk-stats {
    grid-template-columns: 1fr;
  }

  body.sample-page .ssk-camp-info {
    grid-template-columns: 1fr;
  }

  body.sample-page .ssk-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.sample-page .ssk-report-item {
    grid-template-columns: 42px 1fr;
  }

  body.sample-page .ssk-report-item .ssk-small-btn {
    grid-column: 2;
    width: fit-content;
  }

  body.sample-page .ssk-footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

body.sample-page .ssk-header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body.sample-page .ssk-navbar {
  min-height: 85px;
  padding: 0;
}

body.sample-page .ssk-container {
  max-width: 1400px;
  width: 100%;
}

body.sample-page .ssk-logo-wrap img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

body.sample-page .ssk-menu .nav-link {
  color: #10284c;
  font-size: 14px;
  font-weight: 600;
  padding: 32px 12px !important;
  white-space: nowrap;
}

body.sample-page .ssk-main-btn {
  background: #002e6d;
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width:991px) {
  body.sample-page .ssk-navbar {
    padding: 15px 0;
  }

  body.sample-page .ssk-logo-wrap img {
    width: 150px;
  }

  body.sample-page .ssk-menu .nav-link {
    padding: 12px 0 !important;
  }

  body.sample-page .ssk-main-btn {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }
}



.ssk-hosp-topbar-x9 {
  background: #003071;
  color: #fff;
  font-size: 13px;
  padding: 9px 0;
  position: relative;
  z-index: 99;
}

.ssk-hosp-topbar-inner-x9 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ssk-hosp-top-left-x9,
.ssk-hosp-top-right-x9 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.ssk-hosp-top-left-x9 span,
.ssk-hosp-top-right-x9 span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.9);
  line-height: 1.4;
}

.ssk-hosp-topbar-x9 i {
  color: #8fc4ff;
  font-size: 14px;
}

.ssk-hosp-social-x9 i {
  margin-left: 7px;
  cursor: pointer;
  transition: 0.3s ease;
}

.ssk-hosp-social-x9 i:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 991px) {
  .ssk-hosp-topbar-inner-x9 {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .ssk-hosp-top-left-x9,
  .ssk-hosp-top-right-x9 {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ssk-hosp-topbar-x9 {
    padding: 8px 0;
    font-size: 12px;
  }

  .ssk-hosp-topbar-inner-x9 {
    gap: 10px;
  }

  .ssk-hosp-top-left-x9 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .ssk-hosp-top-left-x9 span {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 8px 9px;
    justify-content: center;
    font-size: 11px;
    text-align: center;
  }

  .ssk-hosp-top-right-x9 {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .ssk-hosp-top-right-x9 > span:first-child {
    width: 100%;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 8px;
  }

  .ssk-hosp-social-x9 {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .ssk-hosp-top-left-x9 {
    grid-template-columns: 1fr;
  }

  .ssk-hosp-top-left-x9 span {
    font-size: 11.5px;
  }
}

@media (max-width: 767px) {
  .ssk-hosp-topbar-x9 {
    display: none !important;
  }
}


/* Fixed Header */
.ssk-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Navbar */
.ssk-navbar {
    min-height: 90px;
    padding: 0;
}

/* Logo */
.ssk-logo-wrap img {
    max-height: 70px;
    width: auto;
}

/* Push page content below fixed header */
body {
    padding-top: 90px;
}

/* Mobile */
@media (max-width: 991px) {

    .ssk-navbar {
        min-height: 75px;
    }

    .ssk-logo-wrap img {
        max-height: 55px;
    }

    body {
        padding-top: 75px;
    }
}

/* Offcanvas above everything */
.ssk-mobile-menu {
    z-index: 10000;
}








/* ==========================
   TABLET
========================== */
@media (max-width: 991px) {

    .ssk-slider-head{
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ssk-slider-controls{
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .ssk-slider-controls button{
        width: 42px;
        height: 42px;
    }

    .ssk-camp-card{
        height: 100%;
    }

    .ssk-camp-img img{
        height: 220px;
        object-fit: cover;
    }

    .ssk-commitment{
        padding: 35px 25px;
    }

    .ssk-commit-icon{
        margin: auto;
    }

    .ssk-commitment h2{
        text-align: center;
    }

    .ssk-commitment p{
        text-align: center;
    }

    .ssk-benefits{
        margin-top: 10px;
    }
}


/* ==========================
   MOBILE
========================== */
@media (max-width: 767px) {

    .ssk-section{
        padding: 50px 0;
    }

    .ssk-slider-head{
        gap: 12px;
        margin-bottom: 20px;
    }

    .ssk-small-title{
        font-size: 13px;
    }

    .ssk-section-title{
        font-size: 26px;
        line-height: 1.3;
    }

    .ssk-slider-controls{
        justify-content: center;
    }

    .ssk-slider-controls button{
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .carousel-item .row{
        row-gap: 20px !important;
    }

    .ssk-camp-card{
        border-radius: 18px;
        overflow: hidden;
    }

    .ssk-camp-img img{
        height: 220px;
        width: 100%;
        object-fit: cover;
    }

    .ssk-date-box{
        transform: scale(.9);
        transform-origin: top right;
    }

    .ssk-camp-content{
        padding: 18px;
    }

    .ssk-camp-content h5{
        font-size: 18px;
        line-height: 1.4;
    }

    .ssk-camp-info{
        font-size: 14px;
        line-height: 1.6;
    }

    .ssk-camp-content p{
        font-size: 14px;
        line-height: 1.7;
    }

    .ssk-outline-btn{
        width: 100%;
        text-align: center;
        justify-content: center;
        min-height: 48px;
        margin-top: 10px;
    }

    /* Commitment Box */

    .ssk-commitment{
        margin-top: 35px;
        padding: 25px 18px;
        border-radius: 20px;
        text-align: center;
    }

    .ssk-commit-icon{
        width: 85px;
        height: 85px;
        margin: 0 auto 15px;
    }

    .ssk-commit-icon i{
        font-size: 34px;
    }

    .ssk-commitment h2{
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .ssk-commitment p{
        font-size: 14px;
        line-height: 1.7;
    }

    /* Stats */

    .ssk-commit-stats{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
        margin-top: 20px;
    }

    .ssk-commit-stat{
        padding: 15px 10px;
        border-radius: 14px;
        background: #fff;
    }

    .ssk-commit-stat h4{
        font-size: 20px;
        margin-bottom: 5px;
        color: #003b8e !important;
    }

    .ssk-commit-stat span{
        font-size: 13px;
        line-height: 1.4;
        color: #003b8e !important;
    }

    .ssk-commit-stat i{
      color: #003b8e !important;
    }

    /* Benefits */

    .ssk-benefits{
        margin-top: 20px;
        padding: 20px;
        border-radius: 18px;
    }

    .ssk-benefits h5{
        font-size: 18px;
        margin-bottom: 15px;
    }

    .ssk-benefits ul li{
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
}


/* ==========================
   SMALL MOBILE
========================== */
@media (max-width: 480px){

    .ssk-section-title{
        font-size: 22px;
    }

    .ssk-camp-img img{
        height: 200px;
    }

    .ssk-camp-content{
        padding: 16px;
    }

    .ssk-commit-stats{
        grid-template-columns: 1fr;
    }

    .ssk-commit-stat{
        text-align: center;
    }
}



/* ==========================
   TABLET
========================== */
@media (max-width: 991px) {

    .ssk-highlight-box {
        padding: 20px;
    }

    .ssk-highlight-item {
        padding: 20px 15px;
    }
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 767px) {

    .ssk-highlight-box {
        background: #fff;
        border-radius: 20px;
        padding: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,.06);
        margin-top: 20px;
    }

    .ssk-highlight-box .row {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .ssk-highlight-item {
        height: 100%;
        min-height: 115px;
        padding: 18px 15px;
        border-radius: 16px;
        background: #f8fbff;
        border: 1px solid #e8eef8;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;

        transition: .3s ease;
    }

    .ssk-highlight-item i {
        font-size: 30px;
        color: #003071;
    }

    .ssk-highlight-item h4 {
        font-size: 22px;
        font-weight: 700;
        color: #003071;
        margin: 0;
        line-height: 1;
    }

    .ssk-highlight-item p {
        font-size: 13px;
        color: #5f6f85;
        margin: 0;
        line-height: 1.4;
    }
}

/* ==========================
   SMALL MOBILE
========================== */
@media (max-width: 576px) {

    .ssk-small-title {
        text-align: center;
        display: block;
    }

    .ssk-section-title {
        text-align: center;
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .ssk-highlight-item {
        min-height: 110px;
        padding: 16px 12px;
    }

    .ssk-highlight-item i {
        font-size: 26px;
    }

    .ssk-highlight-item h4 {
        font-size: 20px;
    }

    .ssk-highlight-item p {
        font-size: 12px;
    }
}

/* ==========================
   EXTRA SMALL MOBILE
========================== */
@media (max-width: 420px) {

    .ssk-highlight-box .col-md-6,
    .ssk-highlight-box .col-lg {
        width: 50%;
        flex: 0 0 50%;
    }

    .ssk-highlight-item {
        min-height: 105px;
    }
}




/* ==========================
   MOBILE ONLY
========================== */
@media (max-width: 767px) {

    .ssk-subscribe {
        padding: 24px 18px;
        border-radius: 20px;
        text-align: center;
    }

    .ssk-sub-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        margin-bottom: 20px;
    }

    .ssk-sub-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto;
    }

    .ssk-sub-icon i {
        font-size: 28px;
    }

    .ssk-sub-left h3 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .ssk-sub-left p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .ssk-sub-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ssk-sub-form input {
        width: 100%;
        height: 52px;
        border-radius: 14px;
        padding: 0 18px;
        font-size: 14px;
    }

    .ssk-sub-form button {
        width: 100%;
        height: 52px;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: .5px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {

    .ssk-subscribe {
        padding: 20px 15px;
    }

    .ssk-sub-icon {
        width: 58px;
        height: 58px;
    }

    .ssk-sub-icon i {
        font-size: 24px;
    }

    .ssk-sub-left h3 {
        font-size: 20px;
    }

    .ssk-sub-left p {
        font-size: 13px;
    }
}



@media (max-width: 576px) {

    .ssk-subscribe{
        padding: 22px 18px;
        border-radius: 18px;
    }

    .ssk-sub-left{
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
        text-align: left;
    }

    .ssk-sub-icon{
        width: 55px;
        height: 55px;
        min-width: 55px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ssk-sub-icon i{
        font-size: 24px;
    }

    .ssk-sub-left h3{
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .ssk-sub-left p{
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 0;
        opacity: .9;
        display: none;
    }

    .ssk-sub-form{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ssk-sub-form input{
        width: 100%;
        height: 52px;
        border-radius: 14px;
        padding: 0 16px;
        font-size: 14px;
    }

    .ssk-sub-form button{
        width: 100%;
        height: 52px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 600;
    }
}




.ssk-gallery-banner{
    background:linear-gradient(135deg,#003071,#0d57c7);
    padding:80px 20px;
    text-align:center;
    color:#fff;
}

.ssk-gallery-banner h1{
    font-size:48px;
    margin-bottom:15px;
    font-weight:700;
}

.ssk-gallery-banner p{
    max-width:700px;
    margin:auto;
    font-size:17px;
    opacity:.9;
}

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

.ssk-gallery-section{
    padding:80px 20px;
}

.ssk-container{
    max-width:1300px;
    margin:auto;
}

.ssk-title{
    text-align:center;
    margin-bottom:50px;
}

.ssk-title span{
    color:#0d57c7;
    font-weight:600;
    letter-spacing:1px;
}

.ssk-title h2{
    font-size:40px;
    color:#003071;
    margin-top:10px;
}

/* ===================================
GRID
=================================== */

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

.ssk-gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.ssk-gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
    display:block;
}

.ssk-gallery-item:hover img{
    transform:scale(1.08);
}

.ssk-gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,48,113,.75);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.ssk-gallery-item:hover .ssk-gallery-overlay{
    opacity:1;
}

.ssk-gallery-overlay i{
    color:#fff;
    font-size:40px;
}

/* ===================================
LIGHTBOX
=================================== */

.ssk-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.ssk-lightbox.active{
    display:flex;
}

.ssk-lightbox img{
    max-width:85%;
    max-height:85vh;
    border-radius:15px;
}

.ssk-close,
.ssk-prev,
.ssk-next{
    position:absolute;
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#003071;
    cursor:pointer;
    font-size:24px;
    transition:.3s;
}

.ssk-close:hover,
.ssk-prev:hover,
.ssk-next:hover{
    background:#003071;
    color:#fff;
}

.ssk-close{
    top:30px;
    right:30px;
}

.ssk-prev{
    left:30px;
}

.ssk-next{
    right:30px;
}

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

@media(max-width:991px){

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

    .ssk-gallery-banner h1{
        font-size:38px;
    }

}

@media(max-width:576px){

    .ssk-gallery-grid{
        grid-template-columns:1fr;
    }

    .ssk-gallery-item img{
        height:240px;
    }

    .ssk-gallery-banner{
        padding:60px 15px;
    }

    .ssk-gallery-banner h1{
        font-size:30px;
    }

    .ssk-title h2{
        font-size:28px;
    }

    .ssk-prev,
    .ssk-next{
        width:45px;
        height:45px;
        font-size:18px;
    }

    .ssk-close{
        width:45px;
        height:45px;
        top:15px;
        right:15px;
    }

    .ssk-lightbox img{
        max-width:92%;
    }

}





/* ===========================
   LIGHTBOX
=========================== */

.ssk-lightbox{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:99999;

}

.ssk-lightbox.active{

    opacity:1;
    visibility:visible;

}

.ssk-lightbox-content{

    width:90%;
    max-width:1100px;
    text-align:center;
    animation:zoomIn .35s ease;

}

.ssk-lightbox img{

    width:auto;
    max-width:100%;
    max-height:80vh;
    border-radius:10px;
    box-shadow:0 30px 70px rgba(0,0,0,.55);

}

.ssk-lightbox-footer{

    margin-top:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    font-size:15px;
    font-weight:500;

}

#lightboxCaption{

    text-align:left;

}

#lightboxCounter{

    opacity:.8;

}

/* Buttons */

.ssk-close,
.ssk-prev,
.ssk-next{

    position:absolute;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    backdrop-filter:blur(8px);
    cursor:pointer;
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;

}

.ssk-close:hover,
.ssk-prev:hover,
.ssk-next:hover{

    background:#0d6efd;
    transform:scale(1.08);

}

.ssk-close{

    top:30px;
    right:35px;

}

.ssk-prev{

    left:30px;
    top:50%;
    transform:translateY(-50%);

}

.ssk-next{

    right:30px;
    top:50%;
    transform:translateY(-50%);

}

@keyframes zoomIn{

    from{

        opacity:0;
        transform:scale(.8);

    }

    to{

        opacity:1;
        transform:scale(1);

    }

}

/* Mobile */

@media(max-width:768px){

.ssk-prev,
.ssk-next{

    width:45px;
    height:45px;
    font-size:18px;

}

.ssk-close{

    width:45px;
    height:45px;

}

.ssk-lightbox-footer{

    flex-direction:column;
    gap:8px;
    text-align:center;

}

.ssk-lightbox img{

    max-height:70vh;

}

}




/* ==================================================
   SRI SAI KRUPA – COMPACT DOCTORS SECTION
================================================== */

.ssk-specialists-section {
  --ssk-primary: #0753a6;
  --ssk-primary-dark: #033a7a;
  --ssk-accent: #e83e47;
  --ssk-heading: #132d4f;
  --ssk-text: #66778e;
  --ssk-border: #dce7f2;
  --ssk-light: #f5f9fd;

  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: #f7faff;
}

.ssk-specialists-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--ssk-primary) 0%,
    var(--ssk-primary) 82%,
    var(--ssk-accent) 82%,
    var(--ssk-accent) 100%
  );
}

.ssk-specialists-section::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border: 38px solid rgba(7, 83, 166, 0.035);
  border-radius: 50%;
  pointer-events: none;
}

.ssk-container {
  position: relative;
  z-index: 2;
  /* width: min(100% - 40px, 1320px); */
  margin: 0 auto;
}


/* ==================================================
   SECTION HEADER
================================================== */

.ssk-specialists-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 34px;
}

.ssk-specialists-heading {
  max-width: 680px;
}

.ssk-specialists-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--ssk-accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.ssk-specialists-subtitle::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background: var(--ssk-accent);
}

.ssk-specialists-heading h2 {
  margin: 0 0 10px;
  color: var(--ssk-heading);
  font-size: clamp(30px, 3.3vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.ssk-specialists-heading p {
  max-width: 630px;
  margin: 0;
  color: var(--ssk-text);
  font-size: 15px;
  line-height: 1.75;
}


/* ==================================================
   HEADER ACTIONS
================================================== */

.ssk-specialists-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ssk-departments-btn {
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid var(--ssk-primary);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #ffffff;
  color: var(--ssk-primary);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.45px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.ssk-departments-btn i {
  font-size: 15px;
}

.ssk-departments-btn:hover {
  border-color: var(--ssk-primary);
  background: var(--ssk-primary);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(7, 83, 166, 0.18);
  transform: translateY(-2px);
}


/* ==================================================
   SLIDER BUTTONS
================================================== */

.ssk-slider-buttons {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ssk-slider-arrow {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 0;
  border: 1px solid #c9dbea;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--ssk-primary);
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(12, 68, 125, 0.08);
  transition: 0.3s ease;
}

.ssk-slider-arrow:hover {
  border-color: var(--ssk-primary);
  background: var(--ssk-primary);
  color: #ffffff;
  box-shadow: 0 11px 24px rgba(7, 83, 166, 0.2);
  transform: translateY(-2px);
}

.ssk-slider-arrow:active {
  transform: scale(0.95);
}

.ssk-slider-arrow:focus-visible {
  outline: 3px solid rgba(7, 83, 166, 0.16);
  outline-offset: 3px;
}


/* ==================================================
   CAROUSEL
================================================== */

.ssk-doctors-carousel {
  position: relative;
}

.ssk-doctors-carousel .carousel-inner {
  overflow: hidden;
}

.ssk-doctors-carousel .carousel-item {
  transition:
    opacity 0.45s ease-in-out,
    transform 0.45s ease-in-out;
}


/* ==================================================
   FIVE DOCTORS IN ONE ROW
================================================== */

.ssk-doctors-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}


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

.ssk-doctor-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ssk-border);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(18, 62, 107, 0.06);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.ssk-doctor-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--ssk-primary) 0%,
    var(--ssk-primary) 78%,
    var(--ssk-accent) 78%,
    var(--ssk-accent) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ssk-doctor-card:hover {
  border-color: rgba(7, 83, 166, 0.3);
  box-shadow: 0 16px 36px rgba(18, 62, 107, 0.12);
  transform: translateY(-5px);
}

.ssk-doctor-card:hover::after {
  transform: scaleX(1);
}


/* ==================================================
   DOCTOR IMAGE
================================================== */

.ssk-doctor-image {
  position: relative;
  width: 100%;
  height: 225px;
  overflow: hidden;
  border-bottom: 1px solid var(--ssk-border);
  background: #edf4fb;
}

.ssk-doctor-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}

.ssk-doctor-card:hover .ssk-doctor-image img {
  transform: scale(1.025);
}


/* Smaller number badge */

.ssk-doctor-number {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 2;
  width: 33px;
  height: 33px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ssk-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(7, 83, 166, 0.2);
}


/* ==================================================
   DOCTOR INFORMATION
================================================== */

.ssk-doctor-details {
  min-height: 124px;
  padding: 17px 15px 19px;
  display: flex;
  flex-direction: column;
}

.ssk-doctor-details h3 {
  margin: 0 0 7px;
  color: var(--ssk-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.ssk-doctor-card:hover .ssk-doctor-details h3 {
  color: var(--ssk-primary);
}

.ssk-doctor-qualification {
  margin: 0 0 13px;
  color: var(--ssk-text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.ssk-doctor-department {
  width: fit-content;
  max-width: 100%;
  margin-top: auto;
  padding: 6px 9px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  background: #eaf3fc;
  color: var(--ssk-primary);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}


/* ==================================================
   SLIDER INDICATORS
================================================== */

.ssk-doctors-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 26px;
}

.ssk-doctors-indicators button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #b8c8da;
  opacity: 1;
  transition: 0.3s ease;
}

.ssk-doctors-indicators button.active {
  width: 30px;
  background: linear-gradient(
    90deg,
    var(--ssk-primary),
    var(--ssk-accent)
  );
}


/* ==================================================
   LARGE LAPTOP
================================================== */

@media (max-width: 1199.98px) {
  .ssk-container {
    /* width: min(100% - 32px, 1140px); */
  }

  .ssk-doctors-grid {
    gap: 13px;
  }

  .ssk-doctor-image {
    height: 205px;
  }

  .ssk-doctor-details {
    min-height: 150px;
    padding: 16px 13px 18px;
  }

  .ssk-doctor-details h3 {
    font-size: 15px;
  }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991.98px) {
  .ssk-specialists-section {
    padding: 60px 0;
  }

  .ssk-specialists-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .ssk-specialists-actions {
    width: 100%;
    justify-content: space-between;
  }

  .ssk-doctors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .ssk-doctor-image {
    height: 250px;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767.98px) {
  /* .ssk-container {
    width: min(100% - 26px, 720px);
  } */

  .ssk-specialists-section {
    padding: 52px 0;
  }

  .ssk-specialists-heading h2 {
    font-size: 31px;
  }

  .ssk-specialists-heading p {
    font-size: 14px;
  }

  .ssk-specialists-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .ssk-slider-buttons {
    order: -1;
  }

  .ssk-slider-arrow {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .ssk-doctors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .ssk-doctor-image {
    height: 230px;
  }

  .ssk-doctor-details {
    min-height: 145px;
  }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575.98px) {
  .ssk-specialists-header {
    margin-bottom: 28px;
  }

  .ssk-departments-btn {
    width: 100%;
  }

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

  .ssk-doctor-image {
    height: 390px;
  }

  .ssk-doctor-details {
    min-height: auto;
  }

  .ssk-doctor-details h3 {
    font-size: 17px;
  }

  .ssk-doctor-qualification {
    font-size: 13px;
  }
}


@media (max-width: 420px) {
  .ssk-doctor-image {
    height: 340px;
  }
}




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

.ssk-testimonials {
  --ssk-test-blue: #063874;
  --ssk-test-blue-dark: #022955;
  --ssk-test-blue-light: #0b56a5;
  --ssk-test-red: #e63a43;
  --ssk-test-gold: #ffb000;
  --ssk-test-heading: #092c58;
  --ssk-test-text: #536984;
  --ssk-test-border: #dce6f1;

  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      110deg,
      var(--ssk-test-blue-dark) 0%,
      var(--ssk-test-blue) 58%,
      #07458c 100%
    );
}

.ssk-testimonials::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -100px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  pointer-events: none;
}

.ssk-testimonials::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: 19%;
  width: 420px;
  height: 420px;
  border: 60px solid rgba(255, 255, 255, 0.018);
  border-radius: 50%;
  pointer-events: none;
}

.ssk-testimonials .ssk-container {
  position: relative;
  z-index: 2;
}


/* =====================================================
   TITLE AREA
===================================================== */

.ssk-testimonial-title {
  max-width: 280px;
}

.ssk-testimonial-title .ssk-small-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ssk-testimonial-title .ssk-small-title::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background: var(--ssk-test-red);
}

.ssk-testimonial-title h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(21px, 3vw, 33px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -1px;
}


/* =====================================================
   SLIDER BUTTONS
===================================================== */

.ssk-testimonial-controls {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
}

.ssk-testimonial-arrow {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ssk-testimonial-arrow:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ssk-test-blue);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.ssk-testimonial-arrow:active {
  transform: translateY(0) scale(0.95);
}

.ssk-testimonial-arrow:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.3);
  outline-offset: 3px;
}


/* =====================================================
   CAROUSEL
===================================================== */

.ssk-testimonials-carousel {
  position: relative;
  width: 100%;
}

.ssk-testimonials-carousel .carousel-inner {
  overflow: hidden;
}

.ssk-testimonials-carousel .carousel-item {
  padding: 5px 2px 10px;
  transition:
    opacity 0.55s ease-in-out,
    transform 0.55s ease-in-out;
}


/* Three testimonial cards per slide */

.ssk-testimonial-slide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}


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

.ssk-test-card {
  position: relative;
  min-width: 0;
  min-height: 265px;
  padding: 30px 29px 27px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 17px 38px rgba(0, 20, 52, 0.15);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ssk-test-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 20px;
  color: rgba(6, 56, 116, 0.07);
  font-family: Georgia, serif;
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.ssk-test-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--ssk-test-blue) 0%,
    var(--ssk-test-blue) 78%,
    var(--ssk-test-red) 78%,
    var(--ssk-test-red) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.ssk-test-card:hover {
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 25px 50px rgba(0, 20, 52, 0.23);
  transform: translateY(-7px);
}

.ssk-test-card:hover::after {
  transform: scaleX(1);
}


/* =====================================================
   STAR RATING
===================================================== */

.ssk-stars {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  color: var(--ssk-test-gold);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 2px;
}


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

.ssk-test-card > p {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: var(--ssk-test-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}


/* =====================================================
   PATIENT INFORMATION
===================================================== */

.ssk-patient {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 13px;
}

.ssk-patient img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 3px solid #edf4fb;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ssk-patient h6 {
  margin: 0 0 4px;
  color: var(--ssk-test-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.ssk-patient span {
  display: block;
  color: #8090a5;
  font-size: 13px;
  line-height: 1.3;
}


/* =====================================================
   CAROUSEL INDICATORS
===================================================== */

.ssk-testimonial-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 27px;
}

.ssk-testimonial-indicators button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.ssk-testimonial-indicators button.active {
  width: 34px;
  background: linear-gradient(
    90deg,
    #ffffff,
    var(--ssk-test-red)
  );
}


/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1199.98px) {
  .ssk-testimonial-slide-grid {
    gap: 17px;
  }

  .ssk-test-card {
    min-height: 280px;
    padding: 27px 23px 24px;
  }

  .ssk-test-card > p {
    font-size: 14px;
  }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
  .ssk-testimonials {
    padding: 60px 0;
  }

  .ssk-testimonial-title {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .ssk-testimonial-title h2 {
    margin-bottom: 16px;
  }

  .ssk-testimonial-controls {
    margin-top: 20px;
  }

  .ssk-testimonial-slide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ssk-test-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 9px);
    width: 100%;
    margin: 0 auto;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .ssk-testimonials {
    padding: 52px 0;
  }

  .ssk-testimonial-title h2 {
    font-size: 31px;
  }

  .ssk-testimonial-arrow {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    font-size: 16px;
  }

  .ssk-testimonial-slide-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ssk-test-card,
  .ssk-test-card:last-child {
    max-width: 100%;
    min-height: auto;
    grid-column: auto;
    margin: 0;
  }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {
  .ssk-test-card {
    padding: 24px 21px 23px;
    border-radius: 12px;
  }

  .ssk-test-card > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .ssk-patient img {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
  }
}




/* =========================================
   LATEST NEWS SECTION
========================================= */

.ssk-news-section {
  --ssk-news-blue: #0753a6;
  --ssk-news-blue-dark: #12345a;
  --ssk-news-red: #e63a43;
  --ssk-news-text: #687a90;
  --ssk-news-border: #dfe8f1;

  padding: 75px 0;
  background: #f7faff;
}

.ssk-news-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.ssk-news-heading .ssk-small-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--ssk-news-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.ssk-news-heading .ssk-small-title::before,
.ssk-news-heading .ssk-small-title::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 10px;
  background: var(--ssk-news-red);
}

.ssk-news-heading h2 {
  margin: 0 0 13px;
  color: var(--ssk-news-blue-dark);
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.15;
}

.ssk-news-heading h2 span {
  color: var(--ssk-news-blue);
}

.ssk-news-heading p {
  margin: 0;
  color: var(--ssk-news-text);
  font-size: 15px;
  line-height: 1.8;
}


/* News Card */

.ssk-news-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--ssk-news-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(18, 58, 101, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.ssk-news-card:hover {
  border-color: rgba(7, 83, 166, 0.28);
  box-shadow: 0 20px 45px rgba(18, 58, 101, 0.13);
  transform: translateY(-6px);
}


/* Image */

.ssk-news-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #eaf2fa;
}

.ssk-news-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.ssk-news-card:hover .ssk-news-image img {
  transform: scale(1.045);
}


/* Date Badge */

.ssk-news-date {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-width: 58px;
  min-height: 62px;
  padding: 8px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--ssk-news-blue);
  color: #ffffff;
  box-shadow: 0 9px 22px rgba(7, 83, 166, 0.24);
}

.ssk-news-date strong {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.ssk-news-date span {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}


/* Content */

.ssk-news-content {
  min-height: 295px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
}

.ssk-news-category {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 5px;
  background: #eaf3fc;
  color: var(--ssk-news-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ssk-news-content h3 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
}

.ssk-news-content h3 a {
  color: var(--ssk-news-blue-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ssk-news-content h3 a:hover {
  color: var(--ssk-news-blue);
}

.ssk-news-content > p {
  margin: 0 0 20px;
  color: var(--ssk-news-text);
  font-size: 14px;
  line-height: 1.75;
}


/* Footer */

.ssk-news-footer {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--ssk-news-border);
}

.ssk-news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 15px;
  color: #7b8ba0;
  font-size: 12px;
}

.ssk-news-meta i {
  color: var(--ssk-news-blue);
}

.ssk-news-meta i:not(:first-child) {
  margin-left: 7px;
}

.ssk-news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ssk-news-blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.ssk-news-link i {
  transition: transform 0.3s ease;
}

.ssk-news-link:hover {
  color: var(--ssk-news-red);
}

.ssk-news-link:hover i {
  transform: translateX(4px);
}


/* Tablet */

@media (max-width: 991.98px) {
  .ssk-news-section {
    padding: 62px 0;
  }

  .ssk-news-image {
    height: 250px;
  }
}


/* Mobile */

@media (max-width: 767.98px) {
  .ssk-news-section {
    padding: 52px 0;
  }

  .ssk-news-heading {
    margin-bottom: 32px;
  }

  .ssk-news-heading h2 {
    font-size: 32px;
  }

  .ssk-news-image {
    height: 235px;
  }

  .ssk-news-content {
    min-height: auto;
    padding: 22px 19px 20px;
  }
}


/* Small Mobile */

@media (max-width: 575.98px) {
  .ssk-news-image {
    height: 220px;
  }

  .ssk-news-content h3 {
    font-size: 18px;
  }
}



/* ==========================================
   FREE MEDICAL CAMP SCHEDULE
========================================== */

.ssk-camp-schedule-section {
  --ssk-camp-blue: #0753a6;
  --ssk-camp-blue-dark: #07366f;
  --ssk-camp-red: #e63a43;
  --ssk-camp-heading: #15345a;
  --ssk-camp-text: #65778e;
  --ssk-camp-border: #dce7f1;
  --ssk-camp-light: #f5f9fd;

  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(7, 83, 166, 0.07),
      transparent 25%
    ),
    #f7faff;
}

.ssk-camp-schedule-section::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 48px solid rgba(7, 83, 166, 0.035);
  border-radius: 50%;
}


/* Heading */

.ssk-camp-schedule-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 42px;
}

.ssk-camp-schedule-heading .ssk-small-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--ssk-camp-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.ssk-camp-schedule-heading .ssk-small-title::before,
.ssk-camp-schedule-heading .ssk-small-title::after {
  content: "";
  width: 27px;
  height: 2px;
  border-radius: 20px;
  background: var(--ssk-camp-red);
}

.ssk-camp-schedule-heading h2 {
  margin: 0 0 13px;
  color: var(--ssk-camp-heading);
  font-size: clamp(32px, 4vw, 47px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.ssk-camp-schedule-heading p {
  margin: 0;
  color: var(--ssk-camp-text);
  font-size: 15px;
  line-height: 1.8;
}


/* Main Card */

.ssk-camp-schedule-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--ssk-camp-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(18, 61, 106, 0.1);
}


/* Table */

.ssk-camp-table-wrap {
  width: 100%;
  overflow-x: auto;
}

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

.ssk-camp-table thead {
  background: linear-gradient(
    110deg,
    var(--ssk-camp-blue-dark),
    var(--ssk-camp-blue)
  );
}

.ssk-camp-table thead th {
  padding: 23px 28px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.7px;
  text-align: left;
  text-transform: uppercase;
}

.ssk-camp-table thead th i {
  margin-right: 9px;
  color: #ffffff;
  font-size: 16px;
}

.ssk-camp-table tbody tr {
  border-bottom: 1px solid var(--ssk-camp-border);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.ssk-camp-table tbody tr:last-child {
  border-bottom: 0;
}

.ssk-camp-table tbody tr:hover {
  background: #f3f8fd;
}

.ssk-camp-table tbody td {
  padding: 22px 28px;
  color: var(--ssk-camp-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  vertical-align: middle;
}

.ssk-camp-table tbody td:last-child i {
  margin-right: 8px;
  color: var(--ssk-camp-red);
}

.ssk-camp-day {
  display: block;
  margin-bottom: 4px;
  color: var(--ssk-camp-heading);
  font-size: 15px;
  font-weight: 800;
}

.ssk-camp-table tbody td small {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 20px;
  background: #eaf3fc;
  color: var(--ssk-camp-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/* Footer */

.ssk-camp-schedule-footer {
  padding: 21px 26px;
  border-top: 1px solid var(--ssk-camp-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #fbfdff;
}

.ssk-camp-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.ssk-camp-note i {
  margin-top: 2px;
  color: var(--ssk-camp-blue);
  font-size: 18px;
}

.ssk-camp-note p {
  margin: 0;
  color: var(--ssk-camp-text);
  font-size: 13px;
  line-height: 1.65;
}

.ssk-camp-contact-btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--ssk-camp-blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.ssk-camp-contact-btn:hover {
  background: var(--ssk-camp-red);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(230, 58, 67, 0.22);
  transform: translateY(-2px);
}

.ssk-camp-contact-btn i {
  transition: transform 0.3s ease;
}

.ssk-camp-contact-btn:hover i {
  transform: translateX(4px);
}


/* Responsive */

@media (max-width: 991.98px) {
  .ssk-camp-schedule-section {
    padding: 65px 0;
  }

  .ssk-camp-table thead th,
  .ssk-camp-table tbody td {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ssk-camp-schedule-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


@media (max-width: 767.98px) {
  .ssk-camp-schedule-section {
    padding: 52px 0;
  }

  .ssk-camp-schedule-heading {
    margin-bottom: 31px;
  }

  .ssk-camp-schedule-heading h2 {
    font-size: 32px;
  }

  .ssk-camp-schedule-card {
    border-radius: 14px;
  }

  .ssk-camp-table,
  .ssk-camp-table tbody,
  .ssk-camp-table tr,
  .ssk-camp-table td {
    display: block;
    width: 100%;
  }

  .ssk-camp-table thead {
    display: none;
  }

  .ssk-camp-table tbody tr {
    padding: 10px 0;
  }

  .ssk-camp-table tbody td {
    position: relative;
    padding: 14px 18px 14px 48%;
    min-height: 54px;
    font-size: 14px;
  }

  .ssk-camp-table tbody td::before {
    content: attr(data-label);
    position: absolute;
    top: 15px;
    left: 18px;
    width: 42%;
    color: var(--ssk-camp-blue);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }

  .ssk-camp-schedule-footer {
    padding: 19px;
  }

  .ssk-camp-contact-btn {
    width: 100%;
  }
}


@media (max-width: 480px) {
  .ssk-camp-table tbody td {
    padding: 12px 16px;
  }

  .ssk-camp-table tbody td::before {
    position: static;
    display: block;
    width: auto;
    margin-bottom: 6px;
  }
}





.ssk-camp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.ssk-gallery-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: #eef4fa;
  box-shadow: 0 10px 28px rgba(7, 55, 110, 0.1);
}

.ssk-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.ssk-gallery-card:hover img {
  transform: scale(1.04);
}


/* Tablet */
@media (max-width: 991.98px) {
  .ssk-camp-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ssk-gallery-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 9px);
    width: 100%;
    margin-inline: auto;
  }
}


/* Mobile */
@media (max-width: 767.98px) {
  .ssk-camp-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ssk-gallery-card,
  .ssk-gallery-card:last-child {
    grid-column: auto;
    max-width: 100%;
    width: 100%;
    margin: 0;
    aspect-ratio: 16 / 10;
  }
}


/* Small Mobile */
@media (max-width: 480px) {
  .ssk-gallery-card {
    border-radius: 11px;
    aspect-ratio: 4 / 3;
  }
}




/* ==========================================
   HOSPITAL LOCATION SECTION
========================================== */

.ssk-location-section {
  --ssk-location-blue: #0753a6;
  --ssk-location-blue-dark: #07356c;
  --ssk-location-red: #e63a43;
  --ssk-location-heading: #14365e;
  --ssk-location-text: #68798f;
  --ssk-location-border: #dce7f1;

  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #f7faff;
}

.ssk-location-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -90px;
  width: 280px;
  height: 280px;
  border: 50px solid rgba(7, 83, 166, 0.035);
  border-radius: 50%;
  pointer-events: none;
}

.ssk-location-section .ssk-container {
  position: relative;
  z-index: 2;
}


/* Heading */

.ssk-location-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.ssk-location-heading > div {
  max-width: 720px;
}

.ssk-location-heading .ssk-small-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
  color: var(--ssk-location-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.ssk-location-heading .ssk-small-title::before {
  content: "";
  width: 29px;
  height: 2px;
  border-radius: 20px;
  background: var(--ssk-location-red);
}

.ssk-location-heading .ssk-section-title {
  margin: 0 0 12px;
  color: var(--ssk-location-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.ssk-location-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--ssk-location-text);
  font-size: 15px;
  line-height: 1.8;
}


/* Heading Direction Button */

.ssk-location-direction-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ssk-location-blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(7, 83, 166, 0.18);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.ssk-location-direction-btn i {
  font-size: 18px;
}

.ssk-location-direction-btn:hover {
  background: var(--ssk-location-red);
  color: #ffffff;
  box-shadow: 0 15px 32px rgba(230, 58, 67, 0.22);
  transform: translateY(-2px);
}


/* Main Map Box */

.ssk-location-box {
  overflow: hidden;
  border: 1px solid var(--ssk-location-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(16, 61, 108, 0.1);
}


/* Left Details */

.ssk-location-details {
  height: 100%;
  min-height: 520px;
  padding: 42px 36px;
  background:
    linear-gradient(
      145deg,
      var(--ssk-location-blue-dark),
      var(--ssk-location-blue)
    );
  color: #ffffff;
}

.ssk-location-label {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.ssk-location-details > h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.3;
}

.ssk-location-details > p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.75;
}


/* Contact Details */

.ssk-location-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ssk-location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ssk-location-info-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 18px;
}

.ssk-location-info-item h4 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.ssk-location-info-item p,
.ssk-location-info-item a {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.65;
  text-decoration: none;
}

.ssk-location-info-item a:hover {
  color: #ffffff;
}


/* Inner Button */

.ssk-location-mobile-btn {
  width: 100%;
  min-height: 50px;
  margin-top: 32px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.ssk-location-mobile-btn:hover {
  background: #ffffff;
  color: var(--ssk-location-blue);
}


/* Google Map */

.ssk-location-map {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #eaf2fa;
}

.ssk-location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
}


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

@media (max-width: 991.98px) {
  .ssk-location-section {
    padding: 65px 0;
  }

  .ssk-location-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .ssk-location-details {
    min-height: auto;
    padding: 36px 30px;
  }

  .ssk-location-map,
  .ssk-location-map iframe {
    min-height: 430px;
  }
}


@media (max-width: 767.98px) {
  .ssk-location-section {
    padding: 52px 0;
  }

  .ssk-location-heading {
    margin-bottom: 30px;
  }

  .ssk-location-heading .ssk-section-title {
    font-size: 32px;
  }

  .ssk-location-heading p {
    font-size: 14px;
  }

  .ssk-location-direction-btn {
    width: 100%;
  }

  .ssk-location-box {
    border-radius: 14px;
  }

  .ssk-location-details {
    padding: 30px 23px;
  }

  .ssk-location-details > h3 {
    font-size: 24px;
  }

  .ssk-location-map,
  .ssk-location-map iframe {
    min-height: 360px;
  }
}


@media (max-width: 480px) {
  .ssk-location-details {
    padding: 26px 19px;
  }

  .ssk-location-info-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .ssk-location-map,
  .ssk-location-map iframe {
    min-height: 310px;
  }
}



/* ==========================================
   FINAL OVERRIDE — REMOVE EXTRA MOBILE SPACE
========================================== */

@media (max-width: 991.98px) {

  .ssk-location-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .ssk-location-section .ssk-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .ssk-location-box {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .ssk-location-box > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
  }

  .ssk-location-box .col-lg-4,
  .ssk-location-box .col-lg-8 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .ssk-location-details {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 30px 24px !important;
  }

  .ssk-location-map {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .ssk-location-map iframe {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 !important;
  }
}


/* Mobile */
@media (max-width: 767.98px) {

  .ssk-location-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .ssk-location-section .ssk-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .ssk-location-heading {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .ssk-location-box {
    border-radius: 12px !important;
  }

  .ssk-location-details {
    padding: 24px 18px !important;
  }

  .ssk-location-label {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .ssk-location-details > h3,
  .ssk-location-details > p,
  .ssk-location-info-list,
  .ssk-location-mobile-btn {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .ssk-location-map,
  .ssk-location-map iframe {
    height: 330px !important;
    min-height: 330px !important;
  }
}


/* Small Mobile */
@media (max-width: 575.98px) {

  .ssk-location-section .ssk-container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .ssk-location-details {
    padding: 22px 16px !important;
  }

  .ssk-location-map,
  .ssk-location-map iframe {
    height: 290px !important;
    min-height: 290px !important;
  }
}


/* Very Small Mobile */
@media (max-width: 380px) {

  .ssk-location-section .ssk-container {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .ssk-location-details {
    padding: 20px 14px !important;
  }

  .ssk-location-map,
  .ssk-location-map iframe {
    height: 260px !important;
    min-height: 260px !important;
  }
}


.ssk-premium-footer-logo{
  background-color: #fff;
  border-radius: 10px;
  padding: 5px;
}



.ssk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  padding: 70px 90px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 22, 48, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.ssk-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ssk-lightbox-content {
  width: min(100%, 1050px);
  max-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ssk-lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 175px);
  object-fit: contain;
  border-radius: 10px;
}

.ssk-lightbox-footer {
  width: 100%;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #ffffff;
}

.ssk-lightbox-caption {
  font-size: 14px;
  font-weight: 600;
}

.ssk-lightbox-counter {
  font-size: 13px;
  white-space: nowrap;
}

.ssk-lightbox-close,
.ssk-lightbox-prev,
.ssk-lightbox-next {
  position: absolute;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.ssk-lightbox-close:hover,
.ssk-lightbox-prev:hover,
.ssk-lightbox-next:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #0753a6;
}

.ssk-lightbox-close {
  top: 20px;
  right: 25px;
}

.ssk-lightbox-prev {
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

.ssk-lightbox-next {
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.ssk-gallery-item {
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .ssk-lightbox {
    padding: 65px 15px 25px;
  }

  .ssk-lightbox-content img {
    max-height: calc(100vh - 165px);
  }

  .ssk-lightbox-prev,
  .ssk-lightbox-next {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .ssk-lightbox-prev {
    left: 10px;
  }

  .ssk-lightbox-next {
    right: 10px;
  }

  .ssk-lightbox-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .ssk-lightbox-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .ssk-focus-content {
    padding: 10px;
}
}

.ssk-premium-footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.ssk-premium-footer-bottom p {
  margin: 0 !important;
  white-space: nowrap !important;
}

.ssk-premium-footer-bottom p:last-child {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.ssk-premium-footer-bottom a {
  display: inline-block !important;
  white-space: nowrap !important;
}

@media (max-width: 767.98px) {
  .ssk-premium-footer-bottom {
    flex-direction: column !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
  }

  .ssk-premium-footer-bottom p:last-child {
    justify-content: center !important;
  }
}



/* Responsive Buttons */
@media (max-width: 576px) {
    .ssk-main-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 0 12px !important;
    }

    .ssk-main-btn:last-child {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 577px) {
    .ssk-main-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ssk-main-btn.ms-2 {
        margin-left: 12px !important;
    }
}


@media (max-width: 576px) {
    .ssk-btn-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ssk-btn-group .ssk-main-btn {
        width: 100%;
        justify-content: center;
        margin: 0 !important;
    }



  }



  /* Mobile */
@media (max-width: 767.98px) {
    .ssk-main-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 0 12px !important;
    }

    .ssk-main-btn:last-child {
        margin-bottom: 0 !important;
    }
}

/* iPad Mini & iPad Pro */
@media (min-width: 768px) and (max-width: 1024px) {
    .ssk-main-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: calc(50% - 8px);
        margin: 0 !important;
        padding: 14px 20px;
        font-size: 15px;
    }

    .ssk-main-btn + .ssk-main-btn {
        margin-left: 16px !important;
    }
}

.ssk-btn-group{
    display:flex;
    gap:16px;
}

@media (max-width:767.98px){
    .ssk-btn-group{
        flex-direction:column;
    }

    .ssk-main-btn{
        width:100%;
        justify-content:center;
    }
}

@media (min-width:768px){
    .ssk-btn-group{
        flex-direction:row;
    }

    .ssk-main-btn{
        flex:1;
        justify-content:center;
    }
}


/* iPad Mini & iPad Pro */
@media (min-width:768px) and (max-width:1130px){

    /* Hide top bar */
    .ssk-hosp-topbar-x9{
        display:none;
    }

    /* Navbar */
    .ssk-navbar{
        padding:12px 0;
    }

    .ssk-navbar .container-fluid{
        padding:0 20px !important;
    }

    /* Logo */
    .ssk-logo-wrap{
        margin-right:0 !important;
        max-width:220px;
        flex-shrink:0;
    }

    .ssk-logo-wrap img{
        width:180px;
        height:auto;
        display:block;
    }

    /* Show only logo & toggler */
    .ssk-navbar .navbar-collapse{
        display:none !important;
    }

    .ssk-mobile-toggle{
        display:flex !important;
        align-items:center;
        justify-content:center;
        border:none;
        padding:8px;
    }

    .ssk-mobile-toggle:focus{
        box-shadow:none;
    }

    /* Offcanvas */
    .ssk-mobile-menu{
        width:360px;
    }

    .ssk-mobile-menu-head img{
        width:170px;
        height:auto;
    }

    .ssk-mobile-links a{
        padding:14px 0;
        font-size:16px;
    }

    .ssk-mobile-menu .ssk-main-btn{
        width:100%;
        justify-content:center;
    }
}


.call-new-update{
  color: #fff;
}