@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --light: #fff;
    --dark: #000;
    --primary: #0077b6;
    --success: #0077b6;
    --secondary: #bcc6cc;
    --button: #f1d233;
	--background: #00c5ff36;
}

body{
    margin: 0;
	padding: 0 !important;
	overflow: inherit !important;
    font-family: 'Figtree', sans-serif;
	
}

h1,  h2,  h3,  h4,  h5,  h6 {
	margin: 0 0 15px 0;
    font-family: 'Jost', sans-serif;
	font-weight: 700;
	text-transform: inherit;
	line-height: inherit;
	letter-spacing: 1px;
}

h1 {
	font-size: 30px;
}

h2{
	font-size: 25px;
    line-height: initial;
    font-weight: 700;
	text-transform:unset;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
    margin: 0 0 15px 0;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 25px;
    font-weight: 400;
}


ul {
	margin: 0;
	padding: 0;
}

ul,  li,  a {
	list-style-type: none;
    font-family: 'Figtree', sans-serif;
	font-size: 16px;
	line-height: 25px;
	text-decoration: none;
}

a:hover {
	transition: 0.8s;
	text-decoration: none;
}

.heading{
    line-height: 1.2;
    font-family: 'Jost', sans-serif;
    position: relative;
    font-size: 35px;
    font-weight: bold;
    color: var(--primary);
    text-transform: capitalize;
}

.smallheading{
    font-family: 'Figtree', sans-serif;
    color: var(--button);
    font-size: 16px;
    font-weight: bold;
}

section{
    padding: 1.5rem 0;
    margin: 1.5rem 0;
}

.btn-primary{
    background: var(--button);
    padding: 8px 15px;
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Jost', sans-serif;
	font-weight: 500;
}

.btn-primary-icon{
    background: var(--button);
    color: var(--primary);
    border-radius: 50%;
    padding: 10px;
}

.list li{
	list-style-type: none;
	margin-bottom: 10px; 
	position: relative;
      padding-left: 28px;
      margin-bottom: 10px;
      font-size: 16px;
      line-height: 1.5;
     
}

ul.list li::before {
      content: "\f058"; 
      font-family: "Font Awesome 6 Free";
      font-weight: 900; /* solid */
      position: absolute;
      left: 0;
      
      font-size: 16px; 
      color: var(--primary); 
    }

ul.list ol{
	list-style: none;
      padding-left: 25px;
      margin-top: 8px;
}

 ul.list ol li{
      position: relative;
      padding-left: 28px;
      margin-bottom: 8px;
      font-size: 15px;
    }

    ul.list ol li::before{
      content: "\f0a9";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--button);
      font-size: 16px;
    }

ul.list ol li p{
	margin-left: 20px;
}
/* --------------Topbar Start------------------- */

.topbar {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: var(--button)
}

.topbar .border-right{
  border-right: 2px solid var(--light);
  padding-right: 10px;
}

.topbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  z-index: -1;
}

.topbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 90%;
  background: var(--primary); /* right color */
  clip-path: polygon(3% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}


.topbar .container {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------- */

/*-------------- Navbar Start------------------- */


.navbar .dropdown-item{
  line-height: 30px;
  text-transform: uppercase;
}

.navbar .dropdown-item:hover{
  background: var(--primary);
  color: #fff;
}
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
/* .offcanvas-body .collapse .navbar-nav{
	box-shadow: 0 2px 4px 3px #80808029;
    
    padding: 15px;
    margin-top: 10px;
} */
.navbar-brand {
	width: 12%
}

.navbar-brand img{
	width: 100%;
}


.navbar .nav-link.active {
  border-bottom: 3px solid var(--primary);
  color: var(--primary) !important;
}

.navbar-nav {
  margin: 0 auto;         
  display: flex; 
  gap: 1rem;                
}

.navbar-nav .nav-link {
  padding: 0;                
}


.navbar .nav-link {
  font-weight: 500;
}

/*-------------------- Hero section--------------------- */
    .hero {
      overflow: hidden;
      background: url(https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/09/hero-bg.png);
		position: relative;
      margin: 0 !important;
      padding-bottom: 0 !important;
      padding-top: 2rem;
    }
    .hero h1 {
      font-weight: 800;
      color: var(--success);
      font-size: 60px;
    }
    .hero h1 span {
      color: var(--button);
    }

    .hero .star{
        height: 40px;
        width: 40px;
        position: absolute;
        top: 10%;
    }

    .hero .btn-main {
      color: #000;
      font-weight: 600;
      border-radius: 50px;
      padding: 0.8rem 1.8rem;
    }
    /* Image group */
    .hero-images {
      position: relative;
    }

    .hero .orange-star{
        position: absolute;
        width: 40px;
        height: 40px;
        top: 60%;
      
    }

    .hero-images img.main-img {
      width: 100%;
      border-radius: 20px;
      position: relative;
      z-index: 2;
    }
    .hero-images img.sub-img {
      position: absolute;
      top: -2%;
      right: 4%;
      width: 150px;
      z-index: -1;
    }
    .decor-star, .decor-arrow {
      position: absolute;
      color: var(--primary);
      font-size: 2rem;
      z-index: 1;
    }
    .decor-star {
      top: -30px;
      left: -30px;
    }
    .decor-arrow {
      bottom: -20px;
      left: 30%;
      transform: rotate(-20deg);
    }
    @media (max-width: 767px) {
      .hero {
        text-align: center;
      }
      .hero-images img.sub-img {
        display: none;
      }
    }

/*--------------- Expert card---------------------------- */
	.expert-section{
		background: #b1babd78;
		margin: 0 !important;
	}

    .Expert {
      width: 70%;
      margin: auto;
      position: relative;
      z-index: 4;
      margin-top: -100px;
    }

    .Expert .service-card {
      color: #fff;
      padding: 1rem;
      display: grid;
      grid-template-columns: 25% 75%;
      text-align: left;
      min-height: 150px;
    }

    .Expert .service-card p {
      color: var(--light);
      margin: 0;
    }

    .bg-color1 {
      background: var(--button);
      background-image: url(https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/09/contact-bg.png);
      background-repeat: no-repeat;
      background-position: top;
      background-size: cover;
      border-radius: 10px 0 0 10px;
    }

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

    .bg-color3 {
      background: var(--success);
      background-image: url(https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/09/contact-bg.png);
      background-repeat: no-repeat;
      background-position: top;
      background-size: cover;
      border-radius: 0 10px 10px 0;
    }

    .Expert .service-icon img {
      height: 60px;
      width: 60px;
    }

    /* Swiper specific styles */
    .expertSwiper {
      padding: 20px 0;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
    }

    @media (min-width: 992px) {
      /* On desktop, show in row instead of swiper */
      .expertSwiper .swiper-wrapper {
        display: flex;
      }
    }

/* --------------------------------------------------------- */

/* -----------------Partner Section -----------------------*/

	.partner{
		background: #b1babd78;
		margin: 0 !important;
	}
  
    .partner .partner-box {
      background: #fff;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* NAV SWIPER (tab links) */
    .partner .navSwiper .swiper-slide {
      width: auto; /* let them size to content */
    }
    .partner .nav-tabs {
      border-bottom: none;
      flex-wrap: nowrap;
    }
    .partner .nav-tabs .nav-link {
      border: none;
      background: transparent;
      font-weight: 600;
      color: #444;
      white-space: nowrap;
      padding: 10px 20px;
    }
    .partner .nav-tabs .nav-link.active {
      color: var(--primary);
      border-bottom: 3px solid var(--primary);
    }

    /* LOGO SWIPER */
    .partner .partnerSwiper {
      padding: 20px 0;
    }
    .partner .partnerSwiper .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .partner .partnerSwiper .swiper-slide img {
      max-height: 40px;
      opacity: 0.7;
      transition: all 0.3s ease;
    }
    .partner .partnerSwiper .swiper-slide img:hover {
      opacity: 1;
      transform: scale(1.05);
    }
/* ----------------------------------------------- */

/* ---------------- About Section ----------------------*/

.about .about-icon-box {
  width: 85px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F2F3F5;
  border-radius: 0 0 40% 40%;
  border-top: 3px solid var(--success);
}

.about .about-icon-box2{
  background-color: var(--secondary);
  width: 85px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 40% 40%;
  border-top: 3px solid var(--success);
}

.about .about-icon-box img,
.about .about-icon-box2 img{
    height: 40px;
    width: 40px;
}

.about .icon-box{
    border-bottom: 2px solid #D9D9D9;
}

/* --------------------------------------------- */

/*---------- Service Section Start -------------*/

.services{
    background: url(https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/09/service-bg.png) rgba(226, 222, 222, 0.432);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.services .service-tabs .nav-link {
  position: relative;
  margin-bottom: 15px;
  text-align: left;
  background-color: #ffffff8c;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
  border-right: 3px solid var(--success);
  padding: 20px 10px;
  margin-bottom: 40px;
}

.services .service-tabs .nav-link.active {
  background: var(--success);
  color: #fff;
  border-right: 3px solid var(--light);
}

.services .service-tabs .nav-link span{
    background-color: var(--light);
    height: 40px;
    width: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}

.services .service-tabs .nav-link span i{
    color: var(--success);
}

.services .service-tabs .nav-link.active::after {
  content: "";
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 25px solid var(--success);
}

.services .service-content {
  display: none;
}
.services .service-content.active {
  display: block;
}

.services .experience-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--primary);
  color: var(--light);
  text-align: center;
  padding: 5px;
}

.services .experience-badge-inner{
    border: 1px solid black;
    padding: 10px;
}

.services .experience-badge img{
    height: 40px;
    width: 40px;
}
.services .experience-badge h4 {
  margin: 0;
  font-size: 1.8rem;
}
.services .experience-badge p {
  margin: 0;
  font-size: 0.9rem;
}

.services .service-content h5{
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--button);
    font-family: 'Jost', sans-serif;
}

.services .service-content ul li i{
    color: var(--primary);
    font-size: 20px;
    margin-right: 10px;
    margin-top: 8px;
    
}



/* ----------------------------------------------------- */

/*----------------- Feature Section start -----------------------*/


  .feature-section .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 30px;
    }
    .feature-section .feature-item img {
      height: 25px;
      width: 25px;
      flex-shrink: 0;
    }
   .feature-section .feature-item h5 {
      margin-bottom: 5px;
      font-family: 'Jost', sans-serif;
      font-weight: 600;
    }
    .feature-section .feature-item p {
      margin-bottom: 0;
      font-family: 'Jost', sans-serif;
      margin-bottom: 1rem;
      color: var(--dark);
    }

   .feature-section .feature-item-inner{
        border-bottom: 3px solid #d9d9d9a6;
    }

   .feature-section .feature-images {
      position: relative;
      text-align: center;
      width: 100%;
    }
   .feature-section .main-img {
      position: relative;
      width: 90%;
      border-radius: 15px;
      background-color: #e6eaee93;
      padding: 20px 30px;
    }
   .feature-section .small-img {
      position: absolute;
      top: 50%;
      left: 60%;
      width: 45%;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      z-index: 2;
    }
   .feature-section .floating-text {
      position: absolute;
      top: 90%;
      left: 0;
      background: var(--primary);
      color: #fff;
      padding: 30px 20px;
      font-family: 'Jost', sans-serif;
      border-radius: 12px;
      font-weight: 600;
      max-width: 230px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      z-index: 3;
    }
   .feature-section .decor-arrow {
      position: absolute;
      top: 15%;
      right: -15%;
      width: 100px;
      height: 100px;
      background: transparent;
      border: 3px solid transparent;
      z-index: 1;
    }
  .feature-section .decor-arrow::before {
      content: '';
    position: absolute;
    top: 100px;
    left: 350px;
    width: 100px;
    height: 100px;
    background: url(https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/09/arrow.png) no-repeat center;
    background-size: contain;
    opacity: 1;
    }
   .feature-section .decor-star {
      position: absolute;
    left: 47%;
    top: 116%;
    width: 50px;
    height: 50px;
    background: url(https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/09/star.png) no-repeat center;
    background-size: contain;
    opacity: 1;
    z-index: 0;
    }

    /* Responsive */
    @media(max-width: 992px) {
     .feature-section .feature-title { font-size: 1.8rem; }
     .feature-section .floating-text { bottom: 10%; font-size: 0.9rem; max-width: 200px; }
     .feature-section .small-img { width: 50%; }
    }
    @media(max-width: 768px) {
      .feature-section .feature-images {
        margin-top: 40px;
      }
     .feature-section .main-img {
        width: 100%;
      }
     .feature-section .small-img {
        position: relative;
        margin-top: 20px;
        width: 70%;
      }
     .feature-section .floating-text {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
      }
     .feature-section .decor-arrow, 
     .feature-section .decor-star {
        display: none; /* hide on mobile */
      }
    }

/* ------------------- Feature Section end ---------------------------- */

/*----------------- Team Section Start------------------- */

 .our-team .team-card {
      text-align: center;
      background: #fff;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 20px;
      transition: 0.3s;
    }
    .our-team .team-card img {
      width: 100%;
      margin-bottom: 15px;
    }
    .our-team .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .our-team .swiper {
      padding-bottom: 40px;
    }

    .our-team .swiper-button-next,
    .our-team .swiper-button-prev {
      color: #333;
    }


/* ----------------------------------------------------------- */

/*---------------------- Staff Section Start--------------------- */
/* .staff{
  margin-bottom: -150PX;
} */


.stat-card {
      position: relative;
      background: #ffffff;
      border:  1px solid rgb(214, 209, 209);
      border-radius: 1rem;
      padding: 60px 20px 30px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: visible;
    }
    .stat-icon {
      position: absolute;
      top: -25px; /* half outside */
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 70px;
      border: 2px solid var(--primary);
      border-radius: 50%;
      background: var(--light);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .stat-icon img {
     height: 40px;
     width: 40px;
    }

  .swiper-slide {
  overflow: visible !important;
}

/* -------------------------------------------------------------- */

/* ------------------- Testimonial Section Start -----------------*/

    .Testimonial{
        background: url(https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/09/world.png) rgba(202, 199, 199, 0.267);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        padding: 8rem 0;

    }

   .Testimonial .testimonial-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      padding: 30px;
	  height: 350px;
      text-align: center;
    }
   
    .testimonial-stars i{
      color: var(--button);
      font-size: 14px;
    }

    .quote{
      background: var(--success);
      height: 50px;
      width: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

 
    .quote i{
      color: var(--light);
    }

    .testimonial-card small{
      text-align: left;
    }

    .testimonial-card p{
      text-align: left;
    }
   
    .Testimonial .swiper-button-prev,
   .Testimonial .swiper-button-next{
     
    background: var(--light);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    }

      .Testimonial .swiper-button-prev{
        top: 50%;
        right: 20%;
      }

    .Testimonial .swiper-button-prev::after,
   .Testimonial .swiper-button-next::after{
    color: var(--button);
    font-size: 20px;
    
   }
   
/*--------------------- Testimonial Section End --------------------*/


/* ---------------Home Section Start---------------------- */

.home .home-inner{
  width: 80%;
  margin: auto;
  background: var(--light);
  border: 1px solid var(--success);
  border-radius: 10px;
  padding: 1rem !important;
  margin-top: -50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home h4{
  font-size: 30px !important;
}

/* .home img{
  height: 20vh;
} */

/* ---------------------------------------------------- */

/*------------- Blog Section Start------------------- */


   .blog-section{
    background: url(https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/09/blog-bg.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
   }
    .blog-card {
      background: #dfdada70;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      height: 100%;
    }

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

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-card .content {
      padding: 20px;
    }

    .blog-meta {
      font-size: 12px;
      color: #888;
      margin-bottom: 10px;
    }

    .blog-title {
      font-size: 18px;
      font-weight: 700;
      color: #222;
      margin-bottom: 10px;
      font-family: 'Jost', sans-serif;

    }

    .blog-excerpt {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
      font-family: 'Jost', sans-serif;
    }

    .read-more {
      color: var(--success);
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
    }

    /* Swiper */
    .blog-slider .swiper {
      padding: 20px 0;
    }

    /* Swiper buttons near title */
    .blog-nav {
      display: flex;
      gap: 10px;
      margin-top: 30px;
    }

    .blog-nav .swiper-button-next,
    .blog-nav .swiper-button-prev {
      position: static;
      color: var(--light);
      background: var(--success);
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }

    .blog-nav .swiper-button-next::after,
    .blog-nav .swiper-button-prev::after {
      font-size: 18px;
    }

    @media (max-width: 991px) {
      .blog-section .row {
        flex-direction: column;
      }
      .blog-nav {
        justify-content: flex-start;
        margin-bottom: 30px;
      }
    }


/* ---------------- Contact section start ------------------------*/

    .contact-iframe iframe {
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 8px;
      min-height: 400px;
    }

.contact-section{
	margin-bottom: 0 !important;
}

    .contact-form input,
    .contact-form textarea{
      background-color: #F2F3F5;
      padding: 10px;
    }

    .contact-form input:hover,
    .contact-form textarea:hover{
      background-color: #F2F3F5;
    }

    .contact-section{
      background: url(https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/09/contact-bg.png) #b1babd38;
      background-repeat: no-repeat;
    }

/* ------------------------------------------------------ */

/* Footer Section Start */

footer {
      background: var(--success);
      color: var(--light);
      position: relative;
      padding: 60px 0 30px;
    }
    footer h5 {
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--light);
    }
    footer .brand {
      font-size: 28px;
      font-weight: 800;
      color: var(--light);
    }
    footer .brand span {
      color: #2ecc71;
    }
    footer ul {
      list-style: none;
      padding: 0;
    }
    footer ul li {
      margin-bottom: 8px;
    }
    footer ul li a {
      text-decoration: none;
      color: #d1d1d1;
      transition: color 0.3s;
    }
    footer ul li a:hover {
      color: #fff;
    }

		.footer-brand img{
			width: 60%;
		}
    .social-icons {
      display: inline-block;
      margin-right: 10px;
      text-align: center;
      line-height: 40px;
     
      color: #fff;
      border-radius: 5px;
      transition: 0.3s;
    }

    .social-icons i{
      margin-right: 10px;
      border-right: 1px solid #ffffff25;
    }

    .social-icons a{
      display: flex;
      padding: 10px;
      text-decoration: none;
      color: var(--light);
      background-color: #bcc6cc80;
      margin-bottom: 0.5rem;
      border-radius: 5px;
      align-items: center;
    }
    .social-icons a:hover {
      background: var(--button);
      color: var(--light);
    }
    .copyright {
      border-top: 1px solid #5c6c92;
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      color: #aaa;
      font-size: 14px;
    }
    /* Back to top button */
    #backToTop {
      position: absolute;
      top: -25px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--light);
      color: var(--secondary);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 4px solid var(--button);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: 0.3s;
      cursor: pointer;
    }
    #backToTop:hover {
      background: var(--secondary);
      color: var(--light);
    }

/* Footer Section End */


/* About Page Css */

.breadcrum{
    background: url(https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/10/breadcrmb.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 300px;
    position: relative;
    color: #fff; 
	margin: 0 !important;
}

.breadcrum ul li{
    display: inline;
}

.breadcrum::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); 
}
.breadcrum-heading{
    position: absolute;
    top: 50%;
    z-index: 2;
}

.breadcrum-heading h2{
    font-size: 40px;
    font-weight: 700;
}

 /* Background video full screen */
 /*.support{*/
 /*   position: relative;*/
 /*   padding: 0 !important;*/
 /*}*/
 /*   .video-bg {*/
 /*     position: absolute;*/
 /*     top: 0;*/
 /*     left: 0;*/
 /*     width: 100%;*/
 /*     height: 100%;*/
 /*     object-fit: cover;*/
 /*     z-index: -1;*/
 /*   }*/

 /*   .overlay-para{*/
 /*       color: #fff;*/
 /*       width: 70%;*/
 /*       margin: 0 auto;*/
 /*       margin-bottom: 2rem;*/
 /*   }*/

   
 /*   .overlay {*/
 /*     position: relative;*/
 /*     background: rgba(0, 0, 0, 0.637);*/
 /*     color: #fff;*/
 /*     display: flex;*/
 /*     flex-direction: column;*/
 /*     align-items: center;*/
 /*     justify-content: center;*/
 /*     padding: 40px 20px;*/
 /*     text-align: center;*/
 /*   }*/

 /*   .overlay h2 {*/
 /*     font-size: 2.2rem;*/
 /*     margin-bottom: 40px;*/
 /*   }*/

  

 /*   .support-box {*/
 /*     background: rgba(255, 255, 255, 0.08);*/
 /*     border: 1px solid rgba(255, 255, 255, 0.2);*/
 /*     border-radius: 12px;*/
 /*     padding: 20px;*/
 /*     transition: transform 0.3s ease, background 0.3s ease;*/
 /*     height: 200px;*/
 /*   }*/

 /*   .support-box:hover {*/
 /*     transform: translateY(-8px);*/
 /*     background: var(--success);*/
 /*   }*/

 /*   .support-box h3 {*/
 /*     font-size: 1.3rem;*/
 /*     margin-bottom: 15px;*/
 /*     color: var(--button);*/
 /*   }*/

 /*   .support-box p {*/
 /*     font-size: 1rem;*/
 /*     line-height: 1.6;*/
 /*     color: var(--light);*/
 /*   }*/

 /*   .trust-point img{*/
 /*       height: 30px;*/
 /*       width: 30px;*/
 /*   }*/

/*     .support-section {
      padding: 80px 0;
     
    } */

    

    .support-card {
      
      border: none;
     
      overflow: hidden;
     
    }

 

    .support-card img {
      width: 100%;
      height: 250px; /* fixed height */
      object-fit: cover;
      display: block;
      border-radius: 10px;
    }

    .support-card .card-body {
      padding: 20px;
    }

    .support-card .card-title {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 15px;
	  color: var(--primary);
    }

    .support-card .card-text {
      font-size: 0.95rem;
      color: #000;
      margin-bottom: 20px;
    }

  

/*Pricing Page css*/

.highlight-section {
     
      margin: 0;
    }

   .highlight-section .highlight-card {
      display: flex;
      flex-wrap: wrap;
      
      margin: 0 auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* LEFT SIDE (Image area) */
   .highlight-section .highlight-image {
      flex: 0 0 40%;
      max-width: 40%;
      background-color: #ffffff; /* White background for left part */
      display: flex;
     
      justify-content: center;
      overflow: hidden;
    }

  .highlight-section .highlight-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* RIGHT SIDE (Text area) */
   .highlight-section .highlight-content {
      flex: 0 0 60%;
      max-width: 60%;
      background-color:  #0077b626;/* Light greenish */
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

   .highlight-section .highlight-title {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 10px;
    }

  
   .highlight-section .highlight-line {
      width: 60px;
      height: 2px;
      background-color: var(--primary);
      margin: 15px 0;
    }

   .highlight-section .social-icons1 a {
      color: var(--primary);
      font-size: 1.2rem;
      margin-right: 10px;
      transition: color 0.3s;
    }

   .highlight-section .social-icons1 a:hover {
      color: #0d6efd;
    }

    
    @media (max-width: 768px) {
      .highlight-image, .highlight-content {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    .pricing-section{
        margin: 0;
    }

    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }

    .pricing-table th,
    .pricing-table td {
      border: 1px solid #ddd;
      padding: 12px 15px;
      text-align: left;
    }

    .pricing-table th {
      background-color: #f2f2f2;
      font-weight: 600;
    }
    .pricing-point ul li{
        line-height: 30px;
    }
    
    .pricing-point ul li i{
        color: var(--button);
    }
    
    .pricing-point{
        margin-top: 20px;
    }
    .pricing-sidebar {
      background-color: #ffffff;
      padding-left: 30px;
      border: 1px solid var(--primary);
    }

    .pricing-sidebar h5 {
      font-weight: 600;
      margin-bottom: 20px;
      border-bottom: 1px solid #ddd;
      padding: 10px 0;
    }

    .trending-post {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .trending-post img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 5px;
      margin-right: 10px;
    }

    .trending-post a {
      text-decoration: none;
      color: #114c44;
      font-size: 0.95rem;
    }

    .trending-post a:hover {
      text-decoration: underline;
    }
    
    .calculation ul li{
        list-style-type: circle;
        margin-left: 30px;
    }

.custom-list {
  list-style-type: none;       
  counter-reset: my-counter;   
  padding-left: 0;            
}

.custom-list li {
  counter-increment: my-counter; 
  position: relative;
  padding-left: 30px;          
  margin-bottom: 10px;
}

.custom-list li::before {
  content: counter(my-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: var(--primary); 
}


/*Escort Service Page*/

.escort ul li img{
    height: 20px;
    width:20px;
    margin:0 10px;
}

.escort ul li{
    line-height: 40px;
    
}

.escort .escort-img img{
    border-radius: 20px;
    outline: 5px solid var(--primary);
}

 .accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: #fff;
  }
  .accordion-button {
    color: var(--primary);
    font-size: 18px;
    font-width: 700;
  }
  .accordion-body ul li img{
      height: 20px;
      width: 20px;
      margin: 0 10px;
  }
  
  .bg-escort-section {
      background: url('https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/10/escort-bg.jpg') no-repeat center center fixed;
      background-size: cover;
      padding: 100px 0;
      position: relative;
      color: white;
    }

   .bg-escort-section .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
      z-index: 1;
    }

   .bg-escort-section .box-escort-container {
      position: relative;
      z-index: 2; /* above overlay */
    }

   .bg-escort-section .box-escort {
      background: rgb(0 0 0 / 58%);
      border: 2px solid white;
      padding: 30px;
      color: var(--light);
      text-align: center;
      border-radius: 10px;
      transition: transform 0.3s, background 0.3s;
    }
    
   
    
   .bg-escort-section .box-escort p{
        color: var(--light);
    }

  .bg-escort-section .box-escort:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.2);
    }
  
  /*Social Event For Elders*/
  
  .philosophy-point ul li{
      line-height: 30px;
  }
  
  .philosophy-point ul li img{
      height: 20px;
      width: 20px;
      margin: 0 10px;
  }
  
  .philosophy-img img{
      border-radius: 20px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
   /* Section with Background Image */
    .event-section {
      background: url('https://webzensys.com/work/silverjoy-medicare.sg/wp-content/uploads/2025/10/event-bg.webp') no-repeat center center/cover;
      padding: 100px 15px;
      position: relative;
      color: #fff;
      margin-bottom: 0;
    }

    /* Overlay for better readability */
    .event-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 0;
    }

    .event-section .container {
      position: relative;
      z-index: 1;
    }

    /* Boxes */
    .event-info-box {
      background-color: rgb(112 103 103 / 28%);
      border-radius: 12px;
      padding: 25px 20px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
      color: #fff;
      transition: transform 0.3s, box-shadow 0.3s;
      text-align: center;
    }

    .event-info-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    }

    .event-info-box h5 {
      font-weight: 700;
      margin-bottom: 15px;
      font-size: 20px;
      color: var(--button);
    }

    .event-info-box p {
      margin-bottom: 10px;
      font-size: 1rem;
      color: #fff;
    }

    @media (max-width: 768px) {
      .event-section {
        padding: 60px 15px;
      }
    }
    
    .experience-section {
      position: relative;
      padding: 80px 0;
      margin : 0;
      background: #bcc6cc47;
    }

    .experience-section .card {
      transition: transform 0.3s, box-shadow 0.3s;
      border-radius: 1rem;
      border: none;
      overflow: hidden;
    }

    .experience-section .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .experience-section .card .icon{
        display: flex;
        justify-content: center;
    }
    .experience-section .card .icon i {
      transition: transform 0.3s, color 0.3s;
      color: var(--button);
      background: var(--primary);
      height: 80px;
      width: 80px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
       clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    }

    .experience-section .card:hover .icon i {
      transform: scale(1.2);
    }

    .experience-section h2 {
      font-weight: 700;
    }

    /* Custom list style */
    .experience-section ul {
      list-style: none;
      padding-left: 0;
    }

    .experience-section ul li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
    }

    .experience-section ul li::before {
      content: "\f105"; 
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 0;
      width: 18px;
      height: 18px;
      background: var(--primary); 
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
    }

    .experience-section .card-body {
      padding: 2rem 1.5rem;
    }

    .experience-section .card-title {
      margin-bottom: 1rem;
    }
    
    
    /*Home Companion*/
    
    .what-do img{
        height: 20px;
        width: 20px;
    }
    
    .heart-img img{
        border-radius: 20px;
    }
    
   
  /*Contact Us Page*/
  
 .wpcf7-submit{
     background: var(--button);
    padding: 8px 15px;
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    border: none;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
 }
 
 .contact-image img{
     border-radius: 20px;
 }
 
 .book-form h3 span{
     color: var(--button);
 }
 
 .book-form{
     background: #bcc6cc59;
    padding: 30px;
    border-radius: 20px;
 }

.join-form{
	width: 80%;
    margin: auto;
    margin-top: 30px;
    background: #8080802b;
    padding: 30px;
    border-radius: 20px;
}

.join-heading p{
	width: 70%;
	margin: auto;
}

/* Partner Page */

/* Why Partner Section */
    
    .why-icon {
      font-size: 3rem;
      color: var(--button);
      margin-bottom: 15px;
    }

	.why-box{
	box-shadow: 0 0 10px 5px #80808036;
    border-radius: 20px;
    padding: 20px;
}

    /* How It Works */

.steps{
	background: #8080801a;
    padding: 5rem 0;
}
   .step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  margin: 0 auto;
}
.step-icon i{
	color: var(--button);
}
.step-icon:hover {
  transform: scale(1.1);
}

.steps .arrow i{
	color: var(--primary);
}

.steps .steps-start p {
  max-width: 400px;
  margin: 5px auto 0;
  color: #011230;
}

.partner-us-form{
	box-shadow: 0 0 10px 5px #80808040;
    border-radius: 20px;
    padding: 30px;
}

@media (max-width: 576px) {
  .step-icon {
    width: 60px;
    height: 60px;
  }
}

.partner-form-box img{
	border-radius: 20px;
}
/* -----------------Responsive Start -----------------*/

@media (max-width: 1200px) {
  .feature-section .decor-arrow{
    display: none;
  }

  .feature-section .small-img{
    left: 53%;
  }

  .feature-section .main-img {
    width: 80%;
  }

  .feature-section .decor-star{
    left: 34%;
    top: 135%;
  }
}

@media (max-width:1024px) {
  .hero h1{
    font-size: 50px;
  }
  .home .home-inner{
    width: 100%;
  }

	.bg-escort-section .box-escort{
		height: 230px;
	}
  .Expert{
    width: 90%;
  }
  .partner .partner-logos {
    gap: 1rem;
  }

  .services .service-tabs .nav-link span{
    height: 40px;
    width: 40px;
    margin-right: 0;
  }

  .feature-section .small-img{
    top: 75%;
  }

  .feature-section .decor-star{
    left: 34%;
        top: 160%;
  }
}

@media (max-width:991px) {
  .Expert{
    width: 100%;
  }

  .home .home-inner{
    width: 100%;
  }
	
 .support-card img {
		height: 350px;
	}
  
  .navbar-brand{
      width: 15%;
  }

  .bg-color1{
    border-radius: 0;
  }

  .bg-color3{
    border-radius: 0;
  }

  .home .home-inner{
    width: 100%;
  }
  .Expert .service-card{
    display: block;
    text-align: center;
  }
  .Expert .service-icon img {
    margin-bottom: 1rem;
  }
  .partner .partner-box{
    padding: 1rem;
  }
 .feature-section .small-img{
    display: none;
  } 

  .feature-section .main-img{
    width: 100%;
  }
  .feature-section .floating-text{
    display: none;
  }

  section{
    padding: 2rem 0;
    margin: 2rem 0;
  }

  .staff .heading{
    font-size: 20px;
  }

  .stat-icon img {
    height: 40px;
    width: 40px;
  }

  .stat-card{
    height: 150px;
  }

	.why-box{
		height: 320px;
	}
  .home h4{
    font-size: 20px !important;
  }
	
	.join-form{
		width: 100%;	
	}
	
	.bg-escort-section .box-escort{
		height: 250px;
		padding: 15px;
	}
	
	
}

@media (max-width:767px) {
  .hero .star {
    top: 50%;
  }
.home .home-inner{
		margin-top: 0px;
	}
  .feature-section .floating-text {
    display: none;
  }

  .home .home-inner{
    width: 100%;
    display: block;
    text-align: center;
  }
	.bg-escort-section .box-escort{
		height: auto;
		padding: 30px;
	}
  section{
    margin: 1rem 0;
	 padding: 1rem 0;
  }
	
	ul.list ol {
		padding-left: 0px;
	}

  .stat-card{
    border-radius: 0;
  }
	
	.join-heading p {
		width: 100%;
	}
	
	.footer-brand img {
    width: 40%;
}
	
	.pricing-sidebar{
		display: none;
	}
	
	.heading{
		font-size: 30px;
	}
}

@media (max-width: 667px){
    .navbar-brand {
        width: 20%;
    }
	.footer-brand img {
    width: 40%;
}
	.why-box {
        height: 250px;
    }
	.steps-start{
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.steps-start .arrow{
		display:none
	}
	
}

@media (max-width: 568px){
	.hero .orange-star{
		display: none;
	}
}

@media (max-width: 479px){
    .navbar-brand {
        width: 30%;
    }
	
	.breadcrum{
		min-height: 250px;
	}
	
	.book-form {
		padding: 20px;
	}
	
	.services .service-tabs .nav-link.active::after{
		right: -10px;
	}
	
	.breadcrum-heading h2{
		font-size: 35px;
	}
	
}

@media (max-width: 414px){
    
	
	.breadcrum{
		min-height: 215px;
	}
}
@media (max-width: 425px) {

  .Expert {
      margin-top: -180px;
  }

  .about .about-icon-box,
  .about .about-icon-box2 {
    width: 120px;
  }
	
	.join-form{
		padding: 15px
	}

}

@media (max-width: 375px) {
	.feature-section .feature-images {
        margin-top: 0px;
    }
}

@media (max-width: 360px){
	.breadcrum-heading h2{
	font-size: 30px;
}