
@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:#FFB6C1;
  --client-purple:#36225b;
  --orange:#ec9953;
}

/* ---------------------------- */
/* 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(--orange);
  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-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: white;
}

/* ---------------------------- */
/* 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:var(--client-purple);
}

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

.footer a:hover{
  color: var(--accent-color-2)!important;
}


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

.footer-logo p{
  color: white;
}


/* ---------------------------- */
/* 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 {
    display: none;
  }

  .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 4rem;
  }

  .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 h1 {
    left: 8%;
  }

  .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: #f2994a !important;
    color: #000000 !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-advertise-link{
    background-color: var(--orange);
    color: #fff;
    font-size: 1.15rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}
.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;
    }
}










