@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Kurale&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {

    /* Font Family */
    --font-primary: 'Nunito';
    /* Main font for the project */
    --font-secondary: 'kurale', sans-serif;
    /* Alternative font */
    --third-font: 'Nunito Sans';

    /* Font Sizes */
    --font-size-small: 12px;

    --fs14: 14px;
    /* Small text */
    --font-size-regular: 16px;
    /* Normal text */
    --font-size-large: 20px;
    /* Larger text */
    --font-size-heading: 24px;
    /* Headings */
    --fs28: 28px;

    --fs29: 29px;


    /* Font Weights */
    --font-weight-light: 300;
    /* Light text */
    --font-weight-regular: 400;
    /* Normal text */
    --font-weight-medium: 500;
    /* Medium boldness */
    --font-weight-bold: 700;
    /* Bold text */

    --gradient-primary: linear-gradient(94deg, #E93E84 14.36%, #F46D8F 42.6%, #FE854E 80.39%);

    --card-img-overlay-bg: linear-gradient(0deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 50%);
}

body {
    font-family: var(--font-primary);
}


/* Predefiend Classes  */

.h-25 {
    height: 25px !important;
}

.h-0{
    height:0px!important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: white !important;
}


.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: #0000002e;
}

.fa-long-arrow-right:before {
    content: "\f178";
    color: white;
}

/* Predefiend Classes  */


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

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

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

.theme-toggle-icon {
    cursor: pointer;
}

.dark-theme {
    background-color: #121212;
    color: #ffffff;
}

.fw-400 {
    font-weight: var(--font-weight-regular)
}

.fw-500 {
    font-weight: var(--font-weight-medium)
}

.fw-700 {
    font-weight: var(--font-weight-bold)
}

.gradient-bg {
    background: var(--gradient-primary) !important;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-text-gradient {
    position: relative;
    display: inline-block;
    background: transparent;
    z-index: 1;
}

.btn-gradient {
    position: relative;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border-radius: 50px;
    z-index: 1;
    border: 3px solid transparent;
    background-image: linear-gradient(#fff, #fff), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-gradient2 {
    position: relative;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border-radius: 50px;
    z-index: 1;
    border: 3px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.icon-gradient {
    background-color: var(--gradient-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.5rem;
}


.bg-pink {
    background-color: #ff50a2;
}

.bg-pink:hover {
    background-color: #d881aa;
    color: black;
}


.nav-link.active {
    background-color: #ff50a2;
    height: 35px;
    color: #fff;
    display:flex;
    justify-content: center!important;
}


.nav-link:hover {
    background-color: #ff50a2;
    height: 35px;
    color: #fff;
    transition: background-color 0.3s ease, height 0.3s ease;
}


.fs12 {
    font-size: var(--font-size-small);
}

.fs14 {
    font-size: var(--fs14);
}

.fs16 {
    font-size: var(--font-size-regular);
}

.fs20 {
    font-size: var(--font-size-large);
}

.fs24 {
    font-size: var(--font-size-heading);
}

.fs28 {
    font-size: var(--fs28);
}

.fs29 {
    font-size: var(--fs29);
}



.bg-color {
    color: var(--bg-gradient);
}

/* slider Css  */


  /*Card Css   */
    
    
    .plan-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.plan-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
}
.plan-title {
  font-weight: 600;
  margin-bottom: 8px;
}
.old-price {
  text-decoration: line-through;
  color: #999;
  margin: 0;
}
.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}
.plan-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}
.plan-features li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}
.plan-features li::before {
  content: "✔";
  color: green;
  position: absolute;
  left: 0;
}
    
    /*Card Css   */
      


.carousel-inner img {
    object-fit: contain;
    width: 100%;
    height: 400px;
    display: block;
    margin: 0 auto;
    background-position: center;
    background-size: contain;
}

/* slider Css  */


/* cards css  */
.profile-card {

    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 50%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.company-watermark-container {

    position: absolute;
    top: 48%;
    text-align: center;
    width: 87%;
    transform: rotate(90deg);
    right: 0px;
    background: rgba(0, 0, 0, .15);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    left: 54%;
}

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

.image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.profile-img {
    width: 100%;
    height: 100%;
    /* padding-left: 46px;
    padding-right: 46px; */
    object-fit: cover;
}

.card-body-overlay {
    position: absolute;
    bottom: 0px;
    left: 10px;
    right: 10px;
    color: white;
    z-index: 1;
    padding: 10px;
}

.verified-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: white;
    color: green;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 2;
}

.card-body {
    text-align: center;
    padding: 15px;
}


.verified-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.verified-badge svg {
    fill: white;
}

.card-text i {
    margin-left: 5px;
    color: #ffffff;
}

.heart-icon {

    position: absolute;
    bottom: 10px;
    right: 10px;
    background: transparent;
    width: 40px;
    line-height: 1;
    height: 40px;
    border: 3px solid white;
    border-radius: 50%;
    padding: 6px;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.heart-icon i {
    font-size: 24px;
    color: #ffffff;
}



/* cards on success page  */

.success-img {
    width: 100%;
    height: 100%;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    margin: auto;
    object-fit: cover;
}

.success-card {
        width: 390px;
    height: 390px !important;
}


.year-btn {
    background-color: #ff50a2;
    border: 1px solid #ff50a2;
}

/* cards css  */


/* Find your Soulmate  */
.find-your-soulmate-card {
    border: 2px dashed #E6E6E6;
    box-shadow: 0 3px 12px #0000001a;
    border-radius: 30px;
}

.find-your-soulmate-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.find-your-soulmate-card-body:hover {
    background-color: #f8f9fa;
}

.find-your-soulmate-card-title {
    font-weight: bold;
}

/* .bi {
    font-size: 1.5rem;
    color: #6c757d;
} */

/* Find your Soulmate  */


/* Footer Css  */

.text-pink {
    color: #ff50a2;
}

footer ul li {
    line-height: 2.0;
}


/* Footer Css  */


/*------------------------ modal css------------------------  */

/* Signup and sing in modal   */


.modal.show .modal-content {
    background: linear-gradient(180deg, #FF864E 0%, #EA3D85 100%) !important;
    color: white;
}


.modal-header .btn-close {
    color: white;
}


/* Contact Us  Popup Overlay */

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: linear-gradient(180deg, #FF864E 0%, #EA3D85 100%) !important;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

form div {
    margin-bottom: 15px;
    text-align: left;
}

input,
textarea,
button {
    padding: 10px;
    width: calc(100% - 20px);
    border-radius: 5px;
    border: 1px solid #ddd;
}

button {
    background-color: #f8b2d8;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #f48fb1;
}

.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
}

 .text-justify {
        text-align: justify;
      }
      
      
      
      
      
/*Header menu btn */

/* button:focus:not(:focus-visible) {
    width: 54px;
} */
     
      .navbar-toggler {
    width: 55px;
      }
      
      
/* Universal Mobile Media Query */
@media (max-width: 768px) { /* Adjust max-width as per your requirement */
    .loginmob {
        margin-top: -20px;
        height: 16px;
        font-size: 12px;
        line-height: 2;
        width: 280px;
    }
    .signmob {
    
        margin-top: -20px;
        height: 16px;
        line-height: 2;
        font-size: 12px;
        margin-left: 200px;
    }
    
    .etext{
        font-size:12px;
    }
}
      
      
      
  
