body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: #333; /* Neutral gray for text */
  background-color: #F4F5F7; /* Light gray for a modern background */
}

.search-container{
    display: none;
}

.hero {
  background: #002E5D; /* Deep blue for a strong header */
  color: #FFFFFF; /* White text for high contrast */
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #FFD93D; /* Warm yellow for a standout effect */
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #FF6F00; /* Vibrant orange for calls to action */
  color: #FFFFFF;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
  margin-top: 20px;
  text-align: center;
}

.btn:hover {
  background: #E65100; /* Slightly darker orange on hover */
}

.container {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 20px;
    text-align: center;
}
header .container{padding:0px;}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.features div {
  background: #FFFFFF; /* Clean white cards */
  border-left: 5px solid #1E88E5; /* Bright blue accent */
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.features div:hover {
  transform: scale(1.03);
  border-left: 5px solid #FFC107; /* Accent yellow on hover */
  
}

.features div img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

footer {
  background: #1E3A5F; /* Dark blue for footer */
  color: #FFFFFF; /* White text for contrast */
  text-align: center;
  padding: 40px 20px;
}

.darker {
  background: #000; /* Dark blue for footer */
  
}

footer a {
  color: #FFC107; /* Bright yellow for links */
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

.hero1 {
  padding: 20px;
  background-color: #F9FAFB; /* Subtle light gray for sections */
  text-align: left;
  width: calc(100% - 40px);
}

.hero1 img {
  max-width: 25%; /* Responsive image */
  height: auto;
}

@media only screen and (max-width: 768px) {
  .hero1 img {
    max-width: 75%; /* Responsive image */
    height: auto;
  }
}

.heroTwo{
  width: calc(100% - 40px);
  background: #1976D2; /* Calm blue background */
  text-align: left;
  padding: 20px;
}

.advantages{
  width: calc(100% - 40px);
  background: #FFFFFF; /* Calm blue background */
  text-align: left;
  padding: 20px;
}

.heroTwo h2 {
  color: #FFFFFF; /* White text for contrast */
}
.herTwo a:link, a:visited{ color:#FFF;}

.heroOne {
  width: calc(100% - 40px);
  
  text-align: left;
  padding: 20px;
}

.heroOne h2 {
  color: #000; /* White text for contrast */
}

input, textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #BDBDBD; /* Neutral gray border */
  border-radius: 4px;
  font-size: 1em;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
  color: #1A73E8; /* Light blue for headings */
  border-bottom: 3px solid #FFD93D; /* Yellow accent */
  display: inline-block;
  padding-bottom: 5px;
}

button a{color: white;}

.h2Invert {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
  color: #FFFFFF; /* White for inverted themes */
  border-bottom: 3px solid #FFD93D; /* Yellow accent */
  display: inline-block;
  padding-bottom: 5px;
}

.btnBar .btn, .btnBar .btnButton {
  background: #42A5F5; /* Bright blue for buttons */
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  text-decoration: none;
}

.btnBar .btn:hover, .btnBar .btnButton:hover {
  background: #1E88E5; /* Darker blue for hover */
}

form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #FFFFFF; /* Clean white background */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.currency {
    font-weight: lighter;
    font-size: 50%;
    
}

.badge {
    position: absolute;
    top: 10px; /* Move it slightly above the div */
    left: 50%;
    transform: translateX(-50%);
    background-color: #f39c12; /* Bright color for the badge */
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 3px;
    z-index: 1; /* Ensure it appears above other elements */
    display: block; /* Ensure it is visible at all times */
    
}

@media only screen and (max-width: 768px) {
  .badge {
    
    top: 90px; /* Move it slightly above the div */
    
}

}

.popular{
    background: #2E91E0 !important;
    color:white;
    position: relative;
    
}

.footer a.active,
.footer a[aria-current="page"] {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Optional: subtle pill highlight */
.footer a.active {
  background: rgba(0,115,230,0.12);
  border-radius: 6px;
  padding: 2px 6px;
}

