

#logo-main {
  width: 60%;
  height: auto;
}

/* *** CAROUSEL STYLES *** */

/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

/* body {
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: #5a5a5a;
} */


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */

.carousel-item {
  height: 75vh; /* adjust to 75vh or 90vh depending on preference */
  min-height: 400px;
  position: relative;
}

.carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center; */
  object-position: top center;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.15)
  );
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
}

.benefit-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

/* FEATURETTE IMAGE STYLE */

.featurette-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: .5rem;
}

/* HOVER SCALE CARD IMAGE EFFECT */

.tool-card-img-wrapper {
  overflow: hidden;
  border-radius: .5rem .5rem 0 0; /* round top corners to match card */
}

.tool-card-img {
  width: 100%;
  height: auto;
  /* height: 225px; */
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Hover zoom (desktop) */
/* .tool-card-img-wrapper:hover .tool-card-img {
  transform: scale(1.05);
} */

form .form-control {
  border-radius: .4rem;
  padding: .6rem .75rem;
}
form button {
  padding: .75rem;
  font-size: 1rem;
  letter-spacing: .3px;
}

.footer-form-card {
  max-width: 420px;         /* keeps it from feeling massive on wide screens */
  margin-left: auto;        /* aligns the card nicely on the right in its column */
}

footer .form-control-sm {
  border-radius: .4rem;
}

footer a { opacity: 0.9; }
footer a:hover { opacity: 1; }

#pricing {

    background: radial-gradient(circle at top left, #2563eb 0%, #0f172a 50%, #020617 100%);
}

/* NEWSLETTER SIGNUP FORM */

.newsletter-inline {
  border: 1px solid #e5e7eb;
}

.newsletter-inline-form .form-control {
  border-radius: 999px;
}

.newsletter-inline-form .btn {
  border-radius: 999px;
}

/* NAVBAR CSS MODERN */

.navbar-modern {
  background: linear-gradient(90deg, #0a0f1c 0%, #0f172a 50%, #1e293b 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.btn-ghost {
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.28);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  transition: 0.2s;
}

.btn-ghost-blue {
  /* color: #e2e8f0; */
  color: #e2e8f0;
  /* border: 1px solid rgba(226, 232, 240, 0.28); */
  border: 1px solid #2563eb;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  transition: 0.2s;
}

.btn-ghost:hover, .btn-ghost-blue:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.nav-link {
  color: #cbd5e1 !important;
  margin-right: 1rem;
  position: relative;
  padding-bottom: .5rem;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3b82f6;
  border-radius: 2px;
}

.navbar-brand img {
  height: 48px;
  margin-right: 8px;
}

/* .navbar {
  padding-top: .7rem;
  padding-bottom: .7rem;
} */

/* HOME PAGE 3-BENEFITS SECTION */

/* Gradient icon circles */
.icon-gradient {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  /* or your exact RPL gradient: */
  /* background: linear-gradient(135deg, #0f172a, #1e3a8a); */
  color: #fff;
  font-size: 42px;
  margin: 0 auto 1rem auto;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25),
              0 4px 10px rgba(59, 130, 246, 0.15);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

/* Hover animation */
.icon-gradient:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.35),
              0 6px 16px rgba(59, 130, 246, 0.2);
}

/* BUTTON GRADIENT */


.btn-gradient {
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  color: #fff !important;
  padding: 0.6rem 1.25rem;
  border-radius: 999px; /* full pill */
  border: none;
  font-weight: 600;
  box-shadow: 0 3px 15px rgba(30, 58, 138, 0.25);
  transition: all 0.25s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.35);
  opacity: 0.95;
}

.btn-gradient:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.25);
}

/* BUTTON GRADIENT OUTLINE VARIANT */

.btn-gradient-outline {
  background: transparent;
  color: #1e3a8a !important;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  border: 2px solid #3b82f6;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-gradient-outline:hover {
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  color: #fff !important;
  border-color: transparent;
}

/* FOOTER CSS */

.footer-rpl {
  background-color: #0f1116; /* deep, modern dark */
  color: #e5e7eb;
  border-top: none !important;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-support-box {
  background: #1a1d24;
  /* border: 1px solid rgba(255,255,255,0.05); */
  border: 1px solid #3b82f6;
}

.footer-support-box .form-control {
  /* background: #21252f; */
  background: #f1f5f9;
  /* border: 1px solid #2a2d33; */
  border: 1px solid #3b82f6;
  color: #21252f;
  /* color: #f1f5f9; */
}

.footer-support-box .form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6;
}
