/* Global styles */
body {
  font-family: "Inter", "Poppins", sans-serif;
  background-color: #ffffff;
}

/* Navbar */
.navbar {
  border-bottom: 1px solid #f1f1f1;
}

.nav-link {
  color: #000;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

/* Hover and active link styles */
.nav-link:hover {
  color: #0066B3;
}

.nav-link.active {
  color: #0066B3 !important;
  position: relative;
}

/* Optional: underline indicator for active link */
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #0066B3;
  border-radius: 4px;
}
/* Primary color overrides */
.text-primary {
  color: #0066B3 !important;
}

.btn-primary {
  background-color: #0066B3 !important;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
  background-color: #004f8a !important;
}

/* Hero section */
.hero-section {
  background-color: #f8fafc;
}

.hero-section h1 {
  font-size: 2rem;
  line-height: 1.4;
}

.hero-img {
  max-width: 90%;
}

/* Responsive tweaks */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 2.3rem;
  }
}


/* Ticker Bar */
.ticker-bar {
  background-color: #0066B3;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-bar .container {
  animation: scroll-left 30s linear infinite; /* slower (was 15s) */
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ticker-bar .badge {
  font-size: 0.75rem;
  padding: 0.4em 0.6em;
}

.ticker-bar span {
  font-size: 0.9rem;
}


.features-section {
  background-color: #f8fafc;
  border-radius: 12px;
}

.tab-buttons {
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px 8px 0 0;
}

.tab-btn i {
  font-size: 1.1rem;
}

.tab-btn.active {
  background-color: #0066B3;
  color: #fff;
}

.tab-btn:hover {
  background-color: #e9f4ff;
  color: #0066B3;
}

.tab-content {
  display: none;
  background: #fff;
  padding: 25px 30px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tab-content.active {
  display: block;
}

ul.list-unstyled li {
  margin-bottom: 10px;
  font-size: 1rem;
}
















































.footer {
  background-color: #0066B3;
  font-size: 16px;
  color: #FFFFFF;
  width: 100%;
  position: static; /* default: normal flow */
  bottom: auto;
  border-top: 1px solid #0066B3;
}

/* On larger screens (e.g., desktops 768px and above) → fixed footer */
@media (min-width: 768px) {
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

.footer a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding: 10px 0;
}

.footer-content {
  gap: 10px;
}

@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .powered-by {
    justify-content: center;
    margin-top: 5px;
  }
}





.why-choose {
  background-color: #fff;
	margin-bottom: 80px;
}

.why-choose h2 {
  color: #0066B3; /* primary color */
}

.feature-icon {
  width: 50px;
  height: 50px;
}

.why-choose p {
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-icon {
    width: 40px;
    height: 40px;
  }
}





/* How It Works Section Styling */
.how-it-works-hero {
  background-color: #ffffff;
}

/* Process Flow Container */
.process-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

/* Individual Step Styling */
.process-step {
  flex: 1 1 150px;
  min-width: 120px;
  margin: 10px 5px;
}

/* Icon Styling */
.process-icon-full {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto 5px;
  object-fit: contain;
}

/* Arrow Styling */
.process-arrow {
  color: #0066B3;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}

/* ✅ Keep all in one line for 1024px and above */
@media (max-width: 1024px) {
  .process-flow {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .process-step {
    flex: 1 1 auto;
    margin: 5px;
  }

  .process-icon-full {
    width: 65px;
    height: 65px;
  }

  .process-arrow {
    font-size: 1.6rem;
    flex: 0 0 25px;
  }
}

/* ✅ For medium screens (743px – 1024px): stay in one line */
@media (max-width: 900px) {
  .process-flow {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-step {
    flex: 1 1 25%;
    margin: 10px;
  }

  .process-arrow {
    font-size: 1.5rem;
  }
}

/* ✅ For smaller screens (up to 742px): 2–3 lines layout + visible arrows */
@media (max-width: 742px) {
  .process-flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 10px;
  }

  .process-step {
    flex: 1 1 30%; /* allows 2–3 per row depending on screen width */
    margin: 10px 5px;
  }

  .process-icon-full {
    width: 60px;
    height: 60px;
  }

  .process-step p {
    font-size: 0.85rem;
  }

  .process-arrow {
    font-size: 1.4rem;
    flex: 0 0 20px;
  }
}






/* Step-by-Step Details Section Styling */
.process-details-section {
    background-color: #f8fafc; /* Light background for contrast */
}

.process-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden; /* To contain the header radius */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.process-card-header {
    background-color: #0066B3; /* Your primary blue color */
    color: #fff;
    padding: 15px 20px;
}

.process-card-header h5 {
    font-size: 1.15rem;
}

.process-card-header .small {
    font-size: 0.85rem;
    /* Custom light blue text color for the sub-heading */
    color: rgba(255, 255, 255, 0.75) !important;
}

/* NEW: Style for your custom image icons in card headers */
.process-card-icon {
    width: 40px;  /* Adjust size as needed for your icons */
    height: 40px; /* Adjust size as needed for your icons */
    object-fit: contain; /* Ensure the image scales properly */
}

/* List styling inside the card body */
.card-body ul {
    list-style: disc; /* Use a bullet point */
    padding-left: 20px;
    margin-bottom: 0;
}

.card-body ul li {
    font-size: 1rem;
    color: #555;
}







.cta-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.cta-section h2 {
  color: #0066B3;
  font-size: 2rem;
  font-weight: 700;
}

.cta-btn {
  background-color: #0066B3;
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #004f8a;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive text size */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.6rem;
  }
  .cta-btn {
    padding: 10px 30px;
    font-size: 0.95rem;
  }
}













/* Key Features Section Styling */
.key-features-section {
    background-color: #f8fafc; /* Light background for the section */
}

.feature-card {
    border: none; /* Remove default card border */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Soft shadow */
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px); /* Subtle lift effect on hover */
}

.feature-icon-lg {
    width: 100px; /* Adjust size for the large circular icons */
    height: 100px;
    object-fit: contain;
    display: block; /* Ensures margin auto works */
    margin: 0 auto 1.5rem; /* Center icon and add space below */
}

.feature-card h4 {
    color: #333; /* Darker text for headings */
    font-size: 1.3rem;
}

.feature-list {
    padding-left: 0; /* Remove default ul padding */
}

.feature-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px; /* Space between list items */
    line-height: 1.4;
    display: flex; /* Use flexbox for icon and text alignment */
    align-items: flex-start; /* Align icon to the top of the text */
}

.feature-list li i.bi-dot {
    font-size: 1.5rem; /* Size for the bullet dot icon */
    line-height: 1; /* Align vertically with text */
    color: #0066B3; /* Blue color for the bullet dot */
    flex-shrink: 0; /* Prevent icon from shrinking */
}










/* Contact */
.contact-modern input,
.contact-modern textarea {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  padding: 10px 14px;
}

.contact-modern input:focus,
.contact-modern textarea:focus {
  border-color: #0066B3;
  box-shadow: 0 0 0 0.15rem rgba(0,102,179,0.25);
}









