/* Custom styles recovered from inline HTML blocks */

/* Star Slides */
.starDot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.staractive {
  background-color: #717171;
}

.starFade {
  animation-name: starFade;
  animation-duration: 1.5s;
}

@keyframes starFade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Contact Form Popup */
#contactForm {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to right, #2980b9, #6dd5fa);
    padding: 3px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 90%;
    width: 450px;
    height: auto;
    text-align: center;
    color: black;
}
#contactForm h4 {
    color: black;
    font-size: 20px;
}
#contactForm h5 {
    color: black;
}
#closeButton {
    position: absolute;
    top: 5px;
    right: 0px;
    text-align: right;
    cursor: pointer;
    font-size: 40px;
    color: white;
}
label {
    display: block;
    text-align: left;
    font-weight: bold;
    color: #fff; 
}
input[type="text"],
input[type="number"],
input[type="email"],
textarea {
    width: 100%;
    color: black;
    margin-bottom: 5px;
    border: none;
    border-radius: 20px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
}
input[type="submit"] {
    background-color: blue;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
input[type="submit"]:hover {
    background-color: #2980b9;
}
@media (max-width: 760px) {
    #contactForm {
        width: 90%;
    }
}

/* Float WA */
.float-wa {
    bottom: 75px;
    display: block;
    height: 60px;
    margin: 0px 12px;
    overflow: visible;
    padding: 0px;
    position: fixed;
    right: 12px;
    top: auto;
    width: 60px;
    z-index: 2147483644;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 20%);
    border-radius: 60px;
}
.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 30%);
}
.img-wa {
    width: 100%;
    height: auto;
}

/* Thank You Page */
.wrapper-1{
  width:100%;
  height:100vh;
  display: flex;
  flex-direction: column;
}
.wrapper-2{
  padding :30px;
  text-align:center;
}
.wrapper-2 p{
  margin:0;
  font-size:1.3em;
  color:#aaa;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing:1px;
}
.go-home{
  color:#fff;
  background:#5892FF;
  border:none;
  padding:10px 50px;
  margin:30px 0;
  border-radius:30px;
  text-transform:capitalize;
  box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
}
.footer-like{
  margin-top: auto; 
  background:#D7E6FE;
  padding:6px;
  text-align:center;
}
.footer-like p{
  margin:0;
  padding:4px;
  color:#5892FF;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing:1px;
}
.footer-like p a{
  text-decoration:none;
  color:#5892FF;
  font-weight:600;
}
@media (min-width:360px){
  .go-home{
    margin-bottom:20px;
  }
}
@media (min-width:600px){
  .wrapper-1{
    height: initial;
    max-width:620px;
    margin:0 auto;
    margin-top:50px;
    box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
  }
}

/* Immigration Services Section */
.service-card-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(225, 56, 51, 0.1);
    border-color: rgba(225, 56, 51, 0.2);
}

.service-card-premium.static {
    cursor: default;
}

.service-card-premium .icon-wrap {
    width: 60px;
    height: 60px;
    background: #f8f9fc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card-premium:hover .icon-wrap {
    background: #E13833;
}

.service-card-premium .icon-wrap i {
    font-size: 28px;
    color: #E13833;
    transition: all 0.4s ease;
}

.service-card-premium:hover .icon-wrap i {
    color: #ffffff;
}

.service-card-premium h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.service-card-premium p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-card-premium .arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    background: #f8f9fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.service-card-premium:hover .arrow {
    opacity: 1;
    transform: translateX(0);
    background: #E13833;
}

.service-card-premium .arrow i {
    color: #E13833;
    font-size: 14px;
    transition: all 0.4s ease;
}

.service-card-premium:hover .arrow i {
    color: #ffffff;
}
