.st-hero.st-style1.st-type1 .st-hero-title {
    font-size: 42px;
}



.whatsapp-float {
  position: fixed;
  left: 2%;
  bottom: 20%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* Responsive - Adjust size for very small screens */
@media screen and (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}


/* Hide by default */
.mobile-cta {
  display: none;
}

/* Show only on screens smaller than 700px */
@media (max-width: 699px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    justify-content: center;
    z-index: 9999;
  }

  .cta-button {
    background-color: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    background-color: #218838;
  }
}



.st-site-header.st-style1 .st-main-header-in {
    display: flex
;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 90px;
}

.st-btn.st-style1.st-color1 {
    background-color: #1d4964;
    color: #fff;
}

.st-section-heading-title{
	color: #1d4964;
}

.st-iconbox-title {
	color: #1d4964;
}

.st-news-letter-number {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    margin-top: 30px;
    color: #1d4964;
}


.st-iconbox.st-style1.st-type2 {
    background-color: transparent;
    border: none;
    text-align: left;
    padding: 0;
    max-width: 350px;
    border: 2px solid blue; 
  transition: all 0.3s ease; 
  padding: 15px;
}

.st-iconbox.st-style1.st-type2:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 255, 0.3); /* blue shadow on hover */
  cursor: pointer;
}



.st-checklist {
  list-style: none; /* remove default bullets */
  padding: 0;
  margin: 0;
}

.st-checklist li {
  position: relative;
  padding-left: 30px; /* space for icon */
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.6s ease forwards;
}

.st-checklist li::before {
  content: "\f00c"; /* Font Awesome tick/check */
  font-family: "Font Awesome 5 Free";  
  font-weight: 900; /* required for solid style */
  position: absolute;
  left: 0;
  top: 0;
  color: #007bff; /* blue tick */
  font-size: 16px;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animate each li with delay */
.st-checklist li:nth-child(1) { animation-delay: 0.1s; }
.st-checklist li:nth-child(2) { animation-delay: 0.2s; }
.st-checklist li:nth-child(3) { animation-delay: 0.3s; }
.st-checklist li:nth-child(4) { animation-delay: 0.4s; }
.st-checklist li:nth-child(5) { animation-delay: 0.5s; }
