
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&amp;display=swap');
@import url('vendor/bootstrap.min.css');

/* ---------------------------- */
/* Custom properties            */
/* ---------------------------- */
:root {
  --primary-color:#1747A6;
  --secondary-color:#F291A3;
  --text-color:#191919;
  --text-color-2:#7A7A7A;
  --accent-color:#3B67BF;
  --accent-color-2:#F2BBC5;
  --accent-color-3:#FBEAED;
  --font-1:"Nunito", sans-serif;
  --font-2:"Source Sans 3", sans-serif;
  --client-baby-blue:#A3D5FF;
  --client-light-pink:#FFACD8;
  --client-purple:#5e3aa0;
  --orange:#e81683 ;
}

/* ---------------------------- */
/* General Styles               */
/* ---------------------------- */
body {
  font-family: var(--font-2);
  color: var(--text-color);
  background-color: #FFFFFF;
}

.bg-primary-color {
  background-color: var(--primary-color);
}

.bg-primary-color-2 {
  background-color: var(--accent-color);
}

.bg-secondary-color {
  background-color: var(--secondary-color);
}

.bg-secondary-color-2 {
  background-color: var(--accent-color-2);
}

.bg-accent-color {
  background-color: var(--accent-color-2);
}

.bg-accent-color-2 {
  background-color: var(--accent-color-3);
}

.bg-gradient-primary {
  background: linear-gradient(to bottom, var(--primary-color), #518ef8);
}

.bg-gradient-secondary {
  background: linear-gradient(45deg, var(--client-baby-blue), var(--client-light-pink));
}

.text-primary-color {
  color: var(--primary-color);
}

.text-black-color-2 {
  color: var(--text-color);
}

.text-secondary-color-2 {
  color: var(--orange);
}

.text-muted-color {
  color: var(--text-color-2);
}

.accent-primary-color {
  color: var(--accent-color);
}

.accent-secondary-color {
  color: var(--accent-color-2);
}

.accent-tertiary-color {
  color: var(--accent-color-3);
}

.font-1 {
  font-family: var(--font-1);
}

.font-2 {
  font-family: var(--font-2);
}

.section {
  padding: 6em 2em 6em 2em;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.b-container {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */
h1 {
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 20px;
  /* color: var(--orange)!important; */
}

button, a {
  font-size: 18px;
  font-family: var(--font-1);
}

ul {
  list-style: none;
}

p,
li {
  font-size: 18px;
}

img {
  object-fit: cover;
}

/* ---------------------------- */
/* Header and Navbar            */
/* ---------------------------- */
.top-bar {
  /* background-color: var(--client-baby-blue); */
  /* padding-block: 1.2rem; */
  min-height: 80px;
}

.social-box {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.social-box a {
  background-color: var(--secondary-color);
  text-align: center;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}

.social-box a:hover {
  background-color: var(--accent-color-2);
  /* transform: scale(1.1); */
}

.logo-box img{
  max-height: 87px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.nav-link {
  font-size: 1.15rem;
  color: white;
  font-weight: 600;
  padding-inline: 1.50rem;
}

.nav-link:hover {
  color: var(--client-baby-blue) !important;
}

.nav-link.active {
  color: var(--client-baby-blue)!important;
}

.dropdown-menu{
  border: 0;
  border-radius: 0 0 10px 10px;
  padding: 15px 0px;
  /* width: 220px; */
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.3);
}

.dropdown-item {
  color: var(--text-color);
  font-size: 1.15rem;
  padding: 15px;
  font-weight: 600;
  padding-block: 0.75rem;
  padding-inline: 0.75rem;
}

.dropdown-item:hover {
  color: var(--accent-color) !important;
  background-color: transparent;
}

.dropdown-item:focus {
  color: var(--accent-color) !important;
}

.dropdown-item.active {
  color: var(--primary-color) !important;
  background-color: transparent;
}
/* ---------------------------- */
/* Buttons and Links            */
/* ---------------------------- */
.btn-quotes {
  text-decoration: none;
  background-color: var(--client-baby-blue);
  color:black;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 15px 25px;
  border-radius: 30px;
  border: none;
  transition: .4s ease-in-out;
  display: inline-block;
}

.btn-quotes:hover {
  background-color: var(--client-light-pink);
  color:black;
  border: none;
}

.btn-quotes-1 {
  text-decoration: none;
  background-color:var(--client-light-pink);
  color:#000;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 15px 25px;
  border-radius: 30px;
  border: none;
  transition: .4s ease-in-out;
  display: inline-block;
}

.btn-quotes-1:hover{
background-color: black;
  color:rgb(255, 255, 255);
  border: none;
}

.btn-primary-solid {
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-size: 1.15rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-primary-solid:hover {
  background-color: var(--accent-color);
  color: #FFFFFF;
  border: none;
  transform: scale(1.1);
}

.btn-secondary-solid {
  background-color: var(--orange);
  color: #000000;
  font-size: 1.15rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-secondary-solid:hover {
  background-color: var(--accent-color-2);
  color: #FFFFFF;
  border: none;
  transform: scale(1.1);
}

.btn-secondary-solid-2 {
  background-color: var(--secondary-color);
  color: #FFFFFF;
  font-size: 1.15rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-secondary-solid-2:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border: none;
  transform: scale(1.1);
}

.links-primary {
  font-family: var(--font-2);
  color: var(--text-color);
  font-size: 18px;
  text-decoration: none;
}

.links-primary:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.links-secondary {
  font-family: var(--font-2);
  color: #FFFFFF!important;
  font-size: 18px;
  text-decoration: none;
}

.links-secondary:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.badge-primary-color {
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-size: 18px;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
}

.badge-primary-color:hover {
  background-color: var(--accent-color);
  color: #FFFFFF;
}

.copy-right p{
  color: #262626;
}


/* ---------------------------- */
/* Utilities                    */
/* ---------------------------- */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.8); /* bg-slate-900 opacity-80 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.video-box {
  position: relative;
  width: 90%;
  max-width: 800px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.img-container {
  width: 100%;
  max-width: 100%;
  max-width: 1000px;
}

.ratio-wrapper-429 {
  position: relative;
  /* aspect-ratio: 3 / 4; default: portrait */
  overflow: hidden;
}

.img-circle {
  width: 275px;
  height: 275px;
}

.ratio-wrapper-419 {
  position: relative;
  aspect-ratio: 3 / 4; /* default: portrait */
  overflow: hidden;
}

.bg-overlay-secondary {
  background: linear-gradient(45deg, rgba(59, 103, 191, 0.9), rgba(247, 211, 218, 0.8));
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.transition-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.scale-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scale-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.bg-secondary-gradient {
  background: linear-gradient(to right,white 0%,white 50%,#F8DAE0 50%,#F7D9DF 100%);
}

.breadcrumb {
  font-size: 22px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white !important;
}

.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: white !important;
}

.list-unstyled {
  padding-left: 0;
  margin-bottom: 0;
}

/* ---------------------------- */
/* Sections                     */
/* ---------------------------- */
.banner-section {
  position: relative;
  overflow: hidden;
  padding: 50px 75px 0px 75px;
  color: white;
}

.hero-section {
  background:linear-gradient(to right, rgba(0,0,0,.8) , rgba(0,0,0,.5)) , url('../image/bnr-img.jpg');
  background-size: cover;
  background-position: 100%;
  padding-bottom: 80px;
}

/* ---------------------------- */
/* Swiper                       */
/* ---------------------------- */
.swiper-container-outer {
  position: relative;
  overflow: hidden;
}

.swiper {
  padding: 30px 0;
}

.swiper-slide {
  height: auto;
}

.swiper-slide .card{
  /* min-height: 520px; */
}

/* ---------------------------- */
/* Boxes and Cards              */
/* ---------------------------- */
.step-box {
  position: relative;
  margin-bottom: 3rem;
}

.step-box h1 {
  position: absolute;
  font-family: var(--font-1);
  font-weight: 900;
  opacity: 0.8;
  top: -10px;
  left: 13%;
  transform: translateX(-50%);
  z-index: 0;
  background:
  -webkit-linear-gradient(var(--primary-color), #9abbfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-box h3 {
  position: relative;
  font-family: var(--font-1);
  font-weight: 700;
  margin: 25px 0 20px 0;
  z-index: 1;
  color: black;
}

.step-box p {
  position: relative;
  z-index: 1;
  color: var(--text-color-2);
}

.feedback-card {
  background: #fff;
  border: var(--primary-color) 2px solid;
  border-radius: 30px;
  padding: 35px;
}

.quotes-section {
  padding: 6em 2em 6em 2em;
  position: relative;
  overflow: hidden;
}

.quotes-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-image: url('../image/men-and-women-sitting-in-a-circle-during-group-the-2024-10-21-08-45-31-utc.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.8;
  z-index: -1; /* place behind of content */
}

.quotes-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(58, 95, 169, 0.9), rgba(244, 197, 206, 0.8));
  opacity: 0.9;
  z-index: 1; /* place in-front of content */
}

.quotes-section > .container {
  position: relative; /* Force container in-front of background */
  z-index: 2;
}

.quotes-section > .card {
  margin-top: 30px; /* Space from heading */
}

.news-card {
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.news-card .card-title {
  font-family: var(--font-1);
  font-weight: 800;
  text-decoration: none;
}
.news-card .card-title:hover {
  font-family: var(--font-1);
  font-weight: 800;
  /* font-size: 22px; */
  text-decoration: none;
  color: var(--primary-color);
}

/* ---------------------------- */
/* Footer                       */
/* ---------------------------- */
.footer {
  position: relative;
  /* background: linear-gradient(to right , rgba(137,207,240,1) , rgba(255,182,193,0.8)) , url("../image/ftr-bg.jpg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 20px;
  background-color:#222222;
}

.footer a{
  transition: .3s ease-in-out;
  text-decoration: none !important;
  color:#262626;
}

.footer a:hover{
  color: #6a3496 !important;
}


.footer-logo > img {
  max-height: 110px;
  margin-bottom: 15px;
}

.footer-logo p{
  color: #262626;
}


/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: transparent;
}

.accordion .accordion-button {
  font-size: large;
  font-weight: 700;
  color: #fff;
  background-color: var(--accent-color); /* Default blue */
  border-radius: 1.5rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: none;
}

.accordion .accordion-button.collapsed {
  background-color: var(--accent-color); /* Blue for collapsed */
  color: #fff;
}

.accordion .accordion-button:not(.collapsed) {
  background-color: var(--accent-color-2); /* Pink for expanded */
  color: #000;
}

.accordion .accordion-button:focus {
  box-shadow: none;
}

.accordion i {
  font-size: 1.2rem;
}

.accordion .accordion-collapse {
  margin-top: 0.5rem; /* Gap between header and body */
}

.accordion .accordion-body {
  font-size: large;
  background-color: #F5F5F5;
  padding: 1.5rem;
  border-radius: 1rem;
  /* margin-top: 0.5rem; */
  color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* ---------------------------- */
/* Error 404                    */
/* ---------------------------- */
.error-code {
  font-size: 18rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.error-code span:nth-child(2) {
  background: linear-gradient(180deg, var(--primary-color), #FFC2B3);
  color: white;
  padding: 20px 0;
  border-radius: 1.5rem;
}
/* ---------------------------- */
/* Responsive Layouts           */
/* ---------------------------- */
@media only screen and (max-width: 1199.98px) {
  .ratio-wrapper-429 {
    aspect-ratio: 3 / 2;
  }

  .ratio-wrapper-419 {
    aspect-ratio: 1 / 1;
  }

  .step-box h1 {
    left: 17%;
  }
}

@media only screen and (max-width: 991.98px) {
  /* ---------------------------- */
  /* Typography                   */
  /* ---------------------------- */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  button, a{
    font-size: 17px;
  }

  p{
    font-size: 16px;
  }

/* ---------------------------- */
/* Header and Navbar            */
/* ---------------------------- */
/* padding: 4em 2em 4em 2em; */
  .section {
    padding: 1em 1em;
  }

  .top-bar {
   text-align:center;
  }
  
  .logo-box img {
    max-height: 86px;
  }

  .logo-drawer img {
    max-height: 60px;
  }

  .nav-link {
    font-size: 1rem;
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
  }
  
  .nav-link.active,
  .nav-link:hover,
  .nav-link:focus {
    color: var(--primary-color) !important;
  }

  .navbar-nav .nav-link {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    color: white!important;
  }

  .dropdown-menu {
    border-radius: 0;
    width: 100%;
    padding: 5px 0px 5px 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  .dropdown-item {
    font-size: 1rem;
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
  }

  .btn-quotes {
    display: none;
  }

  .img-circle {
    width: 275px;
    height: 275px;
  }

  .step-box h1 {
    left: 5%;
  }

  .feedback-slide {
    width: 33.333%; /* 3 slides per-row for desktop */
  }

  .bg-secondary-gradient {
    background: linear-gradient(to top,white 0%,white 62%,#F8DAE0 62%,#F7D9DF 100%);
  }

  .quotes-section {
    position: relative; /* Force container in-front of background */
    overflow: hidden;
    padding: 0;
  }

  .quotes-section > .container {
    position: relative; /* Force container in-front of background */
    z-index: 2;
    padding: 0;
  }

  .quotes-section > .card {
    margin-top: 70px;
  }

  .img-container {
    width: 90%;
  }

  .ratio-wrapper-429 {
    aspect-ratio: 16 / 9;
  }

  .img-circle {
    width: 300px;
    height: 300px;
  }

  .footer-logo {
    text-align: center;
    padding: 0 1rem;
  }
    
  .footer-logo > img {
    max-height: 85px;
  }

  .error-code {
    font-size: 15rem;
  }
}

@media only screen and (max-width: 767.98px) {
  .btn-play {
    width: 80%;
  }

  .badge-cta {
    display: none;
  }

  .bg-secondary-gradient {
    background: linear-gradient(to top,white 0%,white 61%,#F8DAE0 61%,#F7D9DF 100%);
  }

  .img-container {
    width: 85%;
  }

  .ratio-wrapper-429 {
    aspect-ratio: 1 / 1;
  }

  .img-circle {
    width: 300px;
    height: 300px;
  }

  .step-box h1 {
    left: 6%;
  }

  .footer-logo > img {
    max-height: 65px;
  }
}

@media only screen and (max-width:576.98px){
  .ratio-wrapper-429 {
    aspect-ratio: 3 / 4;
  }

  .img-circle {
    width: 275px;
    height: 275px;
  }
    .step-box{    text-align: center;}
  .step-box h1 {
    transform: none;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .error-code {
    font-size: 10rem;
  }
}




.bnr-right-area h3{
  font-family: var(--font-1);
  color: black;
  font-size: 30px;
  font-weight: 700;
}


.myVideoSlider {
  width: 90%;
  margin: 40px auto;
}

.swiper-slide {
  justify-content: center;
  align-items: center;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  /*max-width: 300px;*/
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  height: 140px;
  object-fit: cover;
}
.swiper-slide h4 {
  font-size: 15px;
  text-align: center;
  color: #000;
  margin-top:15px;
}


.swiper-slide img:hover {
  transform: scale(1.05);
}

.swiper-slide i{
    font-size: 35px;
    color: red;
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.swiper-button-next, .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,44%) !important;
}



/* --------------- Blog ---------------- *//* ==============================
   Blog Details Page Design
================================= */

.blog-details {
    padding: 90px 0;
    background: #f7f8fb;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    color: #1f2937;
}

.blog-details .row {
    row-gap: 40px;
}

/* Main Blog Card */
.blog-details__content {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.blog-list-page__single {
    margin-bottom: 0;
}

.blog-list-page__single-img {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    background: #e5e7eb;
}

.blog-list-page__single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blog-list-page__single:hover .blog-list-page__single-img img {
    transform: scale(1.04);
}

/* Blog Header Content */
.blog-list-page__single-content {
    padding: 35px 40px 20px;
}

.blog-list-page__single-content-top {
    margin-bottom: 18px;
}

/* Meta */
.meta-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 28px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.meta-box li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-box .icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 14px;
}

.meta-box .text p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.meta-box .text a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-box .text a:hover {
    color: #2563eb;
}

/* Blog Title */
.blog-list-page__single-content h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.22;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.8px;
}

/* Blog Content */
.blog-details__content-text2 {
    padding: 15px 40px 45px;
}

.blog-details__content-text2 p {
    font-size: 17px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 22px;
}

.blog-details__content-text2 h1,
.blog-details__content-text2 h2,
.blog-details__content-text2 h3,
.blog-details__content-text2 h4,
.blog-details__content-text2 h5,
.blog-details__content-text2 h6 {
    color: #111827;
    font-weight: 800;
    margin: 32px 0 16px;
    line-height: 1.3;
}

.blog-details__content-text2 h2 {
    font-size: 32px;
}

.blog-details__content-text2 h3 {
    font-size: 26px;
}

.blog-details__content-text2 ul,
.blog-details__content-text2 ol {
    padding-left: 22px;
    margin-bottom: 24px;
}

.blog-details__content-text2 li {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 8px;
}

.blog-details__content-text2 a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.blog-details__content-text2 a:hover {
    text-decoration: underline;
}

.blog-details__content-text2 img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 25px 0;
}

.blog-details__content-text2 blockquote {
    margin: 35px 0;
    padding: 28px 32px;
    border-left: 5px solid #2563eb;
    background: #eff6ff;
    border-radius: 16px;
    color: #1e3a8a;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 600;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 30px;
}

.sidebar__single {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.title-box {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.title-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 3px;
    background: #2563eb;
    border-radius: 30px;
}

.title-box h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}

/* Latest Blog List */
.sidebar__post-list {
    padding: 0;
    margin: 0;
}

.sidebar__post-list li {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar__post-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.sidebar__post-image {
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    border-radius: 16px;
    overflow: hidden;
    background: #e5e7eb;
}

.sidebar__post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sidebar__post-list li:hover .sidebar__post-image img {
    transform: scale(1.08);
}

.sidebar__post-content {
    flex: 1;
}

.sidebar__post-content h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
}

.sidebar__post-content h3 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar__post-content h3 a:hover {
    color: #2563eb;
}

.sidebar__post-content-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.sidebar__post-content-meta i {
    color: #2563eb;
}

/* Responsive */
@media only screen and (max-width: 1199px) {
    .sidebar {
        position: static;
    }

    .blog-list-page__single-img {
        height: 420px;
    }
}

@media only screen and (max-width: 991px) {
    .blog-details {
        padding: 70px 0;
    }

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

    .blog-details__content-text2 {
        padding: 10px 28px 38px;
    }

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

    .blog-list-page__single-img {
        height: 380px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-details {
        padding: 50px 0;
    }

    .blog-details__content,
    .sidebar__single {
        border-radius: 18px;
    }

    .blog-list-page__single-img {
        height: 280px;
    }

    .blog-list-page__single-content {
        padding: 24px 20px 10px;
    }

    .blog-details__content-text2 {
        padding: 10px 20px 32px;
    }

    .blog-list-page__single-content h2 {
        font-size: 28px;
        letter-spacing: -0.4px;
    }

    .meta-box {
        gap: 12px;
    }

    .meta-box .icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .blog-details__content-text2 p,
    .blog-details__content-text2 li {
        font-size: 16px;
        line-height: 1.8;
    }

    .sidebar__single {
        padding: 24px 20px;
    }

    .sidebar__post-list li {
        gap: 12px;
    }

    .sidebar__post-image {
        flex: 0 0 78px;
        width: 78px;
        height: 78px;
        border-radius: 12px;
    }

    .sidebar__post-content h3 {
        font-size: 15px;
    }
}



/* ==============================
   Contact Form 7 Popup Design
================================= */

/* Popup white box / modal container */
.wpcf7 form.popup-form,
.popup-form {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 38px 42px 42px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(17, 24, 39, 0.22);
    position: relative;
    font-family: "Inter", "Poppins", Arial, sans-serif;
}

/* Form heading */
.popup-form h2,
.popup-form .form-title {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #121212;
    margin: 0 0 28px;
    letter-spacing: -1px;
}

/* Labels */
.popup-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

/* CF7 wrapper spacing */
.popup-form p {
    margin: 0 0 20px;
}

/* Inputs + textarea */
.popup-form input[type="text"],
.popup-form input[type="email"],
.popup-form input[type="tel"],
.popup-form textarea,
.popup-form select {
    width: 100%;
    height: 54px;
    border: 1px solid #d8dde8;
    border-radius: 12px;
    background: #f9fafc;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 400;
    color: #111827;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

/* Textarea */
.popup-form textarea {
    height: 160px;
    resize: none;
    padding-top: 16px;
    line-height: 1.6;
}

/* Placeholder */
.popup-form input::placeholder,
.popup-form textarea::placeholder {
    color: #8b95a7;
}

/* Focus effect */
.popup-form input[type="text"]:focus,
.popup-form input[type="email"]:focus,
.popup-form input[type="tel"]:focus,
.popup-form textarea:focus,
.popup-form select:focus {
    border-color: #1d4ed8;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
}

/* Submit button */
.popup-form button[type="submit"],
.popup-form input[type="submit"],
.popup-form .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 175px;
    height: 56px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #1746d1 0%, #3b28a8 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 0 32px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 14px 32px rgba(29, 78, 216, 0.28);
}

/* Submit hover */
.popup-form button[type="submit"]:hover,
.popup-form input[type="submit"]:hover,
.popup-form .wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(29, 78, 216, 0.38);
    background: linear-gradient(135deg, #3b28a8 0%, #1746d1 100%);
}

/* Submit active */
.popup-form button[type="submit"]:active,
.popup-form input[type="submit"]:active,
.popup-form .wpcf7-submit:active {
    transform: translateY(0);
}

/* Validation error text */
.popup-form .wpcf7-not-valid-tip {
    font-size: 13px;
    font-weight: 500;
    color: #dc2626;
    margin-top: 6px;
}

/* Error field */
.popup-form .wpcf7-not-valid {
    border-color: #dc2626 !important;
    background: #fff5f5 !important;
}

/* CF7 response message */
.popup-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 14px 18px !important;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

/* Success message */
.popup-form.sent .wpcf7-response-output {
    border-color: #16a34a !important;
    background: #ecfdf5;
    color: #166534;
}

/* Error message */
.popup-form.invalid .wpcf7-response-output,
.popup-form.failed .wpcf7-response-output {
    border-color: #dc2626 !important;
    background: #fef2f2;
    color: #991b1b;
}

/* Spinner */
.popup-form .wpcf7-spinner {
    margin-left: 12px;
}

/* Remove unwanted default CF7 spacing */
.popup-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Popup Maker plugin support */
.pum-container {
    border-radius: 22px !important;
    padding: 0 !important;
    box-shadow: 0 30px 90px rgba(17, 24, 39, 0.24) !important;
    overflow: hidden !important;
}

.pum-content {
    padding: 0 !important;
}

/* Popup close button */
.pum-close,
.popmake-close {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #f3f4f6 !important;
    color: #111827 !important;
    font-size: 22px !important;
    line-height: 38px !important;
    text-align: center !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.pum-close:hover,
.popmake-close:hover {
    background: #111827 !important;
    color: #ffffff !important;
    transform: rotate(90deg);
}

/* Prevent ugly horizontal scroll */
.pum-content,
.wpcf7,
.popup-form {
    overflow-x: hidden;
}

/* Nice scrollbar for popup */
.pum-container::-webkit-scrollbar,
.popup-form::-webkit-scrollbar {
    width: 8px;
}

.pum-container::-webkit-scrollbar-track,
.popup-form::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.pum-container::-webkit-scrollbar-thumb,
.popup-form::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 20px;
}

.pum-container::-webkit-scrollbar-thumb:hover,
.popup-form::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.gtranslate_wrapper{
    display: flex !important;
    gap: 6px;
    margin: 0 0px 0 40px;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .wpcf7 form.popup-form,
    .popup-form {
        max-width: 92%;
        padding: 34px 30px 36px;
        border-radius: 18px;
    }
    
    .gtranslate_wrapper{
    margin: 0 0px 0 0px;
}

    .popup-form h2,
    .popup-form .form-title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 575px) {
    .wpcf7 form.popup-form,
    .popup-form {
        max-width: 94%;
        padding: 28px 20px 30px;
        border-radius: 16px;
    }
    
        .gtranslate_wrapper{
    margin: 0 0px 0 0px;
}

    .popup-form h2,
    .popup-form .form-title {
        font-size: 32px;
        margin-bottom: 22px;
    }

    .popup-form input[type="text"],
    .popup-form input[type="email"],
    .popup-form input[type="tel"],
    .popup-form textarea,
    .popup-form select {
        height: 50px;
        border-radius: 10px;
        font-size: 14px;
    }

    .popup-form textarea {
        height: 135px;
    }

    .popup-form button[type="submit"],
    .popup-form input[type="submit"],
    .popup-form .wpcf7-submit {
        width: 100%;
        height: 54px;
    }
}

.health-detail-page {
    padding: 35px 0 60px;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.health-detail-page .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}

.health-layout {
    display: grid;
    grid-template-columns: 250px 1fr 48px;
    gap: 35px;
    align-items: start;
}

.health-sidebar {
    position: sticky;
    top: 100px;
    border-right: 1px solid #e5e9ef;
    padding-right: 18px;
}

.health-sidebar h3 {
    font-size: 17px;
    text-transform: uppercase;
    margin: 0 0 15px;
    color: #1f2937;
    font-weight: 800;
}

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

.health-topic-list li {
    border-bottom: 1px solid #e5e9ef;
}

.health-topic-list li a {
    display: block;
    padding: 10px 0;
    color: #1b65a7;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
    transition: all 0.25s ease;
}

.health-topic-list li a:hover,
.health-topic-list li.active a {
    color: #003f75;
    font-weight: 700;
    padding-left: 6px;
}

.breadcrumb-area {
    font-size: 13px;
    margin-bottom: 18px;
    color: #6b7280;
}

.breadcrumb-area a {
    color: #0a66b3;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-area span {
    margin: 0 6px;
}

.health-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 22px;
    color: #333;
    font-weight: 700;
}

.health-featured-image {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.health-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.on-this-page {
    background: #f3f7fb;
    padding: 24px 28px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.on-this-page h4 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #1f2937;
    font-weight: 800;
}

.on-this-page ul {
    margin: 0;
    padding-left: 18px;
}

.on-this-page li {
    margin-bottom: 8px;
}

.on-this-page a {
    color: #0065a8;
    font-weight: 600;
    text-decoration: underline;
}

.health-post-content {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
}

.health-post-content h2,
.info-card-section h2,
.health-extra-section h2,
.help-box h2 {
    font-size: 25px;
    line-height: 1.3;
    margin: 34px 0 16px;
    color: #444;
    font-weight: 700;
}

.health-post-content h3 {
    font-size: 21px;
    margin: 28px 0 12px;
}

.health-post-content p,
.health-extra-section p,
.help-box p {
    margin: 0 0 18px;
}

.health-post-content a,
.health-extra-section a,
.help-box a {
    color: #0065a8;
    text-decoration: underline;
}

.health-post-content ul,
.health-post-content ol {
    margin-bottom: 22px;
    padding-left: 22px;
}

.health-post-content li {
    margin-bottom: 8px;
}

.info-card-section {
    margin-top: 35px;
}

.info-card {
    display: flex;
    gap: 22px;
    background: #f3f7fb;
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 14px;
    align-items: center;
    transition: all 0.25s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 74px;
    height: 74px;
    min-width: 74px;
    background: #5aa1dc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 3px;
}

.info-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #444;
}

.info-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.health-extra-section {
    margin-top: 30px;
}

.help-box {
    margin-top: 35px;
    padding: 22px;
    border: 1px solid #dce3ea;
    background: #ffffff;
    border-radius: 4px;
}

.last-reviewed {
    margin-top: 28px;
    font-size: 14px;
    color: #444;
}

.share-bar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.share-bar a {
    width: 36px;
    height: 36px;
    background: #f3f7fb;
    border: 1px solid #e0e7ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0065a8;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.share-bar a:hover {
    background: #0065a8;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .health-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .health-sidebar {
        position: static;
        border-right: 0;
        border-bottom: 1px solid #e5e9ef;
        padding-right: 0;
        padding-bottom: 18px;
    }

    .health-topic-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 20px;
    }

    .share-bar {
        position: static;
        flex-direction: row;
        order: 3;
    }
}

@media (max-width: 575px) {
    .health-detail-page {
        padding: 25px 0 45px;
    }

    .health-content h1 {
        font-size: 28px;
    }

    .health-post-content h2,
    .info-card-section h2,
    .health-extra-section h2,
    .help-box h2 {
        font-size: 22px;
    }

    .on-this-page {
        padding: 18px;
    }

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

    .info-card {
        align-items: flex-start;
        gap: 14px;
        padding: 15px;
    }

    .info-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 22px;
    }

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

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

.healthlayout .card{
    margin-bottom: 20px;
}

.health-topic-carousel-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.health-topic-carousel-section .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}

.health-topic-heading {
    text-align: center;
    margin-bottom: 38px;
}

.health-topic-heading span {
    display: inline-block;
    color: #0b74bc;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.health-topic-heading h2 {
    margin: 0;
    color: #1f2937;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.health-topic-slider {
    position: relative;
}

.health-topic-slide-item {
    padding: 12px;
}

.health-topic-card {
    display: block;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(15, 50, 90, 0.10);
    border: 1px solid rgba(11, 116, 188, 0.10);
    transition: all 0.35s ease;
}

.health-topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(15, 50, 90, 0.16);
}

.health-topic-img {
    height: 240px;
    overflow: hidden;
    background: #eef5fb;
}

.health-topic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.45s ease;
}

.health-topic-card:hover .health-topic-img img {
    transform: scale(1.08);
}

.health-topic-content {
    padding: 24px;
    position: relative;
}

.health-topic-content h3 {
    margin: 0 0 14px;
    color: #1f2937;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
}

.health-topic-content span {
    display: inline-flex;
    align-items: center;
    color: #0b74bc;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.health-topic-content span::after {
    content: "→";
    margin-left: 8px;
    transition: all 0.3s ease;
}

.health-topic-card:hover .health-topic-content span {
    color: #064f85;
}

.health-topic-card:hover .health-topic-content span::after {
    margin-left: 13px;
}

/* Owl dots */
.health-topic-slider .owl-dots {
    text-align: center;
    margin-top: 22px;
}

.health-topic-slider .owl-dot {
    width: 10px;
    height: 10px;
    background: #c8dff1 !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.health-topic-slider .owl-dot.active {
    width: 28px;
    border-radius: 30px;
    background: #0b74bc !important;
}

/* Owl nav */
.health-topic-slider .owl-nav button {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff !important;
    color: #0b74bc !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    font-size: 28px !important;
    line-height: 44px !important;
    transition: all 0.3s ease;
}

.health-topic-slider .owl-nav button:hover {
    background: #0b74bc !important;
    color: #ffffff !important;
}

.health-topic-slider .owl-prev {
    left: -12px;
}

.health-topic-slider .owl-next {
    right: -12px;
}

@media (max-width: 991px) {
    .health-topic-heading h2 {
        font-size: 32px;
    }

    .health-topic-img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .health-topic-carousel-section {
        padding: 45px 0;
    }

    .health-topic-heading h2 {
        font-size: 28px;
    }

    .health-topic-slide-item {
        padding: 6px;
    }

    .health-topic-img {
        height: 210px;
    }

    .health-topic-content {
        padding: 20px;
    }

    .health-topic-content h3 {
        font-size: 20px;
    }

    .health-topic-slider .owl-nav button {
        display: none;
    }
}


.blog-category-page {
    padding: 70px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.blog-category-page .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}

.blog-category-heading {
    text-align: center;
    margin-bottom: 42px;
}

.blog-category-heading span {
    display: inline-block;
    color: #0b74bc;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.blog-category-heading h1 {
    margin: 0;
    color: #1f2937;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.blog-category-description {
    max-width: 760px;
    margin: 16px auto 0;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.blog-grid-card {
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 50, 90, 0.10);
    border: 1px solid rgba(11, 116, 188, 0.10);
    transition: all 0.35s ease;
}

.blog-grid-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(15, 50, 90, 0.16);
}

.blog-grid-img {
    display: block;
    height: 230px;
    overflow: hidden;
    background: #eef5fb;
}

.blog-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.45s ease;
}

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

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

.blog-grid-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    color: #0b74bc;
    font-size: 13px;
    font-weight: 700;
}

.blog-grid-meta span {
    position: relative;
}

.blog-grid-meta span + span::before {
    content: "•";
    margin-right: 10px;
    color: #9ca3af;
}

.blog-grid-content h2 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
}

.blog-grid-content h2 a {
    color: #1f2937;
    text-decoration: none;
    transition: all 0.25s ease;
}

.blog-grid-content h2 a:hover {
    color: #0b74bc;
}

.blog-grid-content p {
    margin: 0 0 16px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: #0b74bc;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.blog-read-more::after {
    content: "→";
    margin-left: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover::after {
    margin-left: 14px;
}

.blog-pagination {
    margin-top: 45px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 0 4px;
    padding: 0 12px;
    background: #ffffff;
    color: #0b74bc;
    border: 1px solid #dceaf5;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: #0b74bc;
    color: #ffffff;
}

.blog-no-post {
    text-align: center;
    padding: 45px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(15, 50, 90, 0.08);
}

@media (max-width: 991px) {
    .blog-category-heading h1 {
        font-size: 34px;
    }

    .blog-grid-img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .blog-category-page {
        padding: 45px 0;
    }

    .blog-category-heading h1 {
        font-size: 30px;
    }

    .blog-grid-img {
        height: 210px;
    }

    .blog-grid-content {
        padding: 18px;
    }

    .blog-grid-content h2 {
        font-size: 20px;
    }
}
a.glink img {
    margin-right: 0px !important;
    height: 20px;
}
.footer_logo_span img{
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}
.header_logo_span img{
    height: 80px;
} 
.auto-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 360px;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(49, 32, 86, 0.12);
    z-index: 99999;
    display: none;
}

.auto-search-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.auto-search-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #edf0f5;
}

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

.auto-search-list li a {
    display: block;
    padding: 14px 18px;
    color: #243044;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

.auto-search-list li a::before {
    content: "🔎";
    margin-right: 9px;
    font-size: 13px;
    opacity: 0.75;
}

.auto-search-list li a:hover {
    background: #f4f0ff;
    color: #3b246b;
    padding-left: 24px;
}

/* Search form parent should be relative */
.search-form,
.search-box,
.header-search,
.searchContainer,
#searchContainer {
    position: relative;
}

/* Scrollbar design */
.auto-search-results::-webkit-scrollbar {
    width: 6px;
}

.auto-search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.auto-search-results::-webkit-scrollbar-thumb {
    background: #3b246b;
    border-radius: 20px;
}

/* Mobile */
@media (max-width: 767px) {
    .auto-search-results {
        left: 0;
        right: 0;
        width: 100%;
        max-height: 300px;
        border-radius: 12px;
    }

    .auto-search-list li a {
        padding: 13px 15px;
        font-size: 14px;
    }
}








.search-box {
    position: relative;
    width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.search-box .search-form {
    width: 100%;
    margin: 0;
}

.search-box .search-inner {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    width: 100%;
    height: 40px;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 9px;
    overflow: hidden;
}

.search-box .search-field {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    height: 40px !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 0 14px !important;
    margin: 0 !important;
    background: #ffffff !important;
    color: #111111;
}

.search-box .search-btn {
    flex: 0 0 110px !important;
    width: 110px !important;
    height: 40px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #FFACD8 !important;
    color: #000 !important;
    font-size: 16px;
    cursor: pointer;
}

/* Hide any custom X/clear icon inside search area */
.search-box .clear,
.search-box .clear-search,
.search-box .search-clear,
.search-box .search-clear-btn,
.search-box .auto-search-clear,
.search-box .close,
.search-box .btn-close,
.search-box .dashicons-no,
.search-box .dashicons-dismiss,
.search-box .fa-times,
.search-box .fa-xmark {
    display: none !important;
}

/* If X is inserted as span/button between input and button */
.search-box .search-inner > span,
.search-box .search-inner > i,
.search-box .search-inner > svg {
    display: none !important;
}

/* Make sure hidden input creates no gap */
.search-box input[type="hidden"] {
    display: none !important;
}
.footer .btn-secondary-solid{
    background-color: var(--client-light-pink);
    color: #000;
}

.footer-advertise-link{
    background-color: var(--client-light-pink);
    color: #000;
    font-size: 1.15rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}
.footer .footer-advertise-link:hover{
    background-color: #000;
    color: #fff !important;
}

#today {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ffffff;
    color: #2f1d60;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 8px 22px rgba(47, 29, 96, 0.12);
    border: 1px solid rgba(47, 29, 96, 0.10);
    white-space: nowrap;
}
#contactClose {
    position: absolute;
    top: 10px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
}
.header-advertise-link{
        text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 18px;
}
#today::before {
    content: "🕒";
    font-size: 16px;
}

@media (max-width: 575px) {
    #today {
        width: 100%;
        margin-top: 12px;
        padding: 9px 14px;
        font-size: 13px;
        border-radius: 12px;
    }
}




#mega-menu-wrap-header-menu {
    background-color:var(--client-purple) !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link{
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
}



.resource-card-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 102, 166, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.resource-card-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 55px;
}

.resource-card-title span {
    display: inline-block;
    color: #0065a8;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.resource-card-title h2 {
    color: #12395b;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.18;
    margin: 0 0 16px;
}

.resource-card-title p {
    color: #5f7084;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.resource-card {
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(18, 57, 91, 0.14);
    border: 1px solid rgba(0, 101, 168, 0.10);
    transition: all 0.35s ease;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 65px rgba(18, 57, 91, 0.22);
}

.resource-card-image {
    height: 230px;
    overflow: hidden;
    background: #e8f2fb;
}

.resource-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: all 0.45s ease;
}

.resource-card:hover .resource-card-image img {
    transform: scale(1.08);
}

.resource-card-content {
    padding: 28px 30px 32px;
}

.resource-card-content h3 {
    margin: 0 0 16px;
}

.resource-card-content h3 a {
    color: #0065a8;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.18;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.resource-card-content h3 a:hover {
    color: #12395b;
}

.resource-card-content p {
    color: #111111;
    font-size: 18px;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 991px) {
    .resource-card-section {
        padding: 75px 0;
    }

    .resource-card-title h2 {
        font-size: 34px;
    }

    .resource-card-image {
        height: 210px;
    }
}

@media (max-width: 575px) {
    .resource-card-section {
        padding: 60px 0;
    }

    .resource-card-title h2 {
        font-size: 28px;
    }

    .resource-card-content {
        padding: 24px 22px 28px;
    }

    .resource-card-content h3 a {
        font-size: 23px;
    }

    .resource-card-content p {
        font-size: 16px;
    }
}

.cancer-resource-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

.cancer-resource-header {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    align-items: center;
    gap: 35px;
    background: #ffffff;
    border-radius: 28px;
    padding: 42px;
    margin-bottom: 60px;
    box-shadow: 0 22px 70px rgba(25, 54, 110, 0.10);
    border-bottom: 5px solid #2563eb;
}

.cancer-resource-header-content span {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.cancer-resource-header-content h2 {
    color: #24185f;
    font-size: 58px;
    font-weight: 900;
    line-height: 1.08;
    margin: 0 0 18px;
}

.cancer-resource-header-content p {
    color: #5f6f89;
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
}

.cancer-resource-header-image {
    height: 230px;
    border-radius: 24px;
    overflow: hidden;
}

.cancer-resource-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Category Block */
.cancer-category-block {
    margin-bottom: 62px;
}

.cancer-category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 14px;
    margin-bottom: 28px;
    border-bottom: 3px solid #3b82f6;
}

.cancer-category-title h3 {
    color: #24185f;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.category-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: relative;
    background: #2563eb;
    display: inline-block;
    flex: 0 0 44px;
}

.category-icon::before,
.category-icon::after {
    content: "";
    position: absolute;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.category-icon::before {
    width: 24px;
    height: 24px;
    left: 9px;
    top: 9px;
}

.category-icon::after {
    width: 14px;
    height: 14px;
    left: 14px;
    top: 14px;
}

.category-icon.blue {
    background: #2563eb;
}

.category-icon.teal {
    background: #14b8a6;
}

.category-icon.red {
    background: #ef4444;
}

/* Cards */
.cancer-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cancer-resource-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(36, 24, 95, 0.10);
    box-shadow: 0 16px 45px rgba(25, 54, 110, 0.10);
    transition: all 0.35s ease;
}

.cancer-resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 75px rgba(25, 54, 110, 0.18);
}

.cancer-resource-image {
    height: 185px;
    overflow: hidden;
    background: #e9f1ff;
    border-bottom-left-radius: 36px;
}

.cancer-resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.45s ease;
}

.cancer-resource-card:hover .cancer-resource-image img {
    transform: scale(1.08);
}

.cancer-resource-content {
    padding: 24px 24px 28px;
}

.cancer-resource-content h4 {
    margin: 0;
}

.cancer-resource-content h4 a {
    color: #2563eb;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.cancer-resource-content h4 a:hover {
    color: #24185f;
}

/* Responsive */
@media (max-width: 991px) {
    .cancer-resource-header {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .cancer-resource-header-content h2 {
        font-size: 42px;
    }

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

    .cancer-category-title h3 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .cancer-resource-section {
        padding: 60px 0;
    }

    .cancer-resource-header {
        padding: 24px;
        border-radius: 20px;
    }

    .cancer-resource-header-content h2 {
        font-size: 34px;
    }

    .cancer-resource-header-image {
        height: 190px;
    }

    .cancer-resource-grid {
        grid-template-columns: 1fr;
    }

    .cancer-category-title {
        align-items: flex-start;
    }

    .cancer-category-title h3 {
        font-size: 25px;
    }

    .cancer-resource-image {
        height: 210px;
    }
}

.cancer-drugs-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 124, 168, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.cancer-drugs-layout {
    grid-template-columns: 300px 1fr;
    gap: 42px;
    align-items: start;
}

/* Sidebar */
.cancer-drugs-sidebar {
    position: sticky;
    top: 110px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 0;
    box-shadow: 0 18px 55px rgba(15, 45, 75, 0.10);
    border: 1px solid rgba(0, 102, 160, 0.10);
    overflow: hidden;
}

.cancer-drugs-sidebar h3 {
    color: #0065a8;
    font-size: 22px;
    font-weight: 900;
    padding: 0 24px 18px;
    margin: 0;
    border-bottom: 3px solid #0065a8;
}

.cancer-drugs-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cancer-drugs-sidebar ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cancer-drugs-sidebar ul li a {
    display: block;
    color: #5e6c7b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
    padding: 14px 24px;
    transition: all 0.3s ease;
}

.cancer-drugs-sidebar ul li a:hover,
.cancer-drugs-sidebar ul li.active a {
    background: #eef8ff;
    color: #0065a8;
    padding-left: 30px;
}

.cancer-drugs-sidebar ul li.active a {
    border-left: 5px solid #0065a8;
}

/* Main */
.cancer-drugs-main {
    min-width: 0;
}

.cancer-drugs-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
    color: #687789;
    font-size: 14px;
}

.cancer-drugs-breadcrumb a {
    color: #5b2aa0;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cancer-drugs-breadcrumb strong {
    color: #222222;
    font-weight: 800;
}

.cancer-drugs-header {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 36px;
    align-items: start;
    margin-bottom: 48px;
}

.cancer-drugs-header span {
    display: inline-block;
    color: #0065a8;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cancer-drugs-header h1 {
    color: #1d1d1d;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 18px;
}

.cancer-drugs-header p {
    color: #333333;
    font-size: 18px;
    line-height: 1.75;
    max-width: 760px;
    margin: 0;
}

.cancer-drugs-update-box {
    background: #ffffff;
    border-top: 5px solid #0f7c87;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(15, 45, 75, 0.14);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cancer-drugs-update-box i {
    color: #0f7c87;
    font-size: 22px;
    margin-top: 4px;
}

.cancer-drugs-update-box a {
    color: #0065a8;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.65;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Cards */
.cancer-drugs-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.cancer-drugs-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 34px;
    min-height: 180px;
    box-shadow: 0 16px 45px rgba(15, 45, 75, 0.12);
    border: 1px solid rgba(0, 102, 160, 0.10);
    overflow: hidden;
    transition: all 0.35s ease;
}

.cancer-drugs-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, #0065a8, #5b2aa0);
    opacity: 0;
    transition: all 0.3s ease;
}

.cancer-drugs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(15, 45, 75, 0.18);
}

.cancer-drugs-card:hover::before {
    opacity: 1;
}

.cancer-drugs-card h3 {
    margin: 0 0 16px;
}

.cancer-drugs-card h3 a {
    color: #0065a8;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.25;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.cancer-drugs-card h3 a:hover {
    color: #5b2aa0;
}

.cancer-drugs-card p {
    color: #333333;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

.cancer-drugs-share {
    margin-top: 42px;
    display: flex;
    gap: 14px;
}

.cancer-drugs-share a {
    width: 42px;
    height: 42px;
    background: #eef8ff;
    color: #0065a8;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cancer-drugs-share a:hover {
    background: #0065a8;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1199px) {
    .cancer-drugs-layout {
        grid-template-columns: 260px 1fr;
        gap: 30px;
    }

    .cancer-drugs-header {
        grid-template-columns: 1fr;
    }

    .cancer-drugs-update-box {
        max-width: 520px;
    }
}

@media (max-width: 991px) {
    .cancer-drugs-layout {
        grid-template-columns: 1fr;
    }

    .cancer-drugs-sidebar {
        position: relative;
        top: auto;
    }

    .cancer-drugs-header h1 {
        font-size: 38px;
    }

    .cancer-drugs-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .cancer-drugs-section {
        padding: 60px 0;
    }

    .cancer-drugs-header h1 {
        font-size: 32px;
    }

    .cancer-drugs-header p {
        font-size: 16px;
    }

    .cancer-drugs-card {
        padding: 26px 22px;
    }

    .cancer-drugs-card h3 a {
        font-size: 21px;
    }

    .cancer-drugs-update-box {
        padding: 22px;
    }
}

.drug-az-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 101, 168, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.drug-az-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 44px;
    align-items: flex-start;
}

/* Sidebar */
.drug-az-sidebar {
    position: sticky;
    top: 110px;
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 0;
    border: 1px solid rgba(0, 101, 168, 0.12);
    box-shadow: 0 18px 50px rgba(20, 53, 88, 0.10);
    overflow: hidden;
}

.drug-az-sidebar h3 {
    color: #0065a8;
    font-size: 22px;
    font-weight: 900;
    padding: 0 24px 18px;
    margin: 0;
    border-bottom: 3px solid #0065a8;
}

.drug-az-sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.drug-az-sidebar ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.drug-az-sidebar ul li a {
    display: block;
    color: #5e6c7b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
    padding: 14px 24px;
    transition: all 0.3s ease;
}

.drug-az-sidebar ul li a:hover,
.drug-az-sidebar ul li.active a {
    background: #eef8ff;
    color: #0065a8;
    padding-left: 30px;
}

.drug-az-sidebar ul li.active a {
    border-left: 5px solid #0065a8;
}

/* Breadcrumb */
.drug-az-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
    color: #687789;
    font-size: 14px;
}

.drug-az-breadcrumb a {
    color: #5b2aa0;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.drug-az-breadcrumb strong {
    color: #222222;
    font-weight: 800;
}

/* Header */
.drug-az-header {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px;
    margin-bottom: 32px;
    border-left: 6px solid #0065a8;
    box-shadow: 0 18px 55px rgba(20, 53, 88, 0.10);
}

.drug-az-header span {
    display: inline-block;
    color: #0065a8;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.drug-az-header h1 {
    color: #1d1d1d;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 18px;
}

.drug-az-header p {
    color: #333333;
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
    max-width: 900px;
}

/* Alphabet */
.drug-az-alphabet {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    padding: 18px;
    margin-bottom: 36px;
    border-radius: 18px;
    box-shadow: 0 14px 42px rgba(20, 53, 88, 0.10);
    border: 1px solid rgba(0, 101, 168, 0.12);
}

.drug-az-alphabet a {
    width: 40px;
    height: 40px;
    background: #eef8ff;
    color: #0065a8;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.drug-az-alphabet a:hover {
    background: #0065a8;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Letter Blocks */
.drug-letter-block {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px;
    margin-bottom: 32px;
    box-shadow: 0 18px 55px rgba(20, 53, 88, 0.09);
    border: 1px solid rgba(0, 101, 168, 0.10);
}

.drug-letter-block h2 {
    color: #ffffff;
    background: linear-gradient(135deg, #0065a8, #5b2aa0);
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 28px;
}

.drug-link-list {
    column-count: 2;
    column-gap: 42px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.drug-link-list li {
    break-inside: avoid;
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    line-height: 1.45;
}

.drug-link-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    background: #0065a8;
    border-radius: 50%;
}

.drug-link-list li a {
    color: #0065a8;
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.drug-link-list li a:hover {
    color: #5b2aa0;
}
.footer .text-secondary-color-2 {
    color:#262626;
}
.footer .nav-link{
    color:#262626;
    margin-bottom:5px;
    padding-left:0;
}
.copy-right .links-secondary{
  color: #262626 !important;
}
/* Responsive */
@media (max-width: 1199px) {
    .drug-az-layout {
        grid-template-columns: 260px 1fr;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .drug-az-layout {
        grid-template-columns: 1fr;
    }

    .drug-az-sidebar {
        position: relative;
        top: auto;
    }

    .drug-az-header h1 {
        font-size: 38px;
    }

    .drug-link-list {
        column-count: 1;
    }
}

@media (max-width: 575px) {
    .drug-az-section {
        padding: 60px 0;
    }

    .drug-az-header {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .drug-az-header h1 {
        font-size: 31px;
    }

    .drug-az-header p {
        font-size: 16px;
    }

    .drug-az-alphabet {
        padding: 14px;
        gap: 6px;
    }

    .drug-az-alphabet a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .drug-letter-block {
        padding: 26px 20px;
        border-radius: 18px;
    }
}



/* =========================================
   CANCER TYPE DETAILS PAGE
========================================= */

.ctd-page,
.ctd-page * {
    box-sizing: border-box;
}

.ctd-page {
    overflow: hidden;
    background: #f4f8fb;
    color: #172536;
}

.ctd-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* HERO */

.ctd-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 470px;
    padding: 100px 0 80px;
    background:
        linear-gradient(
            115deg,
            rgba(5, 30, 49, 0.96) 0%,
            rgba(11, 66, 89, 0.90) 56%,
            rgba(26, 126, 141, 0.76) 100%
        );
    color: #ffffff;
}

.ctd-hero.has-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ctd-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 255, 255, 0.16),
            transparent 30%
        );
    pointer-events: none;
}

.ctd-hero-shape {
    position: absolute;
    right: -90px;
    bottom: -130px;
    width: 360px;
    height: 360px;
    border: 70px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.ctd-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.ctd-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.ctd-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.ctd-breadcrumb a:hover {
    opacity: 0.75;
}

.ctd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    backdrop-filter: blur(7px);
}

.ctd-eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #68e0d0;
    content: "";
}

.ctd-title {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 750;
    line-height: 1.05;
    letter-spacing: -2px;
}

.ctd-hero-summary {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.75;
}

/* MAIN AREA */

.ctd-main {
    position: relative;
    padding: 90px 0;
}

.ctd-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        340px;
    gap: 40px;
    align-items: start;
}

.ctd-content-card {
    overflow: hidden;
    border: 1px solid #e1ebf0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(16, 53, 72, 0.09);
}

.ctd-featured-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 8.5;
    background: #dce9ee;
}

.ctd-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctd-featured-image::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 40%;
    content: "";
    background:
        linear-gradient(
            to top,
            rgba(6, 38, 54, 0.45),
            transparent
        );
}

.ctd-content-inner {
    padding: 48px;
}

.ctd-section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #168a91;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.ctd-content-title {
    margin: 0 0 25px;
    color: #102d3e;
    font-size: 36px;
    font-weight: 750;
    line-height: 1.2;
}

.ctd-entry-content {
    color: #536572;
    font-size: 17px;
    line-height: 1.9;
}

.ctd-entry-content > *:first-child {
    margin-top: 0;
}

.ctd-entry-content > *:last-child {
    margin-bottom: 0;
}

.ctd-entry-content h2,
.ctd-entry-content h3,
.ctd-entry-content h4 {
    margin: 42px 0 17px;
    color: #123749;
    font-weight: 750;
    line-height: 1.25;
}

.ctd-entry-content h2 {
    font-size: 32px;
}

.ctd-entry-content h3 {
    font-size: 25px;
}

.ctd-entry-content p {
    margin: 0 0 22px;
}

.ctd-entry-content ul,
.ctd-entry-content ol {
    margin: 0 0 24px;
    padding-left: 23px;
}

.ctd-entry-content li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.ctd-entry-content a {
    color: #168a91;
    font-weight: 600;
}

.ctd-entry-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 16px;
}

.ctd-entry-content blockquote {
    position: relative;
    margin: 32px 0;
    padding: 28px 30px 28px 34px;
    border-left: 5px solid #168a91;
    border-radius: 0 14px 14px 0;
    background: #eff8f8;
    color: #244b5b;
    font-size: 18px;
    font-style: italic;
}

/* TAGS */

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

.ctd-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 50px;
    background: #eaf7f6;
    color: #14787f;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.ctd-tag:hover {
    transform: translateY(-2px);
    background: #d6efed;
}

/* SIDEBAR */

.ctd-sidebar {
    position: sticky;
    top: 110px;
}

.ctd-sidebar-card {
    margin-bottom: 25px;
    padding: 30px;
    border: 1px solid #dfebef;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(16, 53, 72, 0.08);
}

.ctd-sidebar-card h3 {
    margin: 0 0 15px;
    color: #123749;
    font-size: 22px;
    font-weight: 750;
}

.ctd-sidebar-card p {
    margin: 0 0 22px;
    color: #667783;
    font-size: 15px;
    line-height: 1.75;
}

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

.ctd-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #edf2f4;
    color: #4b626f;
    font-size: 14px;
    line-height: 1.55;
}

.ctd-info-list li:last-child {
    border-bottom: 0;
}

.ctd-info-icon {
    display: inline-flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #e8f7f6;
    color: #148188;
    font-size: 17px;
    font-weight: 800;
}

.ctd-cta-card {
    position: relative;
    overflow: hidden;
    border: 0;
    background:
        linear-gradient(
            140deg,
            #0b3c52 0%,
            #126d76 100%
        );
    color: #ffffff;
}

.ctd-cta-card::after {
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border: 35px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.ctd-cta-card h3,
.ctd-cta-card p {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.ctd-cta-card p {
    color: rgba(255, 255, 255, 0.78);
}

.ctd-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border: 1px solid #33c5bc;
    border-radius: 10px;
    background: #33c5bc;
    color: #073640 !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.ctd-button:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

/* RELATED POSTS */

.ctd-related {
    padding: 85px 0 95px;
    background: #ffffff;
}

.ctd-related-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
}

.ctd-related-head h2 {
    margin: 0;
    color: #123749;
    font-size: 38px;
    font-weight: 750;
}

.ctd-related-head p {
    max-width: 520px;
    margin: 10px 0 0;
    color: #71818b;
    line-height: 1.7;
}

.ctd-related-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ctd-related-card {
    overflow: hidden;
    border: 1px solid #e3ecef;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(17, 55, 72, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ctd-related-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 65px rgba(17, 55, 72, 0.13);
}

.ctd-related-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(
            135deg,
            #dff1f2,
            #bcdfe1
        );
}

.ctd-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ctd-related-card:hover
.ctd-related-image img {
    transform: scale(1.06);
}

.ctd-related-content {
    padding: 25px;
}

.ctd-related-content h3 {
    margin: 0 0 11px;
    color: #14394a;
    font-size: 21px;
    font-weight: 750;
    line-height: 1.35;
}

.ctd-related-content h3 a {
    color: inherit;
    text-decoration: none;
}

.ctd-related-content p {
    margin: 0 0 18px;
    color: #6b7d87;
    font-size: 14px;
    line-height: 1.7;
}

.ctd-read-more {
    color: #168a91;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}
.alphabet-posts .letter-section ul li{
    width:32%;
        display: inline-block;
}
.alphabet-posts .letter-section ul li a{
    color:#000 !important;
        font-size: 15px;
    font-weight: 600;
}
/* RESPONSIVE */

@media (max-width: 991px) {
    .ctd-hero {
        min-height: 410px;
        padding: 80px 0 70px;
    }

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

    .ctd-sidebar {
        position: static;
    }

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

@media (max-width: 767px) {
    .ctd-container {
        width: min(100% - 28px, 1180px);
    }

    .ctd-hero {
        min-height: 380px;
        padding: 70px 0 55px;
    }

    .ctd-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .ctd-hero-summary {
        font-size: 16px;
    }

    .ctd-main {
        padding: 55px 0;
    }

    .ctd-content-inner {
        padding: 28px 22px;
    }

    .ctd-content-title {
        font-size: 29px;
    }

    .ctd-entry-content {
        font-size: 16px;
    }

    .ctd-entry-content h2 {
        font-size: 27px;
    }

    .ctd-sidebar-card {
        padding: 25px 22px;
    }

    .ctd-related {
        padding: 60px 0 70px;
    }

    .ctd-related-head {
        display: block;
    }

    .ctd-related-head h2 {
        font-size: 31px;
    }

    .ctd-related-grid {
        grid-template-columns: 1fr;
    }
}
.cancer-full-content h1{
    font-size: 35px;
}

        .cancer-category-wise-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eefaf8 100%);
            font-family: Arial, Helvetica, sans-serif;
            overflow: hidden;
        }

        .cancer-category-wise-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .cancer-category-block {
            margin-bottom: 70px;
        }

        .cancer-category-block:last-child {
            margin-bottom: 0;
        }

        .cancer-category-heading {
            margin-bottom: 32px;
            text-align: center;
        }

        .cancer-category-heading span {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 50px;
            background: rgba(0, 124, 137, 0.12);
            color: #007c89;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.6px;
            margin-bottom: 14px;
        }

        .cancer-category-heading h2 {
            color: #101828;
            font-size: 40px;
            line-height: 1.2;
            font-weight: 900;
            margin: 0;
        }

        .cancer-category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .cancer-category-card {
            background: #ffffff;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 18px 50px rgba(10, 32, 60, 0.11);
            border: 1px solid rgba(0, 101, 168, 0.12);
            position: relative;
            transition: all 0.35s ease;
        }

        .cancer-category-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 5px;
            width: 100%;
            background: linear-gradient(90deg, #007c89, #005ea8, #5b2aa0);
            z-index: 2;
        }

        .cancer-category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 28px 75px rgba(10, 32, 60, 0.18);
            border-color: rgba(0, 124, 137, 0.30);
        }

        .cancer-category-image {
            height: 210px;
            overflow: hidden;
            position: relative;
            background: #eef8ff;
        }

        .cancer-category-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: all 0.45s ease;
        }

        .cancer-category-card:hover .cancer-category-image img {
            transform: scale(1.08);
        }

        .cancer-category-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 101, 168, 0.05), rgba(0, 124, 137, 0.18));
        }

        .cancer-category-content {
            padding: 28px 26px 30px;
        }

        .cancer-category-content h3 {
            color: #101828;
            font-size: 22px;
            line-height: 1.3;
            font-weight: 900;
            margin: 0 0 12px;
        }

        .cancer-category-content p {
            color: #5d6a7c;
            font-size: 15.5px;
            line-height: 1.7;
            margin: 0 0 18px;
        }

        .cancer-category-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #0065a8;
            font-size: 15px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cancer-category-link span {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #eef8ff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .cancer-category-link:hover {
            color: #5b2aa0;
            transform: translateX(5px);
        }

        .cancer-category-link:hover span {
            background: #0065a8;
            color: #ffffff;
        }

        @media (max-width: 1100px) {
            .cancer-category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media(max-width:991px){
            img{max-width:100%}
            .footer_logo_span img{
                height:65px;
                object-fit:contain;
            }
            .app-div{justify-content:center}
            .footer .nav-link{padding:0}
            .swiper-slide img{
                height:auto;
                aspect-ratio:16 / 9;
            }
            .display-2{font-size:30px}
            .nav-wrapper{        justify-content: space-between;}
            .section{
                height: auto !important;
                min-height: 125px
            }
            .section .b-container.h-100.position-relative.pt-4{padding-bottom:25px}
        }
        @media (max-width: 650px) {
            .alphabet-posts .letter-section ul li{
                width:auto;
                padding-right:25px;
            }
            .search-box{width:100%}
            .cancer-category-wise-section {
                padding: 60px 16px;
            }

            .cancer-category-heading h2 {
                font-size: 30px;
            }

            .cancer-category-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .cancer-category-image {
                height: 220px;
            }

            .cancer-category-content {
                padding: 24px 22px 26px;
            }

            .cancer-category-content h3 {
                font-size: 21px;
            }
            .bnr-right-area a{
                min-height: 40px !important;
                height: 100%;
            }
            .about-img-div .about-big-img{
                aspect-ratio:5 / 6;
                height:auto !important;
            }
            .aboutpnl .img-circle{
                display:none;
            }
            h2{font-size:30px}
            .health-topic-slider .owl-dot{
                width: 6px;
                height: 6px;
                margin:0 2px;
            }
            .footer_logo_span img{
                height: 65px;
                width: auto;
                object-fit:contain;
            }
            .footer-advertise-link{font-size:13px,     padding: 0.75rem .7rem;}
            .alphabet-letter{
                display: flex;
                width: 25px;
                height: 25px;
                align-items: center;
                justify-content: center;
            }
            .footer p, .footer a{font-size:13px}
            .letter-section li{margin:0}
            .hero-section h1{font-size:25px}
            .bnr-right-area h3{font-size:24px}
        }
        @media(max-width:420px){
            a.glink img{
                width:18px;
                height:18px;
            }
            .header_logo_span img{
                height:65px;
            }
        }
