/* ---------- LOGO ---------- */
.sha-logo {
  max-height: 50px;
  width: auto;
}

/* ---------- BRAND NAME ---------- */
.sha-brand {
  font-size: 1.2rem;
  color: #0047ff;  /* Brighter Bootstrap blue */
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Smaller brand size on small screens */
@media (max-width: 576px) {
  .sha-brand {
    font-size: 1rem;
  }
}
@media (max-width: 375px) {
  .sha-brand {
    font-size: 0.95rem;
  }
}

/* Hide brand below 768px */
@media (max-width: 767.98px) {
  .sha-brand {
    display: none;
  }
}

/* ---------- FLOATING ACTION BUTTONS ---------- */
.sha-floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* hidden by default */
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/* Show floating buttons only below 768px */
@media (max-width: 767.98px) {
  .sha-floating-buttons {
    display: flex;
  }
}

/* Individual Button Style */
.sha-fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease;
}

.sha-fab:hover {
  transform: scale(1.07);
}

.sha-wa {
  background-color: #25D366;
}

.sha-call {
  background-color: #0d6efd;
}


/* ---------------------------
   GLOBAL STYLES
---------------------------- */
:root {
  --primary-color: #1976d2;    /* Trust Blue */
  --secondary-color: #ff9800;  /* Friendly Orange */
  --bg-light: #f7faff;
  --text-dark: #333;
  --text-light: #555;
  --section-padding: 70px 0;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  background-color: #ffffff;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Button */
.btn-primary {
  background: var(--secondary-color);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: 0.3s ease;
}
.btn-primary:hover {
  background: #e68900;
}

/* ---------------------------
   HERO SECTION
---------------------------- */
.hero-section {
  background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
  color: #fff;
  padding: var(--section-padding);
  position: relative;
}

.hero-heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem); /* responsive font scaling */
  line-height: 1.3;
  font-weight: 600;
  text-align: center;   /* adjust to left if you want */
  word-break: normal;   /* ✅ keeps words intact */
  overflow-wrap: break-word; /* ✅ if absolutely needed, break long words */
}





.hero-section p {
  font-size: 1.15rem;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 10px;
  border-radius: 20px; /* Pill shape */
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.trust-badges {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap; /* Keep all in one line */
  overflow-x: auto;   /* Allow horizontal scroll if very small screen */
}
.trust-badge:hover {
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 576px) {
  .trust-badge {
    font-size: 0.75rem; /* Slightly smaller */
    padding: 5px 8px;
  }
}

/* Form Card */
.hero-section .card {
  border-radius: 12px;
  border: none;
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-section .form-control {
  border-radius: 8px;
  padding: 10px;
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding: 50px 15px;
  }
  .hero-section h1 {
    font-size: 1.3rem;
  }
}

/* ---------------------------
   ABOUT SECTION
---------------------------- */
.about-section {
  background: var(--bg-light);
  padding: var(--section-padding);
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-section ul li {
  margin-bottom: 8px;
  font-weight: 500;
}

/* ---------------------------
   WHY CHOOSE US SECTION
---------------------------- */
.why-choose-us {
  background: #ffffff;
  padding: var(--section-padding);
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.why-choose-us .card {
  border: none;
  border-radius: 14px;
  padding: 25px 20px;
  background: #f9f9f9;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-choose-us .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.why-choose-us .icon i {
  padding: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 1.9rem;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 8px rgba(25, 118, 210, 0.3);
}

.why-choose-us .card:hover .icon i {
  background: #0d47a1;
  transform: scale(1.2) rotate(10deg);
}

.why-choose-us h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 15px;
  color: var(--text-dark);
}

.why-choose-us p {
  font-size: 0.95rem;
  color: var(--text-light);
}
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1976d2; /* Primary Blue */
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto 10px auto; /* center horizontally */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.icon-circle:hover {
  transform: scale(1.1);
}




/* ---------------------------
   PLANS SECTION
---------------------------- */
.plans-section {
  background: #f7f9fc;
  padding: 70px 0;
}

.plans-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
}

.plan-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.plan-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 15px;
}

.plan-card p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
}
/* ==============================
   Plan Section Headings (H3)
   ============================== */
.plan-heading {
  font-size: 1.25rem;  /* similar to <h5> */
  font-weight: 500;    /* medium, not heavy bold */
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

/* ---------------------------
   TESTIMONIALS SECTION
---------------------------- */
.testimonials-section {
  padding: var(--section-padding);
  background: #ffffff;
}
.testimonials-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: 0.3s;
  padding: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* ---------------------------
   CTA SECTION
---------------------------- */
.cta-section {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: #fff;
  padding: var(--section-padding);
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
}
.cta-section a.btn-light {
  color: #1976d2;
  font-weight: 600;
  border-radius: 6px;
}
.cta-section a.btn-light:hover {
  background-color: #f1f1f1;
}

/* ---------------------------
   FOOTER SECTION
---------------------------- */
.footer-section {
  background-color: #f5f5f5;
  color: #555;
  font-size: 0.9rem;
  padding: 20px 0;
  text-align: center;
}
.footer-section .footer-link {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
}
.footer-section .footer-link:hover {
  text-decoration: underline;
}
html {
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}
.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.contact-item i {
  font-size: 1.3rem;
  margin-right: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 50%;
}

.contact-item a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ---------------------------
   FAQ Section
---------------------------- */
.accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  color: #333;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}
.accordion-button:not(.collapsed) {
  color: #007bff;
  background-color: #e9f2ff;
}
.accordion-body {
  font-size: 0.95rem;
  color: #555;
}
.accordion-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}




