@import url('https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700&family=Poppins:wght@300;400;500&display=swap');

:root {
    --lg-font: 'Kaisei Tokumin', serif;
    --sm-font: 'Poppins', sans-serif;
    /* --pink: #e5345b; */
     --pink: #fcb69f;
   
}

body {
    font-family: var(--sm-font);
    --pink: #fcb69f;
}

a {
    text-decoration: none;
    color: black;
}


/* button */
.bg-primary {
    background-color: var(--pink) !important;
}

.btn:not(.nav-btns button) {
    background-color: #fff;
    color: rgb(218, 66, 29);
    padding: 10px 28px;
    border-radius: 25px;
    border: 1px solid rgb(85, 85, 85);
}

.btn:not(.nav-btns button):hover {
    background-color: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

.btn i {
 color: white;
}



/* text color */
.text-primary {
    color: var(--pink) !important;
}

/* navbar */
.navbar {
    -webkit-box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.1);
    /* background-color: #ffecd2; */
    background-color: #0a0619;
}


/*   custom style to hide the navbar */


   .navbar.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }
  

.navbar-brand img {
    width: 100px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
}

.navbar-brand span {
    letter-spacing: 2px;
    font-family: var(--lg-font);
}

.blinking-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    animation: blink 1s infinite alternate;
    
  }
  
  @keyframes blink {
    from {
      opacity: 0;
    }
    to {
      opacity: 0.6;
    }
  }


.nav-link:hover {
    font: bold;
    color: var(--pink) !important;
    background-color: rgb(57, 214, 241);
    border-radius: 10px;
}

.nav-item {
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}






/* title */

.intro{
    width: 100%;
}
.title h2::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 50px;
    background-color: #0a0619;
    left: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}



/* whatsapp-icon start */

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
  }
  
  .whatsapp-icon img {
    width: 70px;
    height: 70px;
  }
  
  /* whatsapp-icon end */
  

header {
    margin-top: 110px;
    width: 100%;
    background-color: #fcb69f;
    
  }
  



/* team cart */


.team-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}



.team-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
   min-width: 250px;
}



.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
}




.team-card h3 {
    margin: 0;
    font-size: 1.5rem;
}



.team-card p {
    color: #777;
    margin-top: 5px;
}





@media (max-width: 912px), (max-width: 820px) , (max-width: 768px) {
    .team-cards {
      flex-direction: column; /* Stack cards vertically on small screens */
      align-items: center; /* Center cards horizontally */
      gap: 15px; /* Reduce gap between cards */
      padding: 10px; /* Reduce padding */
    }
    
    .team-card {
      width: 50%; /* Full width on small screens */
      max-width: none; /* Reset max-width */
      margin-bottom: 15px; /* Add margin between cards */
    }
    
    .team-card img {
      width: 80px; /* Adjust image size for smaller screens */
      height: 80px;
    }
    
    .team-card h3 {
      font-size: 1.2rem; /* Adjust font size for smaller screens */
    }
  }
  

  .recommended-tag {
    background-color: #0073e6;
    color: #fff;
    border-radius: 5px;
    padding: 3px 10px;
    position: absolute;
    top: 0px;
    right: 10px;
}

/* end team cart */







.payment-container {
    max-width: 350px;
    margin: 10px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.payment-form label, .payment-form input {
    display: block;
    margin-bottom: 10px;
}

.payment-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#submit-payment {
    background-color: #0073e6;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#payment-status {
    margin-top: 20px;
    font-weight: bold;
}




















/* footer */
footer .brand {
    font-family: var(--lg-font);
    letter-spacing: 2px;
}

footer a {
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--pink) !important;
}

footer p {
    font-size: 12px;
    color: white;
}

footer{
    margin-top: 20px;
    background-color: #0a0619;
}

section{
    background-color: #fcb69f;

}

/* media queries */
@media(min-width: 992px) {
    .nav-item {
        border-bottom: none;
    }
}

