*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}
h1, h2, h3,h4,h5,h6, p, a, ul, li,span {
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}

@font-face {
    font-family: 'Acumin';
    src: url(../fonts/Acumin-Variable-Concept.ttf);
}
@font-face {
    font-family: 'DMSans-Regular';
    src: url(../fonts/DMSans-Regular.ttf);
}
@font-face {
    font-family: 'DMSans-Regular';
    src: url(../fonts/DMSans-Regular.ttf);
}
@font-face {
    font-family: 'DMSans-Medium';
    src: url(../fonts/DMSans-Medium.ttf);
}
@font-face {
    font-family: 'DMSans-Bold';
    src: url(../fonts/DMSans-Bold.ttf);
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
    font-family: 'Poppins-Medium';
    src: url(../fonts/Poppins-Medium.ttf);
}
@font-face {
    font-family: 'Poppins-Bold';
    src: url(../fonts/Poppins-Bold.ttf);
}
.themecolor{
    color: #5f1a59;
}
/* header css */

#preloader {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    background: #a48989;
}
#preloader .loading-container, #preloader .loading-container .loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}
#preloader .loading-container {
    margin: 0px auto;
    display: flex;
    height: 100vh;
    align-items: center;
}
#preloader .loading-container .loading {
    border: 2px solid transparent;
    border-color: transparent #fff transparent #fff;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}
#preloader .loading-container:hover .loading, #preloader .loading-container .loading {
    transition: all 0.5s ease-in-out;
}
#preloader .loading-container #loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}
@keyframes rotate-loading{
    0%{
        transform: rotate(0deg);
    }

    100%{
        transform: rotate(360deg);
    }
}





/*#preloader {
    background-color: #000000;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
}
.loading {
    width: 100%;
    max-width: 550px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0px auto;
    margin-top: -90px;
}
.loading svg {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(10%) sepia(32%) saturate(7491%) hue-rotate(291deg) brightness(91%) contrast(89%);
}*/
/* Fullscreen Preloader */
/*#preloader {
	background-color: #000000;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 2147483647;
}

.loading {
	width: 100%;
	max-width: 550px;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0px auto;
	margin-top: -90px;
}

.loading svg {
	width: 100%;
	height: 100%;
    filter: brightness(0) saturate(100%) invert(10%) sepia(32%) saturate(7491%) hue-rotate(291deg) brightness(91%) contrast(89%);
    animation: pulse 1.5s infinite ease-in-out;
}

.loading #pulsar {
	stroke-dasharray: 281;
	-webkit-animation: dash 2.5s infinite linear forwards;
}

@-webkit-keyframes dash {
	from {
		stroke-dashoffset: 814;
	}

	to {
		stroke-dashoffset: -814;
	}
}*/

/* Fullscreen Preloader end */

.navbar-brand img {
    width: 100%;
    max-width: 70px;
}
.navbar .nav-item {
    margin-right: 20px;
}
.navbar .nav-link {
    font-family: 'Acumin', sans-serif;
    font-size: 18px;
    color: #1e1e1e;
    text-transform: uppercase;
    padding: 5px 5px !important;
    transition: all 0.3s ease;
}
.navbar .nav-link:hover {
    color: #581d56;
}
.navbar .contact-btn a {
    background-color: #5f1a59;
    color: #fff;
    padding: 6px 15px !important;
    border-radius: 5px;
} 
.navbar .contact-btn a.nav-link {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 4px !important;
    padding-top: 7px !important;
}
.navbar .contact-btn a.nav-link:hover{
    background-color: #b56cad;
}
/* .hover_btn{
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 2;
} 
.hover_btn::after{
    content: '';
    width: 0%;
    height: 100%;
    background: #b56cad;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.9, 0.04, 0.63, 1.47);
}
.hover_btn:hover::after{
    width: 100%;
} */

.hover_btn {
  position: relative;
  cursor: pointer;
  overflow: hidden;
} 
.hover_btn span{
    position: relative;
    z-index: 3;
    color: #fff;
}
.hover_btn::before,
.hover_btn::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
}

.hover_btn::before {
  background: #b56cad;
  transition: 0.8s ease-in-out;
  transition-delay: 0.1s;
}

/* .hover_btn::after {
  background: #314589;
  transition: 0.8s ease-in-out;
  transition-delay: 0.4s;
} */

.hover_btn:hover::before {
  transform: translate(-50%, -50%) scale(600);
  margin: 0 auto;
}


.navbar .nav-link.active{
    color:#581d56;
}
.navbar .email-btn{
    background: #fff;
    border-radius: 50%;
    width: 38px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5f1a59;
    font-size: 20px;
    transition: all .3s ease-in-out;
        border: 1px solid transparent;
    line-height: 1;
}
.header-bg .navbar .email-btn {
    border: 1px solid #5f1a59;
}
.navbar .email-btn:hover{
    background: #5f1a59;
    color: #fff;
}
.navbar .email-btn a:hover{
    color: #fff;
}
.navbar .nav-item:last-child {
    margin-right: 0;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    transition: transform 0.35s ease, background-color 0.35s ease;
    z-index: 999;
    background-color: transparent; /* initially transparent */
}

/* Hide header */
.nav-up {
    transform: translateY(-100%);
}

/* Show header */
.nav-down {
    transform: translateY(0);
}

/* Background color after scroll */
.header-bg {
    background-color: #fff; /* your color */
        border-bottom: 1px solid #f0e6f1;
}
.header-bg.nav-down .tp-header-main{
    padding: 10px 0;
}
.header-bg.nav-down .navbar-brand img{
    max-width: 50px;
}

/* home banner slider css */
.hero_slider{
    overflow: hidden;
}
.hero_slider .item{
    width: 100%;
}
.hero_slider .item img{
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
}
/* .hero_slider .owl-item.active{
    animation: backInLeft 1s ease 2s both;
} */
.hero_slider_left_box h2{
    font-family: 'DMSans-Medium', sans-serif;
    color: #b56cad;
    font-size: 60px;
    text-transform: uppercase;
    line-height: 1;
}
.hero_slider_left_box p{
    font-size: 18px;
    color: rgba(0, 0, 0, 75%);
    font-family: 'poppins-Regular', sans-serif;
}
.happy_chapter{
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    background-color: #e9dfe4;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    margin-left: auto;
}
.happy_chapter h4{
    font-family: 'poppins-Regular', sans-serif;
    font-size: 26px;
    color: #5f1a59;
    margin-bottom: 10px;
}
.happy_chapter a{
    font-family: 'poppins-Regular', sans-serif;
    background: #5f1a59;
    padding: 10px 20px;
    color: #fff;
    font-size: 18px;
    display: block;
    border-radius: 10px;
}
.happy_chapter a i{
    margin-left: 10px;
    font-size: 12px;
    position: relative;
    z-index: 3;
}
.story_box{
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 15%);
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    margin-left: auto;
}
.hero_img_box{
    display: flex;
    align-items: flex-end;
    height: 100%;
}
.hero_img_box img{
    width: 100%;
    max-width: 90%;
    margin-left: auto;
}
.success_box h4{
    font-family: 'DMSans-Regular', sans-serif;
    font-size: 32px;
    color: #5f1a59;
    font-weight: 300;
    line-height: 1;
}
.success_box p{
    font-size: 18px;
    font-family: 'Poppins-Medium', sans-serif;
    color: rgba(95, 26, 89, 55%);
    line-height: 1;
}
.start_here i{
    font-size: 16px;
    background: #5f1a59;
    color: #fff;
    padding: 7px;
    border-radius: 50%;
    margin-right: 10px;
}
.story_box .start_here{
    font-family: 'poppins-Regular', sans-serif;
    font-size: 16px;
    color: #5f1a59;
    text-transform: uppercase;
    text-align: left;
    margin-top: 15px;
    display: flex;
    align-items: center;
}
/* Custom Dots Container */
.custom-dots {
    position: relative;
    bottom: 160px;
}

/* Line connecting dots */

.custom-dots .custom-dot {
    display: inline-block;
    position: absolute;
    z-index: 1;
    cursor: pointer;
}

.custom-dots .custom-dot .dot-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid #ddd;
    transition: all 0.3s ease;
    object-fit: cover;
    display: block;
    background: #fff;
}

.custom-dots .custom-dot.active .dot-image {
    border-color: #d7a6ca;
    border-width: 3px;
    /* box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3); */
}

.custom-dots .custom-dot:hover .dot-image {
    border-color: #d7a6ca;
}

.custom-dot:nth-child(2){
    position: absolute;
    top: 0;
    left: 40px;
    z-index: 4;
}
.custom-dot:nth-child(3){
    position: absolute;
    top: 0;
    left: 80px;
    z-index: 2;
}
.custom-dot:nth-child(2).active{

}
.custom-dots .custom-dot.active{
    z-index: 5;
}
.hero_slider .owl-item.active .hero_slider_left_box h2{
    animation: fadeInUp 1s ease-in-out both;
}
.hero_slider .owl-item.active .hero_slider_left_box p{
    animation: fadeInUp 1s 1s ease-in-out both;
}
.hero_slider .owl-item.active .hero_img_box img{
    animation: fadeInUp 1.5s ease-in-out both;
}
.hero_slider .owl-item.active .happy_chapter{
    animation: fadeInRight 1s 1.5s ease-in-out both;
}
.hero_slider .owl-item.active .story_box{
    animation: fadeInRight 1s 2.5s ease-in-out both;
}

/* about section css */
.about_dr{
    padding: 100px 0 100px;
    background: rgba(255, 255, 255, 40%);
    position: relative;
    overflow: hidden;
}
.about_bg{
    position: relative;
}
.about_bg_box{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 80%;
    z-index:-1;
}
/* .about_dr::after{
    content: url(../images/about-bg.webp);
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
} */

.about_dr_left_box{
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
}
.about_dr_left{
    position: relative;
    text-align: center;
}
.about_dr_left img{
    position: relative;
    z-index: 2;
}
.about_dr_left::after{
   /* content: '';
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #ddc9d8;
    position: absolute;
    top: 44px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);*/
}
.about_dr_dep p{
    text-align: right;
    font-size: 18px;
    color: #000;
    margin-top: 30px;
}
.about_dr_dep img{
    margin-top: -30px;
}
.heading_box span{
    font-size: 35px;
    color: #5f1a59;
    font-family: 'DMSans-Regular', sans-serif;
    font-weight: 100;
    display: block;
}
.heading_box  h2{
    font-family: 'DMSans-Medium', sans-serif;
    font-size: 73px;
    color: #5f1a59;
    line-height: 1;
}

.about_dr_right p{
    font-family: 'Acumin', sans-serif;
    font-size: 18px;
    color:#6b6b6b;
    margin-top: 30px;
}
.heading_box p{
    font-size: 31px;
    color: #5f1a59;
    font-family: 'DMSans-Regular', sans-serif;
    margin-top: 0;
}
.custom_btn{
    padding: 14px 30px;
    background: #5f1a59;
    color: #fff;
    text-transform: capitalize;
    border-radius: 8px;
    font-family: 'Poppins-Regular', sans-serif;
    max-width: 250px;
    display: block;
    text-align: center;
    margin-top: 30px;
}
.custom_btn i{
    font-size: 10px;
    margin-left: 10px;
    position: relative;
    z-index: 3;
}
.custom_btn:hover{
    color: #fff;
}

/* fertility_service section */
.fertility_service{
    padding: 100px 0;
    overflow: hidden;
}
.fertility_left_box .heading_box p{
    font-size: 31px;
    color: #b079ab;
    font-family: 'DMSans-Regular', sans-serif;
    margin-top: 0;
    line-height: 1.2;
}
.fertility_left_box p{
    font-family: 'Poppins-Regular', sans-serif;
    color: rgba(0, 0, 0, 75%);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
}
.fertility_left_box img{
    margin-top: 50px;
} 

/* IVF Card */
.ivf-card {
    background: rgba(255, 255, 255, 90%);
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid rgba(0, 0, 0, 20%);
}

.ivf-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.ivf-title {
    color: #5f1a59;
    font-size: 25px;
    font-family: 'Poppins-Regular', sans-serif;
}
.ivf-icon img{
    width: 100%;
    max-width: 80px;
}
.progress-item {
    margin-bottom: 25px;
}

.progress-item:last-child {
    margin-bottom: 0;
}

.progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.progress-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b6b6b;
    font-size: 18px;
    font-family: 'Poppins-Regular', sans-serif;
}

.progress-label svg {
    width: 20px;
    height: 20px;
    fill: #7d2d7d;
}

.progress-value {
    color: rgba(0, 0, 0, 75%);
    font-family: 'Poppins-Regular', sans-serif;
    font-size: 18px;
}

.progress {
    height: 8px;
    border-radius: 10px;
    background-color: #f0e6f0;
    overflow: visible;
}

.progress-bar {
    background: linear-gradient(90deg, #7d2d7d 0%, #b17bb1 100%);
    border-radius: 10px;
    position: relative;
    width: 0;
    transition: width 1.5s ease-in-out;
}

/* right slider css */

#slider-wrapper {
    position: relative;
}

#slider-wrapper .card {
    background: #fff;
    padding: 15px 20px;
    margin: 0px auto 15px;
    border-radius: 20px;
    box-shadow: 0 3px 7px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    border: none;
    /*position: absolute;*/
    z-index: 5;
    /*left: 0;
    right: 0;*/
    animation: shake 1s alternate infinite both;
    opacity: 1;
}
@keyframes shake {
    0%{
        transform: translateX(0px);
    }
    50%{
        transform: translateX(2px);
    }
    100%{
        transform: translateX(-2px);
    }
}
#slider-wrapper .btn_get_text {
    position: relative;
    top: 2px;
}
#slider-wrapper .btn:focus{
    border: none;
    box-shadow: none;
}
#slider-wrapper .btn:hover {
    background: #b079ab;
}
#slider-wrapper .card:hover {
    animation: none;
}
#slider-wrapper .card:nth-child(2){
    /*top: 130px;
    opacity: 0.7;
    z-index: 4;*/
}
#slider-wrapper .card:nth-child(2):hover #slider-wrapper .card:first-child{
    background: #000 !important;
}
#slider-wrapper .card:nth-child(3){
    /*top: 260px;
    opacity: 0.3;
    z-index: 3;*/
}
#slider-wrapper .card:nth-child(4){
    /*top: 390px;
    opacity: 0.1;
    z-index: 2;*/
}
#slider-wrapper .card:hover{
    opacity: 1;
    z-index: 5;
    box-shadow: 0 0px 20px -8px rgba(0, 0, 0, 0.5);
}
#slider-wrapper .card h3 {
  font-family: 'Acumin', sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 600; 
}

#slider-wrapper  .card p {
  color: #757575;
  font-family: 'Acumin', sans-serif;
  line-height: 1.5;
  font-size: 14px;
  margin: 10px 0 10px;
  font-weight: 500;
}

#slider-wrapper  .btn {
    font-family: 'Acumin', sans-serif;
    font-weight: 500;
  background: #5f1a59;
  color: white;
  padding: 6px 10px 6px 25px;
  width: 82%;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

#slider-wrapper  .btn .icon {
    background: white;
    color: #5b1a54;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* why-dr-arindam-rath section css */
.why-dr-arindam-rath{
    background: #fff;
    overflow: hidden;
}
.why-dr-arindam-rath .container-fluid{
  margin: 0 -15px;
}

.why-dr-arindam-rath .left-image {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.why-dr-arindam-rath .left-image video{
    height: 100vh;
}
.why-dr-arindam-rath .heading_box h2{
    font-size: 40px;
}

.why-dr-arindam-rath .left-image .play-btn i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: rgba(255, 255, 255, 75%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 5px solid rgba(255, 255, 255, 75%);
}

.why-dr-arindam-rath .right-content {
  padding: 60px 0 60px 50px;
}


.why-dr-arindam-rath .stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.why-dr-arindam-rath .stat-item {
  width: 27.33%;
}

.why-dr-arindam-rath .stat-item .numbers {
  font-size: 40px;
  font-weight: 700;
  color: #b56cad;
  display: block;
  margin-bottom: 5px;
  font-family: 'DMSans-Regular', sans-serif;
  font-weight: 100;
  line-height: 1.25;
}

.suffix {
    font-size: 20px; /* smaller size for suffix */
    color: #ccc; /* different color for suffix */
    margin-left: 10px;
}
.why-dr-arindam-rath .stat-item i{
    font-size: 12px;
    background: #5f1a59;
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
}
.why-dr-arindam-rath .stat-item p {
  margin-top: 10px;
  font-family: 'Poppins-Regular', sans-serif;
  font-size: 17px;
    display: flex;
    align-items: center;
}

.why-dr-arindam-rath .stat-item .desc {
  font-size: 13px;
  color: rgba(0, 0, 0, 75%);
  margin-top: 25px;
}

.why-dr-arindam-rath .appointment_btn {
  border-radius: 15px;
  margin-top: 50px;
  border: none;
  position: relative;
  z-index: 3;
}

/* happy_parents section css */
.happy_parents{
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.happy_parents::after{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/happy-parents-bg-left.webp);
    position: absolute;
    left: 0;
    bottom: -40%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
}
.happy_parents::before{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/happy-parents-bg-right.webp);
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
}
.happy_parents_box{
    margin-top: 40px;
}
.happy_parents .heading_box h2{
    font-family: 'Acumin', sans-serif;
    font-size: 64px;
}
.happy_parents .heading_box p{
    font-family: 'Acumin', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    margin-top: 10px;
}
.owl-carousel.happy_parents_slider .owl-stage-outer{
    padding-bottom: 20px;
}
.parents_card {
    background: #f0e6f1;
    border-radius: 30px;
    padding: 30px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */  
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.first-card{
    /*transform: translateY(90px) !important;*/
}

.parents_card:hover{
    border: 1px solid #b56cad;
    box-shadow: 0 5px 10px -5px #b56cad;
} 
.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    margin-bottom: 25px;
    overflow: auto;
    height: 200px;
}

/* scrollbar styling */

.happy_parents_slider ::-webkit-scrollbar{
  width: 8px;
}

.happy_parents_slider ::-webkit-scrollbar-thumb{
  background:#5f1a59;
  border-radius:10px;
}

.happy_parents_slider ::-webkit-scrollbar-track{
  background: #fff;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  border-radius:6px;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
}
.card-content p {
    color: #6a6a6a;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Acumin', sans-serif;
}

.author {
    margin-bottom: 30px;
}

.author-name {
    font-weight: 500;
    color: #000;
    font-family: 'Acumin', sans-serif;
    font-size: 14px;
}

.author-location {
    color: #7a7a7a;
    font-size: 12px;
    font-family: 'Acumin', sans-serif;
}

.read-more-btn {
    background: #fff;
    color: #2c2c2c;
    border: none;
    padding: 10px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Acumin', sans-serif;
}

.read-more-btn:hover {
    background: #f8f8f8;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    color: #000;
}
.read_all_btn{
    font-family: 'Acumin', sans-serif;
    font-weight: 500;
    background: #5f1a59;
    color: white;
    padding: 6px 10px 6px 25px;
    width: 82%;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.read_all_btn i{
    background: white;
    color: #5b1a54;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}


/* latest_blog section css */
.latest_blog{
    padding: 100px 0;
    background: rgba(255, 255, 255, 70%);
    position: relative;
}
.latest_blog::after{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/latest-blog-top-bg.webp);
    position: absolute;
    left: 0;
    top: 0%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left top;
}
.latest_blog .heading_box h2{
    text-transform: uppercase;
}
.latest_blog .heading_box p{
    font-family: 'Poppins-Regular', sans-serif;
    font-size: 18px;
    color: rgba(0, 0, 0, 75%);
    line-height: 1.7;
}

.latest_blog_slider_box{
    max-width: 1440px;
    margin-left: auto;
    margin-top: 70px;
}
.latest_blog_slider .proje_owl_img img{
    border-radius: 20px;
}
.latest_blog_slider .csr_detail{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.latest_blog_slider .csr_detail h5{
    font-size: 18px;
    font-family: 'Poppins-Regular', sans-serif;
    line-height: 1.8;
}
.latest_blog_slider .csr_detail p{
    font-size: 15px;
    color: rgba(0, 0, 0, 75%);
}
.latest_blog_slider.owl-carousel .owl-nav.disabled{
    display: block;
}
.latest_blog_slider.owl-theme .owl-nav [class*=owl-]{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #ccc;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.latest_blog_slider.owl-theme .owl-nav [class*=owl-]:hover{
    background: #f6f4f2 !important;
    color: #5b1a54 !important;
}
.latest_blog_slider.owl-theme .owl-nav [class*=owl-] i{
    font-size: 20px;
    color: #1c1b1f;
}
.latest_blog_slider.owl-theme .owl-nav [class*=owl-]:hover i{
    color: #5b1a54 !important;
}
.latest_blog_slider.owl-theme .owl-nav {
    position: absolute;
    right: 138px;
    top: -192px;
}

/* contact section css */

.contact-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 1%);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.contact-section::after{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/happy-parents-bg-left.webp);
    position: absolute;
    left: -120px;
    bottom: 0;
    z-index: 1;
    background-repeat: no-repeat;
    z-index: -1;
}
.contact-section::before{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/contact-bg-right.webp);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -1;
}
/* Headings */
.section-title {
    font-size: 64px;
    font-weight: 600;
    color: #5b2466;
    font-family: 'DMSans-Regular', sans-serif;
    font-weight: 200;
}

.subtitle {
  font-size: 16px;
    font-family: 'DMSans-Regular', sans-serif;
  color: #000;
  font-weight: 200;
}

/* Form section */
.form-subtitle {
  font-size: 16px;
  color: #5f1a59;
  font-family: 'DMSans-Regular', sans-serif;
}

.form-title {
    font-size: 24px;
  font-weight: 500;
  color: #000;
  font-family: 'DMSans-Regular', sans-serif;
  margin: 20px 0 35px
}

/* Input Styling */

.form-label{
    color: #000;
    font-family: 'DMSans-Regular', sans-serif;
    font-size: 16px;
}
.custom-input {
  background: #7c7c7c0f;
  border: none;
  height: 48px;
  border-radius: 10px;
}
.custom-textarear{
    height: 130px;
}
.custom-input:focus {
  border: 1px solid #b372cb;
  box-shadow: 0 0 0 0.1rem rgba(179, 114, 203, 0.3);
}

/* Button */
.send-btn {
  background: #5f1a59;
  color: #fff;
  border-radius: 10px;
  font-weight: 500;
  padding: 12px 30px;
  outline: none;
  border: none;
}
.send-btn:hover{
    background: #b56cad;
    color: #fff;
}
/* Accordion Styles */
.custom-acc .accordion-button {
  background: transparent;
  /* border-bottom: 1px solid #e6d8ef; */
  font-size: 20px;
  padding: 25px 0;
  color: #5f1a59;
  font-family: 'DMSans-Regular', sans-serif;
  font-weight: 300;
}

.custom-acc .accordion-collapse.collapse.show{
    /* border-bottom: 1px solid #e6d8ef; */
}

.custom-acc .accordion-button:not(.collapsed) {
  color: #6b297b;
  background: transparent;
  box-shadow: none;
}

.custom-acc .accordion-body {
  color: #000;
  font-size: 16px;
  background: transparent;
  padding: 0 0 25px;
}

.custom-acc .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e6d8ef;
}
.accordion-button:focus{
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after{
    filter: brightness(50) invert(1);
}

/* footer section css */
.custom-footer {
  background: #5d1b59;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 50px 0 18px;
}

/* Logo */
.footer-logo {
  width: 90px;
}

.footer-name {
  font-size: 22px;
  letter-spacing: 2px;
}

.footer-tagline {
  font-size: 14px;
  opacity: .8;
}

/* Titles */
.footer-heading {
  font-size: 15px;
  letter-spacing: 1px;
  opacity: .9;
    font-family: 'Poppins-Regular', sans-serif;
}
.footer-menu li {
    display: inline-block;
}

/* Links */
.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: .8;
  transition: .3s;
  font-size: 14px;

}

.footer-links a:hover {
  opacity: 1;
}

/* Nav Menu */
.footer-menu a {
  font-size: 18px;
  text-decoration: none;
  margin-right: 30px;
  color: white;
  transition: .3s;
  text-transform: uppercase;
}

.footer-menu a:hover {
  opacity: .7;
}
.foot_spacing{
    justify-content: space-between;
}

/* Social Icons */
.footer-social a {
  margin-right:10px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 6%);
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: .3s;
}

.footer-social a:hover {
  background: #fff;
  color: #5d1b59;
}

/* Newsletter Box */
.newsletter-box {
  background: #682763;
  padding: 16px;
  border-radius: 12px;
  gap: 10px;
}

.newsletter-text {
  flex: 1;
  font-size: 20px;
  white-space: nowrap;
}

.email-input {
  flex: 1.5;
  background: rgba(255,255,255,0.35);
  border: none;
  border-radius: 8px;
  padding: 11px;
}

.email-input::placeholder{
    color: #fff !important;
}

.email-input::placeholder {
  color: #f9d5ff;
  font-style: italic;
}

.subscribe-btn {
  background: #fff;
  border-radius: 10px;
  padding: 10px 25px;
  font-weight: 500;
  position: relative;
  z-index: 3;
  outline: none;
  border: none
}
.subscribe-btn span{
    color: #5d1b59;
    transition: 0.8s ease-in-out;
}
.subscribe-btn:hover span{
    color: #fff;
    
} 
/* Footer Line */
.footer-line {
  border-color: rgba(255,255,255,0.2);
}

.copyright {
  opacity: .8;
  font-size: 14px;
}


/* Contact Page */

.tj-page-header{
    padding-top: 150px;
    padding-bottom: 80px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #5f1a59;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.contact-header {
    background-image: url(../images/pheader-bg.jpg);
}
.tj-page-header::before {
    position: absolute;
    content: "";
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgb(212 177 216 / 76%);
}
.tj-page-title {
    color: #5f1a59;
    font-size: 48px;
    margin-bottom: 0;
}
.tj-page-link {
    margin-top: 25px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    border-radius: 50px;
    background: rgba(247, 247, 247, 0.6);
    padding: 8px 15px;
    z-index: 2;
}
.tj-page-link span {
    color: #5f1a59;
    font-size: 16px;
    position: relative;
    display: inline-block;
    line-height: 1;
}
.tj-contact-area {
    background: #fff;
}
.section-space {
    padding: 80px 0;
}
.sec-heading {
    display: block;
    margin-bottom: 50px;
}
.sec-heading h2.sec-title {
    font-family: 'Acumin', sans-serif;
    font-size: 60px;
    color: #5f1a59;
    line-height: 1;
}
.sec-heading .sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: var(--tj-fw-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tj-color-theme-primary);
    -webkit-padding-start: 16px;
    padding-inline-start: 16px;
    -webkit-padding-end: 16px;
    padding-inline-end: 16px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.contact-item.style-2 {
    padding: 40px;
    border: 1px solid #f0e6f1;
    text-align: center;
    background: #fff;
    border-radius: 10px;
}
.contact-item.style-2 .contact-icon {
    width: 88px;
    height: 88px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    color: #5f1a59;
    border: 1px solid #f0e6f1;
}
.contact-item.style-2:hover .contact-icon {
    background: #5f1a59;
}
.contact-item.style-2:hover .contact-icon i {
    color: #fff;
}
.contact-item.style-2 .contact-icon i {
    font-size: 32px;
    color: var(--tj-color-theme-primary);
}
.contact-item.style-2 .contact-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #b56cad;
}
.contact-item.style-2 .contact-list {
    list-style: none;
}
.contact-item.style-2 .contact-list li a {
    color: var(--tj-color-text-body);
}
.contact-form {
    background-color: #fff;
    margin-inline-start: 0px;
    margin-inline-end: 15px;
    padding: 60px 35px;
    border-radius: 12px;
}
.contact-form .title {
    margin-bottom: 30px;
    font-size: 36px;
    color: #5f1a59;
}
.contact-form .form-input textarea.custom-input {
    min-height: 130px;
    resize: none;
}
.map-area {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 15px;
}
.map-area iframe, .map-area #map {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    overflow: hidden;
}


/* Blog Listing Page */


.blog-header {
    background-image: url(../images/pheader-bg.jpg);
}
.grid-item{
    float: left;
}

.border-radius-10 {
    border-radius: 10px;
}
.post-card-1 {
    border: 1px solid var(--secondary-border-color);
    z-index: 12;
    transition: all .25s cubic-bezier(.02, .01, .47, 1);
    position: relative;
    background: #fff;
}
.post-card-1::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 0;
    left: 10px;
    border-radius: 10px;
    box-shadow: var(--box-shadow-normal), 0 0 0 transparent;
    transition: all .25s cubic-bezier(.02, .01, .47, 1);
    z-index: -1;
}
.img-hover-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 280px;
    overflow: hidden;
}
.post-card-1 .thumb-overlay {
    height: 220px;
    border-radius: 10px 10px 0 0;
}
.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover), 0 0 0 transparent;
}
.thumb-overlay::before {
    /*position: absolute;*/
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(0, 0, 0, .8)));
    background: -webkit-linear-gradient(top, transparent 50%, rgba(0, 0, 0, .8) 100%);
    background: -o-linear-gradient(top,transparent 50%,rgba(0,0,0,.8) 100%);
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, .8) 100%);
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
}
.img-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.thumb-overlay img {
    height: 100%;
    object-fit: cover;
}
.top-left-icon, .top-right-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    z-index: 3;
    color: #fff;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition-duration: 0.4s;
    -ms-transition: all 0.4s ease;
}
.top-right-icon {
    left: unset;
    right: 30px;
}
.post-card-1 .top-right-icon {
    top: 20px;
    right: 20px;
}
.social-share {
    height: 0;
    transition-duration: 0.2s;
}
.post-thumb .social-share {
    position: absolute;
    float: left;
    overflow: hidden;
    padding-left: 0;
    bottom: 10px;
    right: 10px;
    margin: 0;
    z-index: 200;
}
.post-thumb:hover .social-share {
    height: 30px;
    transition-duration: 0.2s;
}
.post-thumb .social-share li {
    width: 100%;
    text-align: center;
    max-width: 0px;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    float: left;
    margin-left: 5px;
}
.post-thumb .social-share li:first-child {
    max-width: 24px;
    opacity: 1;
    pointer-events: none;
}
.post-thumb .social-share li a {
    display: block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
}
.post-thumb .social-share li a {
    background: #b56cad;
}
.post-thumb .social-share:hover li:nth-child(1) {
    opacity: 0;
    max-width: 0;
}
.post-thumb .social-share:hover li {
    opacity: 1;
    max-width: 28px;
}
.post-card-1 .post-content {
    background: #fff;
    border-radius: 0 0 10px 10px;
}
.post-thumb .social-share li a.fb, .header-social-network .list-inline-item a.fb {
    background: #3b5999;
}
.post-thumb .social-share li a.tw, .header-social-network .list-inline-item a.tw {
    background: #55acee;
}
.post-thumb .social-share li a.pt, .header-social-network .list-inline-item a.pt {
    background: #bd081c;
}
.p-30 {
    padding: 30px !important;
}
.entry-meta {
    line-height: 1;
    color: #666;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-25 {
    margin-bottom: 25px !important;
}
.mb-30{
    margin-bottom: 30px !important;
}
.mb-50 {
    margin-bottom: 50px !important;
}
.font-x-small {
    font-size: 10px;
}
.font-small {
    font-size: 12px;
}
.entry-meta.meta-0 span.post-cat {
    padding-right: 7px;
    margin-right: 10px;
    font-weight: bold;
    color: #000;
}
.post-card-1 .post-content h5.post-title a {
    color: #b56cad;
}
.post-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 115px;
}
.entry-meta.meta-1 span {
    margin-right: 10px;
}
.entry-meta span {
    position: relative;
}
span.has-dot {
    position: relative;
    padding-left: 10px;
}
span.has-dot::before {
    content: "";
    width: 3px;
    height: 3px;
    background: #999;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    display: block;
    left: -3px;
    border-radius: 50%;
}
.post-card-content .post-title a:hover{
    color: #5f1a59;
}
.post-thumb .social-share li a:hover{
    background: #5f1a59;
}
.pagination-area .pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}
.pagination-area .page-item {
    margin: 0;
}
.pagination-area .page-item:first-child {
    margin: 0;
}
.pagination-area .page-link, #scrollUp {
    border: 0;
    font-size: 13px;
    box-shadow: none;
    outline: 0;
    color: #889097;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    padding: 0;
    margin-right: 10px;
    box-shadow: 0 2px 4px hsla(0,0%,42.4%,0.2), 0 0 0 transparent;
    transition: all .25s cubic-bezier(.02, .01, .47, 1);
}
.page-item:last-child .page-link, .page-item:first-child .page-link {
    border-radius: 50% !important;
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #5f1a59;
    border-color: #5f1a59;
}
.pagination-area .page-item.active .page-link {
    color: #fff !important;
}
.pagination-area .page-link:hover{
    background-color: #5f1a59;
    color: #fff;
}


.tj-page-blogdetails {
    padding-top: 50px;
    padding-bottom: 80px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ebebeb;
    position: relative;
    overflow: hidden;
    z-index: 2;
}



.blog_details .entry-header-style-1 .entry-title {
    font-size: 3em;
    color: #5f1a59;
}
.entry-meta .author-avatar {
    float: left;
    margin: -3px 15px 0 0;
}
.entry-meta .author-avatar img {
    height: 40px;
    width: 40px;
    border: 2px solid #fff;
    background-color: #ddd;
    object-fit: cover;
}
.img-circle {
    border-radius: 50%;
}
.entry-meta.meta-2 .author-name {
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    margin-top: 7px;
}
.mr-10 {
    margin-right: 10px !important;
}
.header-social-network {
    line-height: 1;
}
.list-inline-item:not(:last-child) {
    margin-right: .5rem;
}
.header-social-network .list-inline-item a {
    background: #999;
    width: 24px;
    display: block;
    height: 24px;
    border-radius: 30px;
    line-height: 24px;
    text-align: center;
    font-size: 11px;
    color: #fff !important;
}
.blogdetails_featureimg img {
 
    max-width: 100%;
}
.entry-main-content h2, .entry-main-content h3, .entry-main-content h4, .entry-main-content h5{
    color: #b079ab;
    margin-bottom: 15px;
}



/* Services Listing Page */

.services-header {
    background-image: url(../images/services_head_banner.jpg);
    background-color: inherit;
    padding-top: 300px;
    padding-bottom:100px ;
}
.services-header::before {
    background-color: rgb(255, 255, 255, 0.4);
}
.services-header h1.tj-page-title {
    position: absolute;
    bottom: -10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
}
.service_mainpart {
    padding: 80px 0;
    background: #f7f5f2;
    background-image: url(../images/service_bg.png);
    background-repeat: repeat-y;
}
.serv_items{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-bottom: 20px solid #5f1a59;
    box-shadow: 0px 2px 5px #999;
    margin-bottom: 35px;
    min-height: 650px;
}
.serv_items .servi_ite_img {
    height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 10px;
    
}
.serv_items .servi_ite_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.serv_items h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #5f1a59;
    font-weight: 400;
    text-transform: uppercase;
    min-height: 45px;
}
.serv_items p {
    color: #6b6b6b;
    font-size: 14px;
    line-height: 24px;
}

.about-header {
    background-image: url(../images/about_banner.jpg);
    background-color: inherit;
    padding-top: 300px;
    padding-bottom: 100px;
}
.about-header.tj-page-header::before{
    background: none;
}
.about-header h1.tj-page-title {
    position: absolute;
    bottom: -10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
}
.quote-wrapper {
    margin: 40px auto 0px;
    position: relative;
}

.quote-box {
    background-color: #e6d3df; /* light lavender background */
    border-radius: 10px;
    padding: 40px 50px;
    color: #6b2a6b;
    position: relative;
}

.quote-icon {
    font-size: 200px;
    color: #7a2c6b;
    position: absolute;
    top: -37px;
    left: 10px;
    line-height: 1;
    z-index: 1;
    font-family: sans-serif;
}

.quote-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}

.quote-text {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    color: #8a3f86;
}
.clinic-title {
    font-size: 18px;
    font-weight: 700;
    color: #6b2a6b;
    margin-bottom: 10px;
}
.footer_fom {
    width: 66%;
    display: flex;
}
.footer_fom p {
    display: flex;
}
.footer_fom input.btn.subscribe-btn {
    margin-left: 10px;
}
/* why rath page css */
.why-hero {
    padding: 100px 0px;
    color: #fff;
}

.why-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: auto;
    text-align: center
}
.why-rath p{
    max-width: 85%;
    color: #000;
    font-size: 16px;
    margin: 15px auto;
}


/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 30px;
}
.card-grid .card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    text-align: left
}
.card-grid .card:hover {
    transform: translateY(-8px);
}
.card-grid .card h3 {
    margin-bottom: 15px;
    color: #5f1a59;
}

.quote-text p{
    font-style:normal
}
.whatsappicon {
    position: fixed;
    z-index: 9;
    bottom: 85px;
    right: 5px;
}
.whatsappicon img {
    max-width: 50px;
}
.text-justify{
    text-align: justify;
}
.blog_description p, .blog_description ul{
    margin-bottom: 1rem;
}
.blog_description ul li {
    padding-left: 15px;
    position: relative;
}
.blog_description ul li:before {
    content: "";
    background: #999;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 100px;
    left: 0;
    top: 10px;
}
section.error-404 {
    text-align: center;
    padding: 200px 0;
    background: #f1f1f1;
}
section.error-404 h2.not-found-text {
    font-size: 160px;
    font-family: 'Raleway';
}
a.goback.button-bin.btn {
    background: #5f1a59;
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
    padding: 12px 30px;
    outline: none;
    border: none;
}
.slide-full-bg {
    position: relative;
    
    background-size: cover;
    min-height: 675px;
    display: flex;
    align-items: center;
    color: #fff;
}
/* Dark overlay for readability */
.slide-full-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-full-bg .container {
    position: relative;
    z-index: 2;
}