@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@400..800&display=swap");
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Baloo Paaji 2", sans-serif;
}
h1,h2,h3,h4,h5,h6{
  font-family: "Baloo Paaji 2", sans-serif;

}
body{
  background: #f5f3f3;
}
.body{
  width: 100%;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 570px){
  .body{
    padding-bottom: 150px;
  }
}
@media only screen and (max-width: 415px){
  .body{
    padding-bottom: 200px;
  }
}

header{
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(149,10,85);
  background: linear-gradient(90deg, rgba(149,10,85,1) 0%, rgba(136,0,148,1) 100%);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: 999999999;
}

header .head{
  display: flex;
  align-items: center;
  z-index: 100;
}

header .head img{
  width: 100px;
}
header .header-title{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 880px){
  header .header-title{
    display: none;
  }
}
header h2{
  font-size: 30px;
  color: #fff;
}
header .head h1{
  font-size: 20px;
  color: #fff;
  line-height: 25px;
}

header .head h1 span{
  font-size: 30px;
}

.container{
  width: 1000px;
  margin: 20px;
  margin-top: 130px;
}

.controls{
  border-bottom: .5px solid #9a9a9a;
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
}
.tabs a{
  color: #585757;
  font-size: 22px;
  text-decoration: none;
  padding: 10px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}

.tabs a.active {
  border-bottom: 3px solid #950a55;
  color: #950a55;
}

header .signout{
  border: none;
  outline: none;
  background: #f5f3f3;
  padding: 10px;
  color: #950a55;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  margin-right: 20px;
  height: 50px;
  z-index: 100;
  text-decoration: none;
}
.content{
  padding: 30px;
  background: #fff;
  margin-top: 10px;
}
@media only screen and (max-width: 880px){
  .content{
    width: 100%;
    padding: 10px;
  }
}
.content h2{
  margin-bottom: 10px;
  font-size: 40px;
  text-align: center;
}
.content p{
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.content strong{
  color: #950a55;
}

.content h3{
  font-size: 28px;
  margin-top: 15px;
  color: #950a55;
}
.content form h3{
  color: #282727;
}

form input, form textarea{
  background: #eee;
  border: none;
  margin: 8px 0;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 8px;
  width: 100%;
  outline: none;
  margin-bottom: 20px;
}

form textarea{
  resize: vertical;
  min-height: 150px;
  margin-bottom: 0;
}

form h4{
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 500;
}

form label{
  font-size: 20px;
}

form h3{
  font-size: 30px;
  margin-top: 20px;
}

form hr{
  width: 50px;
  border: 2px solid #950a55;
  margin-bottom: 20px;
}

form .buttons{
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 460px){
  form .buttons{
    flex-direction: column;
    justify-content: start;
  }
  .buttons button{
    margin-bottom: 10px;
  }
}

.buttons button, .navigation button{
  background: none;
  border: none;
  outline: none;
  background: #950a55;
  padding: 10px 15px;
  color: #f5f3f3;
  border-radius: 7px;
  font-size: 18px;
  cursor: pointer;
}

.select {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.select span {
        display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #eee;
    border-radius: 8px;
    cursor: pointer;
}

.select span .dropdown-icon {
    color: #000;
    font-size: 18px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.select.active span .dropdown-icon {
    transform: rotate(180deg);
}

.select ul {
    position: absolute;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background: #eee;
    border-radius: 8px;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.select ul li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.select ul li:hover {
    background: #f5f5f5;
}
.select ul::-webkit-scrollbar{
  width: 20px;
}
.select ul::-webkit-scrollbar-thumb{
  background-color: #950a55;
  border-radius: 10px;
  margin: 10px;
  width: 2px;
  border: 6px solid #eee;
}



ul {
  list-style: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder; 
  background-color: white;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 30px;
  padding: 20px; 
  height: 70px;
  width: 300px;
  margin: auto;
}

.social-icons .icon-content {
  margin: 0 10px;
  position: relative;
  font-weight: bolder;
}

.social-icons .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e8e8e8;
  color: #000; 
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
  transition: all 0.3s ease;
  font-weight: bolder;
}

.social-icons .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.social-icons .icon-content .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #000; 
  background-color: transparent; 
  transition: all 0.3s ease-in-out;
  font-weight: bolder; 
}

.social-icons .icon-content .link:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.social-icons .icon-content .link svg {
  width: 30px;
  height: 30px;
  fill: #fff; 
}

.social-icons .icon-content .link[data-social="facebook"]:hover {
  color: #1877F2;
}

.social-icons .icon-content .link[data-social="linktree"]:hover {
  color: #1db954;
}

.social-icons .icon-content .link[data-social="instagram"]:hover {
  color: #ea4c89;
}

.social-icons .icon-content .link[data-social="linkedin"]:hover {
  color: #0088cc;
}

.footer-distributed{
  background: rgb(149,10,85);
  background: linear-gradient(90deg, rgba(149,10,85,1) 0%, rgba(136,0,148,1) 100%);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px;
  padding: 55px 50px;
  bottom: 0;
  min-height: 40vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 70px;

}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
  width: 40%;
}

/* The company logo */

.footer-distributed h3{
  color:  #ffffff;
  font: normal 36px 'Open Sans', cursive;
  margin: 0;
}

.footer-distributed h3 span{
  color:  #dc16dc;
}

/* Footer links */

.footer-distributed .footer-links{
  color:  #fff;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a{
  display:inline-block;
  line-height: 1.8;
  font-weight:400;
  text-decoration: none;
  color:  inherit;
}

.footer-distributed .footer-company-name{
  color:  #c3c1c1;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center{
  width: 35%;
}

.footer-distributed .footer-center i{
  color: #ffffff;
  font-size: 28px;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
  font-size: 20px;
  line-height: 38px;
}

.footer-distributed .footer-center p{
  display: inline-block;
  color: #ffffff;
  font-weight:400;
  vertical-align: middle;
  margin:0;
}

.footer-distributed .footer-center p span{
  display:block;
  font-weight: normal;
  font-size:18px;
  line-height:2;
}

.footer-distributed .footer-center p a{
  color:  #dc16dc;
  text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 23px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
  width: 20%;
}


.footer-distributed .footer-company-about{
  line-height: 20px;
  color:  #fff;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span{
  display: block;
  color:  #ffffff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons{
  margin-top: 25px;
}

.footer-distributed .footer-icons a{
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 23px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}

/* footer responsive*/

@media (max-width: 880px) {

  .footer-distributed{
    font: bold 14px sans-serif;
    margin-bottom: 0 auto;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-distributed .footer-center i{
    margin-left: 0;
  }

}
/* Add a media query for smaller screens */
@media screen and (max-width: 768px) {
  .footer-distributed {
    padding: 40px;
  }
}

@media screen and (max-width: 480px) {
  .footer-distributed {
    padding: 20px;
  }
}

#customMessageBox {
  padding-top: 30px;
display: none; 
position: fixed; 
top: 100px; 
left: 50%; 
transform: translateX(-50%); 
padding: 15px 25px; 
background: linear-gradient(90deg, rgba(149,10,85,1) 0%, rgba(136,0,148,1) 100%); 
color: rgb(255, 255, 255); 
border-radius: 5px; 
z-index: 10000; 
box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px; 
font-size: 16px; 
min-width: 300px; 
text-align: center;
}

.announcements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.announcements .announcement {
    background: #f5f3f3;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
}


@media only screen and (max-width: 640px) {
    .announcements .announcement {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 500px) {
    .announcements .announcement {
        margin: 0;
        background: #fff;
    }
}

.announcement h4 {
    font-size: 24px;
    color: #950a55;
    margin-bottom: 10px;
}

.announcement h5 {
    font-size: 18px;
}

.announcement a {
    color: #950a55;
    font-size: 19px;
}

.back-btn {
    background: #950a55;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    margin: 20px 0;
    border: 2px solid #950a55;
    transition: 0.3s ease-in-out;  
}

.back-btn:hover {
    background: none;
    color: #950a55;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
}
.checkbox-container p {
  margin-top: 18px;
}

.ios-checkbox {
  --checkbox-size: 28px;
  --checkbox-color: #3b82f6;
  --checkbox-bg: #dbeafe;
  --checkbox-border: #93c5fd;

  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  width: fit-content;
  align-items: center;
}

.ios-checkbox input {
  display: none;
}

.checkbox-wrapper {
  position: relative;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.checkbox-bg {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid var(--checkbox-border);
  background: white;
  transition: all 0.2s ease;
}

.checkbox-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  color: white;
  transform: scale(0);
  transition: all 0.2s ease;
}

.check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.3s ease 0.1s;
}

/* Checked State */
.ios-checkbox input:checked + .checkbox-wrapper .checkbox-bg {
  background: var(--checkbox-color);
  border-color: var(--checkbox-color);
}

.ios-checkbox input:checked + .checkbox-wrapper .checkbox-icon {
  transform: scale(1);
}

.ios-checkbox input:checked + .checkbox-wrapper .check-path {
  stroke-dashoffset: 0;
}

/* Hover Effects */
.ios-checkbox:hover .checkbox-wrapper {
  transform: scale(1.05);
}

/* Active Animation */
.ios-checkbox:active .checkbox-wrapper {
  transform: scale(0.95);
}

/* Focus Styles */
.ios-checkbox input:focus + .checkbox-wrapper .checkbox-bg {
  box-shadow: 0 0 0 4px var(--checkbox-bg);
}

.ios-checkbox.red {
  --checkbox-color: #950a55;
  --checkbox-bg: #fee2e2;
  --checkbox-border: #ffb6dd;
}

/* Animation */
@keyframes bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.ios-checkbox input:checked + .checkbox-wrapper {
  animation: bounce 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.status-card {
  padding: 15px;
  padding-left: 25px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 10px;
    width: 100%;

}

.status-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

@media only screen and (max-width: 670px) {
  .status-row {
    flex-direction: column;
    gap: 0;
  }
}