/* =============================
   🌐 Base Typography & Layout
============================= */
body {
  width: 100%;
  height: auto;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 300;
  background-color: lightblue;
  color: darkblue;
}

strong { text-transform: capitalize; }

p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
  text-align: center;
}
p strong, p b {
  color: #007bff;
  font-weight: bold;
}
p a {
  color: #007bff;
  text-decoration: none;
}
p a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  text-align: center;
}
h1 { color: white; }
h2, h3 { color: #007BFF; }
u { color: black; }

/* ==========================
   🔷 Header Area
========================== */
.header_area {
  background: linear-gradient(to right, #ff8c00, #e52e71);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px;
  height: 50px;
  color: white;
  font-size: 20px;
}
.navbar-brand img {
  height: 40px;
  width: auto;
}
@media (max-width: 768px) {
  .header_area {
    flex-direction: column;
    padding: 6px 10px;
    height: auto;
    text-align: center;
  }
  .navbar-brand img {
    width: 150px;
  }
  .container.box_1620 {
    max-width: 100%;
    padding: 10px;
  }
}

/* ==========================
   🖼️ Banner & Effects
========================== */
.home__banner {
  background-image: url('frontend/img/droptaxi/index2.jpg');
  background-size: cover;
  background-position: top center;
  padding: 0;
}
.banner_inner {
  background-color: rgba(0, 25, 47, 0.58);
  position: relative;
}
label { color: #fff; }

.animated-text {
  overflow: hidden;
  white-space: nowrap;
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
  animation: scroll 10s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* =============================
   📦 Buttons & Image Effects
============================= */
.button {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
.button:hover {
  background: linear-gradient(to right, #00c6ff, #007bff);
}
.image-effect {
  transition: transform 0.3s ease-in-out;
}
.image-effect:hover {
  transform: scale(1.1);
}

/* ==========================
   📄 Forms & Login Styling
========================== */
#logreg-forms {
  width: 412px;
  margin: 10vh auto;
  background-color: #ffffff4d;
}
#logreg-forms form {
  max-width: 410px;
  padding: 15px;
  margin: auto;
}
#logreg-forms .form-control {
  padding: 10px;
  font-size: 16px;
}
#logreg-forms .form-signin input[type="email"],
#logreg-forms .form-signin input[type="password"] {
  border-radius: 0;
}
#logreg-forms a {
  display: block;
  padding-top: 10px;
  color: #fff;
}
.submit {
  background: linear-gradient(to right, #2dfbff, #3c96ff);
  border-radius: 25px;
  color: white;
}

/* ==========================
   📃 List & Card Styling
========================== */
.viewimg {
  border-radius: 6px;
  background: #eb152e;
  padding: 9px 10px 7px 10px;
  margin-left: 30px;
  color: #fff;
}
.card-body-border {
  border: 1px solid #cdcdcd;
}
.inner_container {
  margin-left: 10px;
}
.summary {
  width: 97%;
}
.list {
  margin-top: 25px;
}

/* ==========================
   📚 Blog Pagination
========================== */
.pagination {
  margin-left: 58% !important;
  padding-left: 0;
  list-style: none;
}
.pagination li {
  display: inline-block;
  margin: 3px;
}
.pagination li a {
  background: #ece5e4;
  border-radius: 3px;
  color: #242424;
  display: inline-block;
  padding: 9px 6px;
  text-align: center;
}
.pagination li.pager_selected_li a {
  background-color: #e02c2b;
  color: #fff;
}
.pagination li.pager_first a,
.pagination li.pager_last a {
  background-color: #5A6268;
  color: #fff;
}
.pagination li.pager_next a,
.pagination li.pager_previous a {
  background-color: #E59703;
  color: #fff;
}

/* ==========================
   💬 Live Chat Icon
========================== */
#livechat_box {
  bottom: 25px;
  right: 30px;
  z-index: 999;
  position: fixed;
}
#livechat_box a {
  height: 48px;
  width: 48px;
  display: inline-block;
  border-radius: 50%;
  background: url(../img/chat.png) no-repeat center #4cb849;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
#livechat_box a:hover {
  background-color: #399837;
}
#livechat_box a::before,
#livechat_box a::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius: 50%;
  border: 1px solid #63dc60;
}
#livechat_box a::before {
  animation: ripple 1.8s linear infinite;
}
#livechat_box a::after {
  animation: ripple 1.8s linear 1s infinite;
}
@keyframes ripple {
  0% { transform: scale(1); }
  75% { transform: scale(1.75); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* ==========================
   🧱 Blog Content Section
========================== */
.blog-body {
  flex: 1 1 auto;
  padding: 15px !important;
  font-size: 14px;
  font-weight: 700;
}
.blog_description {
  font-weight: normal;
}
.side-body {
  flex: 1 1 auto;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 700;
}
