*{
    margin: 0;
    padding: 0;
}

/* ================================= global design ======================================= */
body{
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    
    background-color:var(--secondary);
}

:root{
    --primary:#8d0c80;
    --secondary:rgb(250, 250, 250);
    --text:#555;
    --border:#959595;
    --tertiary:#f3f3f38e;
    --dark:rgb(56, 53, 53);
}
.margin {
    margin:0 4%;
}
a{
    text-decoration: none;
}
.main-btn {
    border: 1px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
    outline: none;
    /* border: none; */
    /* background-color: #ff9600;
    color: var(--secondary); */
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    transition: 0.20s ease-in;
}
.about-btn {
    outline: none;
    border: none;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    transition: 0.20s ease-in;
}
.about-btn:hover{
    border: 1px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
}
.main-btn-1 {
    border: none;
    outline: none;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    transition: 0.20s ease-in;
}
.details-btn {
    border: none;
    outline: none;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    transition: 0.20s ease-in;
}
.main-btn-1:hover{
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--secondary);
    backdrop-filter: blur(2px);
}
.main-btn-4 {
    border: none;
    outline: none;
    background-color: var(--secondary);
    color: var(--text);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    transition: 0.20s ease-in;
}
.main-btn-4:hover{
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--secondary);
    backdrop-filter: blur(2px);
}
.main-btn-2 {
    border: none;
    outline: none;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    font-size: 15px;
    justify-self: center;
    border-radius: 8px;
    transition: 0.20s ease-in;
}
.main-btn-2:hover{
    border: 1px solid var(--secondary);
    background-color: transparent;
    color: var(--secondary);
}
.line {
    width: 100%;
    height: 1px;
    background-color: var(--border);
}
.line-1 {
    width: 1px;
    height: 70px;
    background: var(--border);
}
.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* ================================= end of global design ======================================= */


/* ============================= navbar section ============================================== */
.mail {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mail label, .mail a {
    font-size: 14px;
    color: var(--secondary);
}
.mail i {
    color: var(--secondary);
}
.all-top {
    background-color:var(--primary);
    padding: 15px 0 6px 0 ;
    padding: 10px 15px ;
    border-radius: 0 0 8px 8px; 
    /* box-shadow: 0 2px var(--primary); */
}
.top-content {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    justify-content: space-between;
}
.top-content h5{
    color: #555;
    letter-spacing: 1px;
    font-size: 15px;
}
.top-right span {
    color: var(--border);
}
.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.social-icons i{
    padding: 6px;
    background: var(--primary);
    border-radius: 100%;
    font-size: 0.8rem;
    color: var(--secondary);
}
.social-icons div a{
    display: block;
    align-items: center;
    justify-content: center;
}
.nav-left img{
    width: 80px;
}
.nav-center {
    display: flex;
    align-items: center;
    gap: 50px;
}
.nav-center a {
    color: var(--text);
    font-size: 15px;
    font-weight: bold;
}
.nav-center a:hover{
    color: var(--primary);
}
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:16px 0;
}
.all-navbar{
    background-color:var(--secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#bars {
    cursor: pointer;
    display: none;
}
#bars span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--primary);
    margin-bottom: 5px;
    transition: 1s ease;
}
#bars span:nth-child(2){
    width: 15px;
}
#bars.show span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
#bars.show span:nth-child(2) {
    opacity: 0;
}
#bars.show span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* ============================= end of navbar section ============================================== */

/* ====================== sidebar section ======================== */
#sidebar {
    position: fixed;
    top: 0;
    left: -1000px;
    height: 100vh;
    background-color:var(--secondary);
    width: 25%;
    /* border-right: 1px solid #ddd; */
    padding:10px 15px;
    color: var(--text);
    transition: left 1s ease;
    display: none;
    z-index: 10000;
}
#sidebar.show{
    left: 0;
}
.no-scroll {
    overflow: hidden;
}

.side-logo{
    justify-self: center;
    margin-bottom: 20px;
}
.side-item{
    display: flex;
    align-items: center;
    gap: 10px;
}
.side-item a{
    color: var(--main);
    font-size: 17px;
}
.side-logo img{
    padding-top: 25px;
}
.side-item i{
    color:var(--dash);
}
/* ====================== end of sidebar section ======================== */


/* ============================= hero section =================================== */
.all-hero {
    /* position: relative;
    overflow: hidden; */
    background: linear-gradient(rgba(0,0,0,0.322), rgba(0, 0, 0, 0.322)), url(../image/hero\ \(2\).jpg) no-repeat center center/cover;
    padding: 100px 0;
}
/* .all-hero video{
    width: 100%;
    height: 90vh;
    filter: brightness(40%);
    object-fit: cover;
    z-index: -1;
    
} */
/* .hero-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 100px;
} */
.welcome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 20px;
    border: 1px solid var(--border);
    width: fit-content;
    border-radius: 5px;
    backdrop-filter: blur(50px);
    
}
.welcome i, .welcome-4 i{
    color: var(--secondary);
}
.welcome label, .welcome-4 label{
    color: var(--secondary);
    font-size: 12px;
    font-weight: bold;
}
.welcome-1 {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 20px;
    border: 1px solid var(--border);
    width: fit-content;
    border-radius: 5px;
    backdrop-filter: blur(50px);
    
}
.welcome-2{
    display: flex;
    align-items: center;
    gap: 6px;
    justify-self: center;
    padding: 5px 20px;
    border: 1px solid var(--border);
    width: fit-content;
    border-radius: 5px;
    backdrop-filter: blur(50px);
    
}
.welcome-4{
    display: flex;
    align-items: center;
    gap: 6px;
    justify-self: center;
    padding: 5px 20px;
    border: 1px solid var(--border);
    width: fit-content;
    border-radius: 5px;
    
}
.welcome-1 i, .welcome-2 i{
    color: var(--primary);
}
.welcome-1 label, .welcome-2 label{
    color: var(--text);
    font-size: 18px;
    font-weight: bold;
}
.hero-left h1{
    font-weight: bold;
    font-size: 60px;
}
.hero-left p{
    font-weight: 100;
}
.hero-left {
    width: 55%;
    color: var(--secondary);
}


/* ============================= end of hero section =================================== */

/* ============================ about section =========================== */
.rip-image {
    position: relative;
}
.rip label{
    color:var(--secondary);
    font-size: 50px;
    /* font-family: cursive; */
}
.inaugurate {
    text-align: center;
    font-size: 22px;
}
.rip{
    position: absolute;
    top:20px ;
    right: 20px;
    opacity: 3000;
}
.we-did {
    color: var(--primary);
}
.about-content {
    display: flex;
    align-items:flex-start;
    gap: 40px;
}
.about-left{
    width: 50%;
}
.first-img{
    width: 250px;
    border-radius: 40px 40px 0 40px;
}
.first-1-img{
    width: 250px;
    border-radius: 40px 40px 40px 0;
}
.first-2-img{
    width: 250px;
    border-radius: 40px 0 40px 40px;
}
.first-3-img{
    width: 250px;
    border-radius: 0 40px 40px 40px;
}
.about-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
}
@keyframes moveIg {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-50px);
    }
    100% {
        transform: translateY(0px);
    }
    
}
.about-right {
    width: 50%;
}
.about-right h1 {
    font-size: 50px;
    color: var(--text);
}
.all-about {
    padding: 60px 0;
}
.medic-title {
    color: var(--text);
}
.medic-title h5 span{
    display: block;
    line-height: 30px;
}
.medic-item i{
    background-color: var(--primary);
    color: var(--secondary);
    padding: 18px;
    font-size: 1.5rem;
    border-radius: 100%;
}
.medic-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.medic-content {
    display: flex;
    gap: 25px;
}
.about-right p{
    color: var(--text);
    font-size: 17px;
    margin-bottom: 30px;
}
.vtu {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.vtu-items {
    text-align: center;
}
.vtu-items h2{
    color: var(--text);
    font-size: 45px;
}
/* ============================ end of about section =========================== */

/* ========================= partner section ==================================== */
.partner-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.partner-image img {
    width: 100%;
    border-radius: 20px 20px 0 0;
}
.partner-title{
    background-color: var(--secondary);
    padding: 20px;
    border-radius: 20px;
    position: relative;
    top: -20px;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.partner-title h5 {
    font-weight:600;
    color: var(--primary);
}
.dark-title{
    background-color: var(--dark);
    padding: 20px;
    border-radius: 20px;
    position: relative;
    top: -20px;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.dark-title h6, .dark-title p {
    font-weight:600;
    font-size: 18px;
    color: var(--secondary);
}
.partner-items {
    background-color: var(--secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
    border-radius: 20px;
    height: fit-content;
}
.all-partners {
    padding: 60px 0;
    background: var(--tertiary);
}

/* ========================= end of partner section ==================================== */

/* ========================= donate section ==================================== */
.donate-left {
    width: 50%;
}
.all-donate {
    padding: 60px 0;
}
.donate-left img {
    width: 100%;
    border-radius: 10px;
    filter: brightness(90%);
}
.donate-right {
    width: 50%;
}
.donate-ceo {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #eee;
    border-radius: 15px;
}
.donate-ceo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.donate-ceo-title h5 {
    color: var(--text);
    font-size: 25px;
}
.donate-ceo-title label {
    color: var(--primary);
    font-size: 14px;
    font-weight: bold;
}
.donate-ceo-title {
    display: block;
}
.donate-right h1, .testimonial-header h1 {
    font-size: 50px;
}
/* ========================= end of donate section ==================================== */

/* ======================================== testimonial section ================================= */
  .testimonial-section {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
  }
.testimonial-swiper-container {
    border-radius: 1.5rem;
}
  .testimonial-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #8d0c80, #bd0bab);
    border-radius: 1rem 0 0 1rem;
  }

  .testimonial-image {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    border: 4px solid #eaf2fa;
  }

  .testimonial-content {
    flex: 1;
  }

  .quote-mark {
    font-size: 3.5rem;
    color: #0047ab25;
    line-height: 0.5;
    margin-bottom: 0.5rem;
  }

  .testimonial-quote {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    position: relative;
  }

  .testimonial-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
  }

  .testimonial-role {
    font-size: 0.9rem;
    color: #777;
  }
  .all-testimonial {
    padding: 20px 0 60px 0;
    display: flex;
    justify-content: center;
  }
/* ======================================== end of testimonial section ================================= */

/* ======================================== footer section ========================================== */
.footer-center p {
    display: flex;
    align-items: center;
    gap: 5px;
    
}
.footer-center {
    text-align: left;
}
.footer-content {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}
.footer-left p span{
    display: block;
}
.all-footer {
    padding: 60px 0 20px 0;
    border-top: 1px solid #dddddd;
}
.footer-left p{
    color: var(--text);
    margin-top: 20px;
}
.footer-center h4{
    color: var(--text);
    font-weight: 300;
    margin-bottom: 16px;
}
.footer-center svg{
    color: var(--primary);
}
.footer-center p{
    color: var(--text);
}
.footer-center p:hover{
    color: var(--primary);
}
.footer-right h4{
    color: var(--text);
    font-weight: 300;
    margin-bottom: 16px;
}
.footer-right p, .footer-right a{
    font-size: 15px;
    color: var(--text);
}
.foot-date {
    padding: 25px 0 12px 0;
    background: var(--primary);
}
.foot-date h5{
    font-family: sans-serif;
    font-size: 14px;
    text-align: center;
    color: var(--secondary);
}
.foot-date a {
    color: var(--secondary);
}
/* ======================================== end of footer section ========================================== */

/* ========================================= about background section ====================================== */
.image-background {
   background: linear-gradient(rgba(0, 0, 0, 0.608), rgba(0, 0, 0, 0.608)), url(../image/gg.jpeg) no-repeat center center/cover;
   padding: 100px 0;
   color: var(--secondary);
   display: flex;
   text-align: center;
   justify-content: center;
}
.image-background-content h2{
    font-size: 50px;
    font-weight: bold;
}
.welcome-4 a {
    color:var(--secondary);
}
/* ========================================= end of about background section ====================================== */


/* ==================================   text =========================================== */
.all-text{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 150px;
    background-color: var(--primary);
}
.move-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: var(--secondary);
    animation: moveText 15s linear infinite;
}
.move-text h1 {
    font-size: 50px;
}
@keyframes moveText {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ================================== ed of move text =========================================== */

/* ============================================== contact section =============================== */
.contact-info {
    overflow-x: scroll;
}
.contact-info::-webkit-scrollbar {
    height: 5px;
}
.contact-info p{
    font-size: 17px;
}
.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.contact-right, .contact-left {
    width: 50%;
}
.contact-right img {
    width: 100%;
    border-radius: 10px;
}
.contact-right video {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-self: center;
}
.contact-head {
    text-align: center;
    color: var(--text);
    margin-bottom: 30px;
}
.contact-head h1 {
    font-weight: bold;
}
.map iframe {
    width: 100%;
}
.all-contact {
    padding: 60px 0;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
    cursor: pointer;
}
.info-item i{
    background-color: var(--primary);
    color: var(--secondary);
    padding: 12px;
    font-size: 1.2rem;
    border-radius: 50%;
}
.info-item label, .info-item a {
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
}
/* ============================================== end of contact section =============================== */

/* ============================================= register section ======================================= */
.register-content {
    display: flex;
    /* align-items: center; */
}
.register-left{
    width: 50%;
    height: 100vh;
}
.register-left img {
    width: 100%;
}
.register-right{
    overflow-y:auto;
    width: 50%;
    height: 100vh;
    padding: 60px 40px;
    background-color: #f0f0f0;
}
.register-right::-webkit-scrollbar {
    width: 5px;
}
.register-right-content {
    background-color: var(--secondary);
    padding: 40px;
    border-radius: 15px;
}
.register-logo img{
    width: 80px;
}
.register-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.register-group input, .register-group select {
    border: 1px solid #e0e0e0;
    outline: none;
    background-color: transparent;
    color: var(--text);
    width: 100%;
    font-size: 14px;
    padding: 15px;
    border-radius: 5px;
}
.pass-group input {
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--text);
    width: 100%;
    font-size: 14px;
}
.pass{
    border: 1px solid #e0e0e0;
    outline: none;
    background-color: transparent;
    color: var(--text);
    width: 100%;
    font-size: 14px;
    padding: 15px;
    border-radius: 5px;
}
.register-group, .pass-group {
    position: relative;
    width: 100%;
    /* margin-bottom: 20px; */
}
.register-group label {
    position: absolute;
    top: 16px;
    left: 15px;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}
.pass-group label {
    position: absolute;
    top: -1px;
    left: -1px;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}
.register-group input:focus + label,
.register-group input:not(:placeholder-shown) + label {
    top: -9px;
    font-size: 12px;
    background-color:var(--secondary);
    padding: 0 5px;
}
.register-group select:focus + label,
.register-group select:valid + label {
    top: -9px;
    font-size: 12px;
    background-color:var(--secondary);
    padding: 0 5px;
}
.pass-group input:focus + label,
.pass-group input:not(:placeholder-shown) + label {
    top: -25px;
    font-size: 12px;
    background-color: var(--secondary);
    padding: 0 5px;
}
.all-input {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pass {
    display: flex;
    align-items: center;
}
.pass i{
    color: var(--text);
    cursor: pointer;
}
.terms {
    display: flex;
    align-items: center;
    gap: 6px;
}
.terms label{
    font-size: 14px;
    color: var(--text);
}
.terms input{
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
}
.terms span, .terms a {
    color: var(--primary);
    font-weight: bold;
    transition: 0.10s ease;
    cursor: pointer;
    font-size: 14px;
}
.terms span:hover, .login-redirect a:hover, .terms a:hover {
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary);
}
.login-redirect p{
    font-size: 15px;
    color: var(--text);
    text-align: center;
}
.login-redirect a {
    color: var(--primary);
    transition: 0.10s ease;
}
.register-head h4{
    font-weight: bold;
    color: var(--text);
}
.register-head p{
    color: var(--text);
    font-size: 15px;
}
/* ============================================= end of register section ======================================= */

/* ================================== preloader section ================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

}
.bubble-loader {
    position: relative;
    width: 37px;
    height: 37px;
  }

  /* Filled center bubble */
  .bubble {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 1.4s ease-in-out infinite;
    z-index: 2;
  }

  /* Outer transparent wave */
  .wave {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    transform: scale(1);
    animation: wave 1.4s ease-out infinite;
    z-index: 1;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(0.9);
    }
  }

  @keyframes wave {
    0% {
      opacity: 0.5;
      transform: scale(1);
    }
    70% {
      opacity: 0;
      transform: scale(2.2);
    }
    100% {
      opacity: 0;
      transform: scale(2.2);
    }
  }
.main-content {
    display: none;
}
/* ================================== end of preloader section ================================= */

/* =================================== payment section ====================================== */
.payment-content {
    display: flex;
    align-items: flex-start;
}
.payment-left {
    width: 50%;
}
.payment-left img{
    width: 100%;
}
.payment-right {
    width: 50%;
    padding: 30px;
}
.payment-right h2 {
    font-weight: bold;
    font-size: 35px;
    text-align: center;
    color: var(--text);
    margin-bottom: 25px;
}
.all-payment {
    padding: 60px 0;
    background-color: var(--tertiary);
}
.account-items {
    background-color: var(--secondary);
    /* border: 1px solid #ccc; */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px var(--primary);
}
.account-items li{
    line-height: 45px;
    font-size: 20px;
    color: var(--text);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}
.account-items h4 {
    font-size: 30px;
    color: var(--primary);
    font-weight: bold;
}
.account-items b{
    font-weight: bold;
}
.payment-account {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
/* =================================== end of payment section ====================================== */

/* ========================== gallery section ====================================== */
.gallery {
    padding: 60px 0;
}
.gallery-content {
    text-align: center;
}
.gallery-content h2 {
    font-size: 35px;
    color: var(--text);
    margin-bottom: 25px;
}
.gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}
.gallery-item img, .gallery-item video {
    width: 100%;
    transition: transform 0.3s ease;
}
.crop-img {
    width: 270px;
    height: 270px;
    object-fit: cover;
    overflow: hidden;
}
.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.1);
}
/* ===================== end of gallery section ========================= */
/* ======================== table section ============================ */
.table-btn {
    border: none;
    outline: none;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 13px;
}
.facilitate-redirect {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mail-2 label {
    color: var(--primary);
}
.mail-2 i {
    color: var(--primary);
}
.card{
    padding: 20px 10px ;
    border: none;
}
.input-check input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid #ccc;
  cursor: pointer;
  position: relative;
  background-color: transparent;
}

.input-check input[type="checkbox"]::before {
  content: "✓";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 14px;
  color: white; /* You can change to black or green */
  opacity: 0;
  transition: 0.2s ease-in-out;
  font-weight: bold;
}

.input-check input[type="checkbox"]:checked {
  background-color: var(--primary); 
  border: none;
}
.input-check input[type="checkbox"]:checked::before {
  opacity: 1;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}
.user-profile img{
    width:40px;
    border-radius: 50%;
}
.user-content i{
    color: var(--primary);
    background-color:#ebebf9;
    padding: 8px;
    border-radius: 50%;
    font-size: 0.8rem;
    cursor: pointer;
}
.user-content {
    display:flex;
    align-items: center;
    gap: 7px;
}
.table th{
    background-color:#f3f3fd;
    color: #555;
}
.table td{
    color: #555;
}

/* ======================== end of table section ============================ */
