
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
img{
    width: 100%;
    height: 100%;
}
ul{
    margin: 0;
    padding: 0;
}

/* navbar */
nav{
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    background: #242526;
    background: linear-gradient(to right, #FFDA76 0%, #FFBB00 100%);
    border-radius: 0 0 15px 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
nav .wrapper{
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wrapper .logo{
    width: 175px;
}
.wrapper .logo a{
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}
.wrapper .nav-links{
    display: inline-flex;
    gap: 16px;
}
.nav-links li{
    list-style: none;
}
.nav-links li a{
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.nav-links li a:hover{
    background: #fff;
}
.nav-links .mobile-item{
    display: none;
}
.nav-links .drop-menu{
    position: absolute;
    background: #242526;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}
.drop-menu li a{
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}
.mega-box{
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}
.mega-box .content{
    background: #242526;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
    width: calc(25% - 30px);
    line-height: 45px;
}
.content .row img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content .row header{
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}
.content .row .mega-links{
    margin-left: -40px;
    border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
    padding: 0 20px;
}
.row .mega-links li a{
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}
.row .mega-links li a:hover{
    color: #f2f2f2;
}
.wrapper .btn{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}
.wrapper .btn.close-btn{
    position: absolute;
    right: 30px;
    top: 10px;
}
.wrapper .right-menu{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.wrapper .right-menu img{
    width: 50px;
}
.wrapper .right-menu .dropdown-menu .dropdown-item{
    line-height: 28px;
    font-size: 13px;
    cursor: pointer;
}
.wrapper .right-menu .dropdown-menu .dropdown-item img{
    width: 18px;
    margin-right: 3px;
}
.wrapper .right-menu .dropdown-menu .dropdown-item:hover{
    background-color: #ffd25a;
}
@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    /*background: #242526;*/
    background: linear-gradient(to right, #FFDA76 0%, #FFBB00 100%);
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 0px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
    line-height: 25px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}
/* end navbar */

/*  */
.banner-section{
    margin-top: -70px;
}
/*  */

/* btn-section */
.btn-section{
    padding: 50px 0 30px;
}
.btn-section1{
    display: flex;
    justify-content: center;
    gap: 35px;
}
.btn-section1 .btn-section1-1{
    padding: 22px 55px;
    background: #E9F3FF;
    border: 4px solid #fff;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.btn-section1 a{
    color: #000;
    text-decoration: none;
    font-size: 20px;
}
.btn-section1 a img{
    width: 26px;
    height: 26px;
    margin-right: 12px;
}
/* end btn-section */

/* login-register-sec */
.login-register-sec{
    padding: 25px 0;
}
.login-register-sec-img{
    position: relative;
    border-radius: 35px;
    border: 4px solid #fff;
    margin: 0 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
/* .login-register-sec-img img{
    width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index:99
} */
.login-register-sec-img .login-register-sec-txt{
    background-color: rgb(0 0 0 / 50%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    transition-duration: 0.3s;
}
.login-register-sec-img:hover .login-register-sec-txt{
    background-color:unset;
}
.login-register-sec-img .login-register-sec-txt h5{
    color: #fff;
    margin: 0;
    font-weight: 600;
    font-size: 24px;
}
.login-register-sec1{
    display:none;
}
/* end login-register-sec */

/* card-section */
.card-section{
    padding: 25px 0;
    position: relative;
}
.card-section::after{
    content: '';
    background: #D3E7FF;
    position: absolute;
    top: 22%;
    height: 275px;
    width: 100%;
    z-index: -1;
}
.card-section .col-lg-4:nth-child(4) .img-card,
.card-section .col-lg-4:nth-child(5) .img-card,
.card-section .col-lg-4:nth-child(6) .img-card{
    margin-bottom: 0;
}
.card-section .img-card{
    background: #E9F3FF;
    text-align: center;
    padding: 35px 0;
    border: 4px solid #fff;
    border-radius: 30px;
    margin: 0 35px 40px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 20px -3px;
}
.card-section .img-card:hover{
    background: #FFF;
    border: 4px solid #E9F3FF;
}
.card-section .img-card img{
    width: 80px;
    margin-bottom: 18px;
}
.card-section .img-card h5{
    margin: 0;
    font-size: 16px;
}
.card-section h3{
    display:none;
}
/* end card-section */

/* slider-section */
.slider-section{
    overflow: hidden;
    padding: 25px 0;
}
.slider-section .wrapper{
  width:100%;
  padding-top: 0px;
  text-align:center;
}
.slider-section .carousel{
  width:100%;
  margin:0px auto;
}
.slider-section .slick-slide{
  margin:10px 10px 0;
}
.slider-section .slick-slide img{
    width:100%;
    border: 2px solid #e9f3ff;
    border-radius: 25px;
}
.slider-section .wrapper .slick-dots li button:before {
  font-size:20px;
  color:white;
}
.slider-section .slick-list{
    padding: 0!important;
}
.slider-section .slider-section-carousel{
    width: 540px;
    height: 316px;
    position: relative;
}
.slider-section .slider-section-carousel span{
   background-color: rgb(0 0 0 / 40%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    transition-duration: 0.3s;
}
.slider-section .slider-section-carousel span img{
    border: 0;
    width: 60px;
    filter: brightness(200%) contrast(1000%) invert(100%);
}
.slider-section-carousel .video-sec img{
    object-fit: contain;
}
/* end slider-section */

/* brides-section */
.brides-section{
    padding: 25px 0;
}
.brides-section h3{
    border-left: 5px solid #FFBB00;
    padding-left: 12px;
    font-size: 24px;
}
.brides-section .wrapper{
  padding: 20px 0 0;
  /*overflow-x: hidden;*/
}
.brides-section .my-slider{
  padding: 0 0px;
  margin: 0;
}
.brides-section .slick-initialized .slick-slide{
  margin: 0 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brides-section .slick-next, 
.brides-section .slick-prev{
  z-index: 5;
}
.brides-section .slick-next{
  right: 15px;
}
.brides-section .slick-prev{
  left: 15px;
}
.brides-section .slick-next:before, 
.brides-section .slick-prev:before{
  color: #000;
  font-size: 26px;
}
.brides-section-card h5{
    color: #000;
    font-size: 17px;
    margin-bottom: 0px;
    margin-top: 0;
    text-transform: capitalize;
}
.brides-section-card p{
    color: #8C8B8B;
    margin: 0;
    font-size: 14px;
}
.brides-section-card .brides-section-card-img{
    margin-bottom: 10px;
    height: 260px;
    width: 205px;
}
.brides-section-card .brides-section-card-img img{
    border-radius: 20px;
    object-fit: cover;
    
}
/* end brides-section */

/* our-office */
.our-office{
    padding: 25px 0;
}
.our-office h3{
    font-weight: 600;
    border-left: 5px solid #FFBB00;
    padding-left: 12px;
    margin-bottom: 12px;
    font-size: 24px;
}
.our-office p{
    margin-bottom: 20px;
    font-size: 16px;
}
.our-office .our-office-img img{
    border-radius: 20px;
}
/* end our-office */

/* suchna-section */
.suchna-section,
.term-condition{
    padding: 25px 0;
}
.suchna-section h3,
.term-condition h3{
    font-weight: 600;
    border-left: 5px solid #FFBB00;
    padding-left: 12px;
    margin-bottom: 18px;
    font-size: 24px;
}
.suchna-section .suchna-section-txt ul,
.term-condition .term-condition-txt ul{
    padding-left: 16px;
}
.suchna-section .suchna-section-txt ul li:not(:last-child),
.term-condition .term-condition-txt ul li:not(:last-child){
    margin-bottom: 15px;
}
.suchna-section .suchna-section-txt > div:not(:last-of-type) {
  margin-bottom: 6px;
}

/* end suchna-section */

/* footer */
.footer1{
    /*position: relative;*/
}
.footer{
    background: linear-gradient(to right, #FFBB00 0%, #FFBB00 100%);
    padding: 15px 0;
}
.footer .footer-txt{
        display: flex;
    justify-content: space-between;
}
.footer .footer-txt ul{
    display: flex;
    list-style: none;
    align-items: center;
}
.footer .footer-txt ul li{
    line-height: 10px;
}
.footer .footer-txt ul li a{
    color: #000000De;
    text-decoration: none;
}
.footer .footer-txt ul li:not(:last-child){
    border-right:2px solid #000;
        padding-right: 10px;
    margin-right: 10px;
}
.footer .footer-txt p{
    margin: 0;
    text-align: center;
}
/* end footer */

/* common-banner */
.common-banner {
    background: linear-gradient(to right, #FFBB00 0%, #FFDA76 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
/* .common-banner-left1 {
    display: flex;
    align-items: center;
    height: 100%;
} */
.common-banner-left h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 61px;
    font-weight: 800;
    line-height: 52px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}
.common-banner-left h3 span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    font-weight: 800;
    /* font-size: 61px; */
    font-family: 'Poppins', sans-serif;
}
/* end common-banner */

/* privacy-section */
.privacy-section{
    padding: 30px 0;
}
.privacy-section .privacy-section-txt h5{
    font-weight: 600;
    font-size: 18px;
}
/* end privacy-section */

/* contact-form */
.contact-form {
    position: relative;
    padding: 60px 0 60px;
}
.contact-form-card {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    position: relative;
    z-index: 0;
}
.contact-form-left h3, .contact-form-left h1 {
    font-family: 'Poppins', sans-serif;
    color: #860b4a;
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 28px;
}
.contact-form-left p {
    font-family: 'Poppins', sans-serif;
    color: #7B7B7B;
    font-size: 18px;
}
.contact-form-left .form-label {
    font-family: 'Poppins', sans-serif;
    color: #323232;
}
.contact-form-left .btn {
    background: #860b4a;
    color: #fff;
    text-align: unset;
    padding: 8px 25px;
}
.contact-form-left .btn img {
    width: 25px;
    margin-left: 5px;
}
.contact-form-right-img {
    margin: 0 30px 10px;
}
.contact-form-right1 {
    padding-left: 20px;
    padding-top: 15px;
}
.contact-form-right1-1 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact-form-right1 img {
    width: 35px;
    margin-right: 10px;
}
.contact-form-right1 a {
    color: #4A4A4A;
    display: block;
    margin-bottom: 3px;
    text-decoration: none;
}
.contact-form-right2 h5 {
    color: #860b4a;
    font-weight: 600;
}
.contact-form-right2 ul {
    display: flex;
    gap: 15px;
    padding-top: 5px;
    padding-left: 0;
    list-style: none;
}
.contact-form-right2 ul li img {
    width: 35px;
}
/* end contact-form */

/* btn-whatsapp-pulse */
.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 40px;
	right: 20px;
	font-size: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 30px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}
/* end btn-whatsapp-pulse */

/*  */
.multi-step-form-card{
    margin-top: 30px;
}
.multi-step-form-card h3{
    font-family: "Rancho", cursive;
}

/* my-dashboard */
.my-dashboard{
    padding: 30px 0;
}
.my-dashboard .my-dashboard-header h3{
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 500;
    border-left: 5px solid #FFBB00;
    padding-left: 12px;
}
.my-dashboard .my-dashboard-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.my-dashboard .my-dashboard-header .input-group{
    width: 350px;
    border-radius: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.my-dashboard .my-dashboard-header .form-control{
    height: 48px;
    font-size: 14px;
    border: 0;
}
.my-dashboard-right{
    display: flex;
    gap: 12px;
    border: 1px solid #D0D0D0;
    padding: 10px;
    border-radius: 15px;
    background: #fff;
    
}
.my-dashboard-right:not(:last-child){
    margin-bottom: 20px;
}
.my-dashboard .col-lg-6:not(:last-child) .my-dashboard-right{
    margin-bottom: 20px;
}
.my-dashboard-right .my-dashboard-right-img{
    height: 230px;
    width: 240px;
}
.my-dashboard-right .my-dashboard-right-img img{
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid #d0d0d075;
}
.my-dashboard-right-txt{
    width: 100%;
}
.my-dashboard-right-txt .head{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #B3B3B3;
    padding-bottom: 5px;
}
.my-dashboard-right-txt .head h5{
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 600;
}
.my-dashboard-right-txt .head p{
    color: #9D9D9D;
    margin: 0;
    font-weight: 600;
    font-size: 12px;
}
.my-dashboard-right-txt ul{
    padding-top: 10px;
    padding-left: 5px;
    list-style: none;
    gap: 6px;
    display: grid;
}
.my-dashboard-right-txt ul li{
    font-size: 13px;
}
.my-dashboard-right-txt .btn{
    border:1px solid#00A941;
    color: #00A941;
    background: #E5F6EC;
    font-size: 12px;
    margin-top: 10px;
    border-radius: 10px;
    padding: 8px 18px;
}
.my-dashboard-right-txt .wishlist_heart {
    --fuschia: #F9595F;
    --size: 35px;
    width: var(--size);
    height: var(--size);
    cursor: pointer;
    color: transparent;
    animation: beat_off 300ms forwards;
    border: 1px solid #F9595F;
    border-radius: 50px;
    padding: 5px;
}
.my-dashboard-right-txt .wishlist_heart svg {
  height: 100%;
  width: 100%;
  stroke: var(--fuschia);
}
.my-dashboard-right-txt .wishlist_heart._active {
  color: var(--fuschia);
  animation: beat_on 400ms forwards;
}

@keyframes beat_on {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.5);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes beat_off {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.sidebar-navigation {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 8px 0;
  /* overflow-y: auto; */
}
.sidebar-navigation ul {
  margin: 0;
  padding: 0;
}
.sidebar-navigation ul li {
  display: block;
}
.sidebar-navigation ul li a {
  position: relative;
  display: block;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #2e2e2e;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sidebar-navigation ul li a em {
  font-size: 22px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  border-radius: 50%;
}
/* .sidebar-navigation ul li:hover > a, .sidebar-navigation ul li.selected > a {
  background-color: rgba(0, 0, 0, 0.06);
} */
.sidebar-navigation ul li ul {
  display: none;
}
.sidebar-navigation ul li ul li {
  font-weight: 400;
}
.sidebar-navigation ul li ul.open {
  display: block;
}
.sidebar-navigation ul li ul li a {
  color: #495d62;
  border-color: rgba(255, 255, 255, 0.1);
  font-weight: 400;
}
.sidebar-navigation ul li ul li:hover > a, .sidebar-navigation ul li ul li.selected > a {
  background-color: #e6ebed;
}
.sidebar-navigation ul li ul li:hover > a:before, .sidebar-navigation ul li ul li.selected > a:before {
  margin-right: 10px;
}
.sidebar-navigation ul li ul li.selected.selected--last > a {
  background-color: #94aab0;
  color: #fff;
}
.sidebar-navigation ul li ul li.selected.selected--last > a:before {
  background-color: #fff;
}
.my-dashboard-left [type="radio"]:checked,
.my-dashboard-left [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.my-dashboard-left [type="radio"]:checked + label,
.my-dashboard-left [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.my-dashboard-left [type="radio"]:checked + label:before,
.my-dashboard-left [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.my-dashboard-left [type="radio"]:checked + label:after,
.my-dashboard-left [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #860B4A;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.my-dashboard-left [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.my-dashboard-left [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.my-dashboard-left .sidebar-navigation .form-div{
    padding: 10px;
    background: #f0f0f0;
}
.my-dashboard-left .sidebar-navigation p{
    font-size: 14px;
}
.my-dashboard-left .sidebar-navigation p:not(:last-child){
    margin-bottom: 10px;
}
/* END my-dashboard */

/* success-stories */
.success-stories{
    padding: 30px 0;
}
.success-stories h3{
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    border-left: 5px solid #FFBB00;
    padding-left: 12px;
}
.success-stories .success-stories-card{
    border: 1px solid #D0D0D0;
    padding: 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.success-stories .success-stories-card-img img{
    border-radius: 20px;
}
.success-stories .success-stories-card-txt{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}
.success-stories .success-stories-card-txt h4{
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.success-stories .success-stories-card-txt p{
    margin: 0;
    color: #9D9D9D;
    font-size: 14px;
    font-weight: 500;
}
.success-stories .success-stories-card-txt .btn{
    background: #860B4A;
    color: #fff;
    font-size: 12px;
}
/* end .success-stories */

/* success-stories-detail */
.success-stories-detail{
    padding: 30px 0;
}
.success-stories-detail h3{
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    font-weight: 500;
    border-left: 5px solid #FFBB00;
    padding-left: 12px;
    font-size: 28px;
}
.success-stories-details .success-stories-detail-img{
    
}
.success-stories-detail-img .slick-list{
    padding:0!important;
}
/*.success-stories-detail-img .slick-list .slick-track{*/
/*    width: 100% !important;*/
/*}*/
/*.success-stories-detail-img .slick-initialized .slick-slide{*/
/*     width: 100% !important;*/
/*}*/
.success-stories-detail-img .slick-slider{
    margin-bottom: 0px;
}
.success-stories-details .success-stories-detail-img img{
    border-radius: 20px;
    margin-bottom: 10px;
}
.success-stories-details .success-stories-detail-txt h4{
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
}
.success-stories-details .success-stories-detail-txt h6{
    margin-bottom: 15px;
    font-weight: 600;
    color: #9D9D9D;
}
.success-stories-details .success-stories-detail-txt p{
    margin-bottom: 8px;
}
.success-stories-details .curve { 
  width: 33%; height: auto;
  min-width: 150px;
  float: left;
  margin-right:28px; 
}
.success-stories-details .carousel-item{
    height: 255px;
}
/* end success-stories-detail */

/* profile-list-detail-left */
.profile-list-detail{
    padding: 30px 0;
}
.profile-list-detail-left .slider-nav .slick-slide span{
    height: 100px;
    width: 100px;
    display: block;
}
.profile-list-detail-left .slider-nav .slick-slide span img{
    padding: 5px;
    object-fit: scale-down;
}
.profile-list-detail-left .slider-nav .slick-slider {
    margin-bottom: 15px;
}
.profile-list-detail-left .slick-slider{
    margin-bottom: 15px;
}
.profile-list-detail-left .slider-single .slick-slide{
    height: 350px;
    background: #d0d0d033;
    padding: 20px 10px; 
    border-radius: 15px;
}
.profile-list-detail-left .slider-single .slick-slide img{
    object-fit: scale-down;
}
/* end profile-list-detail-left */

/*  */
.profile-list-detail-right{
    padding: 5px 0 0 10px;
    margin-bottom: 20px;
}
.profile-list-detail-right .head{
    display: flex;
    justify-content: space-between;
}
.profile-list-detail-right .head h5{
    margin-bottom: 5px;
}
.profile-list-detail-right .head p{
    color: #9D9D9D;
    margin: 0;
    font-weight: 600;
}
.profile-list-detail-right .head h6{
    margin-top: 15px;
}
.profile-list-detail-right .head h6 img{
    width: 35px;
    height: 35px;
    margin-right: 5px;
}
.profile-list-detail-right .head .btn{
    background: #860b4a;
    color: #fff;
    font-size: 13px;
    padding: 6px 25px;
    box-shadow: rgb(0 0 0 / 50%) 0px 1px 10px;
}
.profile-list-detail-right .head .btn:hover{
    box-shadow:unset;
}
.profile-list-detail-right .wishlist_heart {
    --fuschia: #EF2B7C;
    --size: 40px;
    width: var(--size);
    height: var(--size);
    cursor: pointer;
    color: transparent;
    animation: beat_off 300ms forwards;
    border: 1px solid #F9595F;
    border-radius: 50px;
    padding: 5px;
}
.profile-list-detail-right .wishlist_heart svg {
  height: 100%;
  width: 100%;
  stroke: var(--fuschia);
}
.profile-list-detail-right .wishlist_heart._active {
  color: var(--fuschia);
  animation: beat_on 400ms forwards;
}

@keyframes beat_on {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.5);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes beat_off {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.profile-list-detail-right .info{
    border: 1px solid #D0D0D0;
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
}
.profile-list-detail-right .info h5{
    color: #B81515;
    margin-bottom: 12px;
}
.profile-list-detail-right .info ul{
    display: grid;
    grid-template-columns: auto auto;
    gap:10px;
    padding-left: 25px;
}
.profile-list-detail-right .info ul li{
    font-size: 15px;
}
/*  */

/**/
.profile-list-detail1 .contain {
  background-color: white;
  color: black;
  border-radius: 18px;
  /*box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);*/
  margin: 0px 0 20px;
  border: 1px solid #D0D0D0;
}
.profile-list-detail1 .question {
  font-size: 16px;
  font-weight: 600;
  padding: 15px 80px 15px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color:#B81515;
}
.profile-list-detail1 .question::after {
  content: "\f107";
  font-size: 24px;
  position: absolute;
  right: 20px;
  transition: 0.2s;
  font-family: "Font Awesome 5 Free";
}
/*.profile-list-detail1 .question.active::after {*/
/*  transform: rotate(45deg);*/
/*}*/
.profile-list-detail1 .answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.profile-list-detail1 .answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}
.profile-list-detail1 .answer .info ul{
    padding-left: 28px;
    display: grid;
    gap: 10px;
}
/**/

/**/
.form-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    /*max-width: 700px;*/
    width: 100%;
    transition: all 0.5s ease-in-out;
        margin: 40px 0px;
}
.form-container h3{
    font-family: "Rancho", cursive;
    text-align: center;
    font-size: 32px;
    color: #a60859;
}
.progress-bar-container {
    height: 8px;
    background-color: #E6E6FA;
    border-radius: 4px;
    margin-bottom: 2rem;
    position: relative;
}
.progress-bar-fill {
    height: 100%;
    background-color: #957DAD;
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-indicator {
    position: absolute;
    width: 1rem;
    height: 1rem;
    background-color: #957DAD;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.5s ease-in-out, transform 0.3s ease-in-out;
    border: 2px solid #fff;
}
.step-indicator.active {
    background-color: #D291BC;
    transform: translate(-50%, -50%) scale(1.2);
}
.step-indicator:first-child { left: 0%; }
.step-indicator:nth-child(2) { left: 33.3%; }
.step-indicator:nth-child(3) { left: 66.6%; }
.step-indicator:last-child { left: 100%; }
.step-content {
    opacity: 0;
    transform: translateX(10%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.step-content.active {
    opacity: 1;
    transform: translateX(0);
}
.form-group input, .form-group textarea {
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #D291BC;
    box-shadow: 0 0 0 4px rgba(210, 145, 188, 0.2);
}
.btn-custom-next, .btn-custom-prev, .btn-custom-submit {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn-custom-next, .btn-custom-submit {
    background-color: #D291BC;
    color: white;
    border: none;
}
.btn-custom-prev {
    background-color: #F8F4FF;
    color: #957DAD;
    border: 1px solid #957DAD;
}
.btn-custom-next:hover, .btn-custom-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #B565A7;
}
.btn-custom-prev:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background-color: #E6E6FA;
}
.form-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .form-layout {
        grid-template-columns: 1fr 1fr;
    }
}
.form-layout .full-width {
    grid-column: span 1;
}
@media (min-width: 768px) {
    .form-layout .full-width {
        grid-column: span 2;
    }
}
.error-message {
    color: #ef4444; /* red-500 */
    font-size: 0.875rem; /* text-sm */
    margin-top: 0.25rem;
    display: none;
}
.error-message.visible {
    display: block;
}
.success-icon {
    height: 6rem; /* h-24 */
    width: 6rem; /* w-24 */
    margin-left: auto;
    margin-right: auto;
    color: #22c55e; /* green-500 */
    animation: bounce 1s infinite;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
.review-card {
    padding: 1.5rem; /* p-6 */
    background-color: #f9fafb; /* gray-50 */
    border-radius: 0.5rem; /* rounded-lg */
}
.hidden {
    display: none !important;
}
/**/

/* my-profile-right */
.my-profile{
    padding:30px 0;
}
.my-profile .my-profile-header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}
.my-profile .my-profile-header h3{
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
}
.my-profile .my-profile-header .btn{
    background: #860b4a;
    color: #fff;
    text-align: unset;
    padding: 4px 30px;
}
.my-profile-left{
    width: 200px;
    height: 200px;
}
.my-profile-left img{
    border-radius: 50%;
    object-fit: cover;
}
.my-profile-txt{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: 1px solid #D0D0D0;
    padding: 30px 0;
    border-radius: 20px;
}
.my-profile-right ul{
    display: grid;
    grid-template-columns: auto auto;
    gap: 12px 30px;
    list-style: none;
}
.my-profile-right ul li{
    font-size: 15px;
}
/* end my-profile-right */

/**/
.no-found-div {
    text-align: center;
    padding: 30px 0 10px;
}
.no-found-div img {
    width: 75px;
    height: fit-content;
}
.no-found-div p {
    margin: 0;
    font-size: 18px;
    color: #767676;
}
/**/

.paginationss nav{
    background:none;
    box-shadow: unset;
}
.paginationss nav .active>.page-link{
    background-color: #ffbb00;
    border-color: #ffbb00;
    color:#fff;
}
.paginationss nav .page-link{
    color: #ffbb00;
}

/**/
#welcomModal .modal-xl {
    --bs-modal-width: 100%;
    margin: 0;
}
.welcome-pg {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('https://aarambhvivah.com/public/assets/frontend/asset/img/bg/bg.png') no-repeat center center / cover;
    z-index: 100;
    transform: scale(1.05);
    height: 100vh;
    border-radius: 0;
}
.welcome-pg .modal-body-txt .modal-body-img{
        width: 350px;
        margin:auto;
}
.welcome-pg .modal-body-txt h3{
    text-align: center;
    font-size: 36px;
    font-family: "Rancho", cursive;
    font-weight: 500;
    margin-bottom: 0;
}
.welcome-pg .modal-body-txt{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}
.welcome-pg .modal-body-txt h4{
    text-align: center;
    font-size: 30px;
    color:#A20101;
    margin-top: 10px;
    background: linear-gradient(to right, #E82E2E 0%, #A20101 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 48px;
    position: relative;
}
.welcome-pg .modal-body-txt .btn{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #E82E2E;
    padding: 8px 35px;
    font-size: 16px;
    margin-top: 6px;
}
.title-around-flex span{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*color: #1779ba;*/
  /*background-color: #eee;*/
}
.title-around-flex span:before, 
.title-around-flex span:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #000;
}
.title-around-flex span:before {
  margin-right: 10px;
}
.title-around-flex span:after {
  margin-left: 10px;
}
/*.title-around-flex span{*/
    
/*}*/
.title-around-flex::before,
.title-around-flex::after{
    content: "";
    height: 7px;
    width: 7px;
    background: #000;
    position: absolute;
    top: 20px;
    border-radius: 50%;
}
.title-around-flex::before{
    left: 26%;
}
.title-around-flex::after{
    right: 26%;
}
/**/

/* multi-step-form */
.multi-step-form{
    padding:30px 0;
}
.multi-step-form h3{
    font-family: "Rancho", cursive;
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 500;
}
.multi-step-form h4{
    font-size: 20px;
    margin-bottom: 18px;
}
.multi-step-form .progress-bar{
    background-color:#d41357;
}
.multi-step-form .btn{
    background: #860b4a;
    color: #fff;
    padding: 6px 25px;
}
.multi-step-form .step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}
.multi-step-form .step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #d41357;
  border: 2px solid #d41357;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer; /* Added cursor pointer */
  color: #fff;
}
.multi-step-form .step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #d41357;
  z-index: -1;
}
#multi-step-form{
  overflow-x: hidden;
}
.multi-step-form .form-groups{
    margin-bottom:15px;
}
.multi-step-form .btn-div{
    text-align: center;
    margin-top: 8px;
}
/* end multi-step-form */

/**/
.profile-update{
    padding:30px 0;
}
.profile-update .profile-update-sec{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.profile-update .profile-update-img img{
    border-radius: 50%;
    box-shadow: #ffedbc8f 0px 3px 8px;
}
.profile-update .profile-update-img{
    width: 175px;
    height: 175px;
    border-radius: 50px;
}
.profile-update .profile-update-file{
    width: 400px;
}
.profile-update .profile-update-file .form-label{
    font-size:16px;
}
/**/