card/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #333;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* 👇 Add this background line */
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url('../img/service-1.jpg') center/cover no-repeat;
  color: #fff;
}
@media (max-width: 768px) {
  .hero-section {
    background-size: cover !important;
    background-position: center !important;
    min-height: 50vh; /* give it a bit more height */
  }
}

/* Hero Heading */
.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff; /* White text */
  text-shadow: 2px 2px 12px rgba(0,0,0,0.6); /* Glow for readability */
}

/* Hero Button */
.hero-section .btn {
  border-radius: 30px;
  font-weight: 600;
  padding: 12px 30px;
}

/* Section Headings */
section h2 {
  font-weight: 700;
  color: #ce5650;
  position: relative;
  margin-bottom: 20px;
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background:linear-gradient(to right, #ad2769,#bf405c,#ce5650, #e7773d,#ed8039);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Benefits Icons */
.bi {
  transition: transform 0.3s ease, color 0.3s ease;
}

.bi:hover {
  transform: scale(1.2);
  color: #004aad !important;
}

/* Tables */
.table {
  border-radius: 10px;
  overflow: hidden;
}

.table thead {
  font-weight: bold;
}

.table-hover tbody tr:hover {
  background-color: #f1faff;
  transition: background 0.3s;
}
.bg-light {
  background-color: #ffffff !important;
}
section.bg-light {
  background-color: #ffffff !important;
}
section.bg-light {
  background-color: #ffffff !important;
}
/* CTA Signup Section */
#signup {
  background: linear-gradient(135deg, #004aad, #00b4d8);
  padding: 60px 0;
}

#signup h2 {
  color: #fff;
}

#signup form {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#signup form:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 20px rgba(0,0,0,0.2);
}

#signup input {
  border-radius: 8px;
}

/* Animations */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
}
 .btn-gradient{background:linear-gradient(135deg,#ce5650); color:#fff; border:none;}
 
  .faq-flip{perspective:1000px; cursor:pointer;}
  .faq-flip-inner{position:relative; width:100%; height:180px; transition:transform .6s; transform-style:preserve-3d;}
  .faq-flip:focus .faq-flip-inner, .faq-flip:hover .faq-flip-inner, .faq-flip.flipped .faq-flip-inner{transform:rotateY(180deg);}
  .faq-flip-front, .faq-flip-back{
    position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
    border-radius:1rem; padding:1rem; box-shadow:0 10px 20px rgba(0,0,0,.05);
    backface-visibility:hidden;
  }
  .faq-flip-front{
    background:linear-gradient(135deg,#edf0f2,#ffffff);
    border:1px solid #eef2ff; color:#111827;
  }
  .faq-flip-front i{font-size:1.6rem; color:orange;}
  .faq-flip-back{
    background:linear-gradient(135deg,grey,#ffffff);
    border:1px solid #e6fbff; transform:rotateY(180deg);
    color:#ffffff;
  }
  
  <!-- Scoped styles for this section -->
<style>
  /* Icon halo badges */
  .icon-halo{
    --halo:#7c3aed;
    width:56px; height:56px; border-radius:50%;
    display:grid; place-items:center;
    background: radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.75), transparent 60%),
                radial-gradient(36px 36px at 70% 70%, rgba(255,255,255,.35), transparent 60%),
                var(--halo);
    color:#fff; font-size:1.25rem; box-shadow:0 12px 18px rgba(0,0,0,.08);
  }
  .btn-gradient{background:linear-gradient(135deg,#7c3aed,#06b6d4); color:#fff; border:none; border-radius:999px;}
  .hover-lift{transition:transform .2s ease, box-shadow .2s ease;}
  .hover-lift:hover{transform:translateY(-2px); box-shadow:0 10px 22px rgba(0,0,0,.12);}
  .hover-float{transition:transform .35s ease, box-shadow .35s ease;}
  .hover-float:hover{transform:translateY(-6px); box-shadow:0 20px 40px rgba(0,0,0,.12);}
  /* Entrance reveals */
  .reveal-up{opacity:0; transform:translateY(16px); animation:revealUp .8s ease forwards; }
  #canada-immigration .reveal-up:nth-child(1){animation-delay:.05s}
  #canada-immigration .reveal-up:nth-child(2){animation-delay:.1s}
  @keyframes revealUp{to{opacity:1; transform:none}}

  /* Chat-style FAQ */
  .faq-chat{max-width:880px; margin:0 auto;}
  .faq-chat .bubble{display:flex; gap:.75rem; margin:12px 0; align-items:flex-start;}
  .faq-chat .bubble .avatar{
    width:36px; height:36px; border-radius:50%; display:grid; place-items:center;
    background:#e5e7eb; color:#374151; flex:0 0 36px;
  }
  .faq-chat .bubble .avatar.brand{background:linear-gradient(135deg,#7c3aed,#06b6d4); color:#fff;}
  .faq-chat .bubble.q .text{
    background:#ffffff; border:1px solid #eef2ff; color:#111827;
    box-shadow:0 6px 14px rgba(0,0,0,.06);
  }
  .faq-chat .bubble.a .text{
    background:linear-gradient(135deg,#f0f9ff,#ffffff); border:1px solid #e6fffb; color:#0f172a;
    box-shadow:0 6px 14px rgba(0,0,0,.06);
  }
  .faq-chat .text{
    position:relative; padding:.85rem 1rem; border-radius:1rem; max-width:680px;
  }
  .faq-chat .q .text::after{
    content:""; position:absolute; left:-8px; top:12px; width:0; height:0;
    border-top:8px solid transparent; border-bottom:8px solid transparent; border-right:8px solid #eef2ff;
  }
  .faq-chat .a .text::after{
    content:""; position:absolute; right:-8px; top:12px; width:0; height:0;
    border-top:8px solid transparent; border-bottom:8px solid transparent; border-left:8px solid #e6fffb;
  }
  /* Section typography tweaks */
  #canada-immigration h2, #canada-immigration h3, #canada-immigration h4, #canada-immigration h5, #canada-immigration h6{letter-spacing:.2px;}
 
 /*nurse*/
 .icon-halo{
    --halo:#7c3aed;
    width:56px;height:56px;border-radius:50%;
    display:grid;place-items:center;
    background:var(--halo);color:#fff;font-size:1.25rem;
    box-shadow:0 12px 20px rgba(0,0,0,.08);
  }
  .btn-gradient{background:linear-gradient(135deg,#f43f5e,#06b6d4); color:#fff; border:none; border-radius:999px;}
  .hover-float{transition:.3s ease;}.hover-float:hover{transform:translateY(-6px);box-shadow:0 18px 36px rgba(0,0,0,.1);}
  .reveal-up{opacity:0; transform:translateY(20px); animation:revealUp .8s ease forwards;}
  @keyframes revealUp{to{opacity:1; transform:none}}
  
  
  
  .card-body i {
  background: linear-gradient(135deg, #ad2769, #e7773d); /* site gradient */
  color: #fff !important;
  border-radius: 50%;
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.card-body:hover i {
  background: linear-gradient(135deg, grey, #ffff);
  transform: scale(1.1);
}
.card {
  min-height: 100%;
}
