/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Navbar */


.custom-navbar {
  background-color: #004e89 !important;
}

.navbar-brand, .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.nav-link:hover, .navbar-brand:hover {
  color: #ffc107 !important;
}

header {
  background: linear-gradient(45deg, #e8f0fe, #ffffff);
  padding: 2rem 0;
  text-align: center;
}

header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #003366;
}

header p {
  font-size: 1.1rem;
  color: #555;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  padding: 10px 0;
  font-size: 1rem;
  line-height: 1.7;
}
.service-card {
  background-color: #fdfdfc;
  border: 1px solid #e4e4e4;
  border-left: 5px solid #ffb703; /* unique color stripe */
  border-radius: 10px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.service-card:hover {
  background-color: #fffbe6;
  border-left-color: #ffa600;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
}

.service-card h5 {
  font-size: 18px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .service-card {
    text-align: center;
    padding: 20px;
  }

  .service-card h5 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 14px;
  }
}
/* Importance Card Style */
.importance-card {
  background-color: #f4f8fc;
  border-left: 5px solid #0d6efd;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.importance-card:hover {
  background-color: #e9f2fe;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.importance-card h5 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0d6efd;
}

.importance-card p {
  font-size: 1rem;
  color: #333;
}

/* Responsive Spacing */
@media (max-width: 768px) {
  .importance-card {
    margin-bottom: 20px;
  }

  .importance-card h5 {
    font-size: 1.1rem;
  }

  .importance-card p {
    font-size: 0.95rem;
  }
}
/* FAQ Accordion */
.accordion-button {
  background-color: #f0f8ff;
  color: #003366;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.accordion-button:hover {
  background-color: #e6f0ff;
  color: #002244;
}

.accordion-body {
  background-color: #fefefe;
  font-size: 1rem;
  line-height: 1.6;
}

/* Section Titles */
h2.text-primary,
h2.text-danger {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Badge Grid */
.badge {
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 30px;
  background: linear-gradient(to right, #ffffff, #e0e0e0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: inline-block;
  transition: all 0.3s ease;
}

.badge:hover {
  background-color: #f7f7f7;
  transform: scale(1.05);
  color: #00509e;
}

/* Responsive Grid Fix */
@media (max-width: 768px) {
  .row.g-3 .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .row.g-3 .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .badge {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
}

/* Section spacing */
section.container.py-5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Title underline effect */
h5.text-primary::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #0d6efd;
  margin: 6px auto 20px auto;
  border-radius: 2px;
}
/* Step Box Styling */
.step-box {
  background-color: #ffffff;
  border-left: 4px solid #0d6efd;
  transition: all 0.3s ease;
}

.step-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Section Heading */
h2.text-primary {
  font-size: 2rem;
  font-weight: 700;
}


.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: radial-gradient(circle at 25% 30%, #28a745, #1d7e37);
  color: white;
  font-size: 22px;
  font-weight: bold;
  padding: 16px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-call:hover {
  background-color: #218838;
  transform: scale(1.1);
}

/* Owl eye style */
.sticky-call::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 10px;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  box-shadow: 25px 0 white;
  opacity: 0.15;
  pointer-events: none;
}

.sticky-call i {
  font-size: 20px;
  z-index: 1;
}

/* Show only on smaller screens if needed */
@media (min-width: 1024px) {
  .sticky-call {
    display: block;
  }
}

.offer-strip {
  background-color: #ffc107; /* Yellow like warning */
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

.scrolling-text span {
  display: inline-block;
  font-weight: bold;
  font-size: 1rem;
  color: #000;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive font size */
@media (max-width: 768px) {
  .scrolling-text span {
    font-size: 0.95rem;
  }
}

footer {
  background-color: #222;
  color: #ccc;
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem 1rem;
}

footer a {
  color: #ffc107;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
