/* ================= HEADER ================= */

/* Navbar base */
.rigel-navbar {
  background: #ffffff;
  padding: 2px 0;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  position:sticky;
  top:0;
  z-index:999;
}

/* Logo */
.logo {
  height: 75px;
}

/* Center nav spacing */
.rigel-center-nav {
  gap: 28px;
}

.rigel-center-nav .nav-link {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

/* Right side */
.rigel-right-nav {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 18px;
}

.login-link {
  color: #000;
  font-weight: 400;
  text-decoration: none;
}

/* CTA */
.get-started-btn {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 400;
  background-color: #112C4E;
  padding: 10px 27px;
  color: #fff;
  border-radius: 10px;
}
.get-started-btn:hover {
  background-color: #112C4E;
  color: #fff;
}

/* Mobile */
@media (max-width: 991px) {
  .rigel-center-nav {
    margin-top: 15px;
    text-align: center;
  }

  .rigel-right-nav {
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
.carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1320px; /* Same as container */
  padding: 0 15px;   /* Same as container padding */
  justify-content: flex-start;
}

/* ================= HERO SLIDER SECTION ================= */
/* ================= HERO SLIDER ================= */

.hero-slider,
#heroCarousel,
.carousel-inner,
.carousel-item,
.hero-slide {
  height: 100vh;
}

.hero-slide {
  background-image: url("images/Rectangle.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Content positioning */
.hero-content {
  position: absolute;
  top: 50%;
  /* left: 8%; */
  transform: translateY(-50%);
  max-width: 720px;
  color: #000;
}
.hero-content {
  left: 0;
  right: 0;
}

.hero-slide .hero-content {
  max-width: 1320px;   /* Bootstrap container width */
  margin: 0 auto;
  padding: 0 15px;
}


.hero-content h1 {
  font-family: "Poppins";
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

/* Buttons */
.hero-buttons {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 400;
  margin-top: 30px;
  display: flex;
  gap: 15px;
}
.hero-buttons a {
  padding: 10px 27px;
  border-radius: 10px;
}
.demo {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 400;
  background-color: #e72428;
  border-color: #e72428;
}
/* Indicators */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ffffff;
  align-items: left !important;
  opacity: 1;
}

.btn.btn-danger.demo{
  color: #fff !important;
  background-color: #CDA349 !important;
  border-color: #CDA349 !important;
}
.btn.btn-outline-light{
border:2px solid #000 !important;
color: #000;
}
.carousel-indicators .active {
  background-color: #CDA349;
  border-color: #CDA349;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider,
  #heroCarousel,
  .carousel-inner,
  .carousel-item,
  .hero-slide {
    height: 75vh;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}
/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.about-title {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

.about-section p {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
  margin-bottom: 15px;
}

/* Highlight text + arrow */
.about-highlight {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: #CDA349;
}

.about-highlight img {
  height: 73px;
}
.about-section a {
  padding: 15px 30px;
  border-radius: 10px;
}

/* Right image */
.about-image {
  max-width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .about-section {
    padding: 70px 0;
    text-align: center;
  }

  .about-highlight {
    justify-content: center;
  }

  .about-image {
    margin-top: 40px;
  }
}
/* ================= FEATURES SECTION ================= */

.features-section {
  background-color: #FFFCF3;
}

/* Left image */
/*.features-image {
  padding: 0;
}*/

/*.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/

.features-image {
  padding: 0;
  display: flex;
}
.row.align-items-bottom{
  align-items: end !important;

}

.features-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* Right content */
.features-content {
  padding: 80px 70px;
}

.features-content h2 {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

/* Features list */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.feature-icon {
  width: 26px; /* adjust to your image size */
  height: auto;
  margin-top: 6px; /* aligns arrow with heading */
  flex-shrink: 0;
}

.features-list h5 {
  font-family: "Poppins";
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.features-list p {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  margin: 0;
  color: #000;
}

/* Responsive */
/* Responsive */
@media (max-width: 991px) {
  .features-content {
    padding: 60px 30px;
  }
  .features-content h2 {
    text-align: center;
  }
  
  /* Remove the justify-content: center */
  .features-list li {
    justify-content: flex-start; /* Changed from center */
    max-width: 600px; /* Optional: limit width for better readability */
    margin-left: auto; /* Center the list items while keeping arrows aligned */
    margin-right: auto;
  }
  
  .features-list div {
    text-align: left;
  }
}
/* ================= PAYMENT FEATURES GRID ================= */

.payment-features {
  padding: 90px 0;
  background-color: #ffffff;
}

.section-title {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 700;
  text-align: center;

  margin-bottom: 50px;
  color: #000;
}

/* Card */
.feature-card {
  border: 2px solid #CDA349;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  background-color: #fff;
}

.feature-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/* Icon */
.feature-card img {
  width: 50px;
  margin-bottom: 18px;
}

/* Title */
.feature-card h5 {
  font-family: "Poppins";
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

/* Text */
.feature-card p {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .payment-features {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
    .features-content h2 {
        text-align: center;
        font-size: 35px;
    }
}
/* ================= CTA SECTION ================= */
/* ================= CTA SECTION ================= */

.cta-section {
  position: relative;
  /*background-color: #e72428; /* Red base */
  background-image: url(images/Rectangle65.png);
  padding: 80px 0;
  overflow: hidden;
}

/* Blue arrow placed ON red background */
.cta-arrow {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  z-index: 1;
}

/* Content stays above arrow */
.cta-content {
  position: relative;
  z-index: 2;
  /*max-width: 1000px;*/
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.cta-content h2 {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 28px;
  opacity: 0.95;
}

/* Button */
.cta-btn {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 700;
  padding: 10px 30px;
  border-width: 2px;
  border-radius: 10px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .cta-section {
    padding: 55px 20px;
  }

  .cta-arrow {
    display: none; /* hides arrow on small screens */
  }

  .cta-content h2 {
    font-size: 24px;
  }
}
/* ================= CALLBACK SECTION ================= */

.callback-section {
  background-color: #FFFCF3;
  /* padding: 90px 0; */
}

/* Title */
.callback-title {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.callback-subtitle {
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 30px;
  margin-bottom: 30px;
}

/* Form */
.callback-form input,
.callback-form textarea {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.callback-form input::placeholder,
.callback-form textarea::placeholder {
  color: #000;
}
.callback-form input:focus,
.callback-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 86, 210, 0.15);
}

/* Button */
.callback-form button {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  margin-top: 10px;
  padding: 10px 28px;
  border-color: #112C4E;
  border-radius: 10px;
}
.callback-form button:hover {
  background-color: #112C4E;
}
/* Image */
.callback-image {
  max-width: 100%;
}

.request {
  background-color: #112C4E;

}
/* Responsive */
@media (max-width: 991px) {
  .callback-section {
    /* padding: 60px 0; */
    padding-top:60px ;
  }

  .callback-image {
    margin-top: 40px;
  }
}
/* Callback section */
.callback-section {
  background-color: #FFFCF3;
  position: relative;
}

/* Image column */
.callback-image-col {
  display: flex;
  align-items: flex-end; /* PUSH IMAGE TO BOTTOM */
  justify-content: center;
}

/* Boy image */
.callback-image {
  max-width: 100%;
  height: auto;
  display: block;
}
/* ================= FOOTER ================= */

.site-footer {
  background-color: #112C4E;
  color: #ffffff;
  padding-top: 70px;
  font-size: 14px;
}

/* Brand */
.footer-logo {
  height: 81px;
  margin-bottom: 15px;
}

.footer-brand p {
    font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  max-width: 300px;
  line-height: 30px;
  margin-bottom: 20px;
}

/* Social icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  padding: 10px;
}

.footer-social img {
  
  width: 15px;
}
.footer-social a:hover {
  opacity: 0.8;
}
.footer-social a {
  border: 2px solid #fff;   /* white border, adjust color as needed */
  border-radius: 50%;       /* makes the border perfectly round */

  box-sizing: border-box;   /* ensures padding doesn’t break layout */
}

/* Links */
.footer-links h6,
.footer-contact h6 {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 700;
    margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
    font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
/*  opacity: 0.9;*/
}

.footer-links a:hover {
  opacity: 0.9;
}
.site-footer .row {
  row-gap: 40px;
}

@media (min-width: 992px) {
  .site-footer .row {
    column-gap: 0; /* Bootstrap already handles spacing */
  }
}

/* Contact */
.footer-contact p {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-contact img {
  width: 18px;
  margin-top: 3px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding: 15px 0;
}

.footer-bottom-wrap {
      font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-policy a {
  color: #ffffff;
  margin-left: 15px;
  text-decoration: none;
  opacity: 0.9;
}

.footer-policy a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom-wrap {
    text-align: center;
    gap: 10px;
  }

  .footer-policy {
    width: 100%;
  }
  .footer-links h6{
    margin-top: 18px;
  }
}
