    body {
      font-family: 'Poppins', sans-serif;
    }

    body.no-scroll {
        overflow: hidden;
        height: 100vh;
    }

    html {
           scroll-behavior: smooth;
        }

    .top-bar {
      background: #1c4a92;
      color: #fff;
      font-size: 14px;
      padding: 5px 0;
    }

    .navbar {
      background: #0c2b5a;
    }

    .navbar-brand {
      color: #ffc107 !important;
      font-weight: 700;
      font-size: 22px;
    }

    .nav-link {
      color: #fff !important;
      margin-left: 15px;
    }

    .hero {
      background: #0c2b5a;
      color: #fff;
      padding: 70px 0;
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 700;
    }

    .highlight {
      color: #ffc107;
    }

    .hero p {
      margin-top: 20px;
      color: #cfd8dc;
    }

   /* ===============================
   BASE BUTTON STYLE
================================= */
.btn-yellow,
.btn-outline-light {
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* ===============================
   YELLOW BUTTON (PRIMARY)
================================= */
.btn-yellow {
  background: linear-gradient(135deg, #ffc107, #ffb300);
  border: none;
  color: #000;
}

.btn-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 193, 7, 0.4);
  background: linear-gradient(135deg, #ffca2c, #ffb300);
}

/* ===============================
   OUTLINE BUTTON
================================= */
.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.3);
}

/* ===============================
   PREMIUM HOVER SHINE EFFECT
================================= */
.btn-yellow::before,
.btn-outline-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transition: 0.5s;
}

.btn-yellow:hover::before,
.btn-outline-light:hover::before {
  left: 120%;
}

/* ===============================
   BUTTON GROUP (DESKTOP)
================================= */
.hero-buttons {
  display: flex;
  gap: 15px;
}


    .btn-outline-light {
      padding: 12px 25px;
      border-radius: 8px;
    }

    .hero-img {
      position: relative;
    }

    .hero-img img {
      border-radius: 15px;
      width: 100%;
    }

    .badge-box {
      position: absolute;
        background: #fff;
        color: #000;
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 14px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        animation: float 3s ease-in-out infinite;
  }

    .rating {
      top: 15px;
      right: 20px;
    }

    /* Tablet View */
@media (max-width: 992px) {
    .rating {
        top: 5px;
        right: 15px;
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .rating {
        top: 8px;
        right: 10px;
    }
}

    .customers {
      bottom: 20px;
      left: 20px;
    }

    .contact-btn {
      background: #ffc107;
      border-radius: 20px;
      padding: 5px 15px;
      font-size: 14px;
      font-weight: 600;
    }
    .trust-section {
  background: #163a70;
}

.icon-box {
  width: 60px;
  height: 60px;
  border: 2px solid #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 26px;
}
.training-slider .carousel-item {
  height: 500px;
}

.training-slider .carousel-item img {
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.training-slider .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 43, 90, 0.7);
}

/* Caption styling */
.custom-caption {
  position: absolute;
  /* left: 10%; */
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
}

.custom-caption h2 {
  font-size: 48px;
  font-weight: 700;
}

.custom-caption p {
  font-size: 18px;
  margin-top: 10px;
}

/* Indicators */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #ffc107;
}

/* Arrows */
.custom-arrow {
  background-color: rgba(255,255,255,0.3);
  border-radius: 50%;
  padding: 20px;
}
.benefits-section {
  background: #0c2b5a;
}

.benefit-card {
  background: #163a70;
  padding: 30px 20px;
  border-radius: 15px;
  color: #fff;
  transition: 0.3s;
  height: 100%;
}

.benefit-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ffc107;
}

.benefit-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #cfd8dc;
}

/* Hover Effect */
.benefit-card:hover {
  transform: translateY(-10px);
  background: #1c4a92;
}
.why-lic {
  background: #0c2b5a;
}

.why-img img {
  width: 100%;
  border-radius: 20px;
  filter: grayscale(100%);
}

/* List Styling */
.why-list li {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-list span {
  color: #ffc107;
  font-weight: bold;
  font-size: 18px;
}

/* Button */
.why-lic .btn-warning {
  border-radius: 10px;
}
.plans-section {
  padding: 40px 0;
  background: url('assets/images/Core\ Values.webp') center/cover no-repeat;
  position: relative;
}

/* Overlay */
.plans-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 43, 90, 0.85);
}

/* Content above overlay */
.plans-section .container {
  position: relative;
  z-index: 2;
}

/* Cards */
.plan-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 20px;
  border-radius: 15px;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: 0.3s;
  height: 100%;
}

.plan-card .icon {
  font-size: 40px;
  color: #ffc107;
  margin-bottom: 15px;
}

.plan-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-card p {
  font-size: 14px;
  color: #ddd;
}

/* Hover Effect */
.plan-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
}
.offer-section {
  background: #0c2b5a;
}

/* Icon Circle */
.icon-box {
  width: 90px;
  height: 90px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 35px;
  color: #0c2b5a;
}

/* Text */
.offer-box {
    background: rgba(255, 255, 255, 0.05); /* transparent */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* glass effect */
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover Effect (Premium Feel) */
.offer-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.offer-box h5 {
  color: #fff;
  font-weight: 600;
}

.offer-box p {
  color: #cfd8dc;
  font-size: 14px;
  margin-top: 10px;
  padding: 0 10px;
}

/* Hover Effect */
.offer-box:hover .icon-box {
  transform: scale(1.1);
  transition: 0.3s;
}
.testimonials-section {
  background: #0c2b5a;
}

/* Card */
.testimonial-card {
  background: #163a70;
  padding: 25px;
  border-radius: 15px;
  color: #fff;
  transition: 0.3s;
  height: 100%;
}

/* Stars */
.stars {
  color: #ffc107;
  font-size: 18px;
}

/* Text */
.testimonial-card p {
  color: #cfd8dc;
  font-size: 14px;
}

/* Name */
.testimonial-card h6 {
  font-weight: 600;
}

/* Small text */
.testimonial-card small {
  color: #ffc107;
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-10px);
  background: #1c4a92;
}
.women-section {
  background: #0c2b5a;
}

/* Images */
.women-img {
  border-radius: 20px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* List */
.women-list li {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.women-list span {
  color: #ffc107;
  font-weight: bold;
  font-size: 18px;
}
.contact-section {
  background: #0a2342;
}

/* Card */
/* Contact Card */
.contact-card {
  background: #123160;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-card h6{
 text-align: center;
 color: #fff;
}

/* Form Group */
.form-group {
  position: relative;
}

/* Input */
.custom-input {
  width: 100%;
  padding: 16px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

/* Focus Effect */
.custom-input:focus {
  border-color: #ffc107;
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.4);
}

/* Label */
.form-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  color: #aaa;
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s ease;
  background: #123160;
  padding: 0 6px;
}

/* Floating Label */
.custom-input:focus + label,
.custom-input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #ffc107;
}

/* Button */
.btn-yellow {
  background: #ffc107;
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s ease;
}

.btn-yellow:hover {
  background: #ffca2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

/* Button */
.btn-warning {
  border-radius: 10px;
  font-size: 16px;
}
/* CTA Section */
.cta-section {
  background: #123160;
}

/* Footer */
.footer-section {
  background: #0c2b5a;
}

.footer-section a {
  color: #cfd8dc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

/* Tablet View */
@media (max-width: 992px) {
    .footer-section p {
        text-align: center;
        align-items: center;
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .footer-section p {
       align-items: center;
        font-size: 14px;
        line-height: 1.6;
    }
}

.footer-section a:hover {
  color: #ffc107;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #163a70;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ffc107;
  color: #000;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}


/* custom css */
/* PREMIUM IMAGE CARD DESIGN */

.premium-card {
  background: #163a70;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  padding: 0; /* IMPORTANT: remove padding */
}

/* Image wrapper */
.plan-img {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Image */
.plan-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block; /* removes tiny white gap */
}

/* Content only gets padding */
.plan-content {
  padding: 20px;
}

.plan-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-content p {
  font-size: 14px;
  color: #cfd8dc;
}

.plan-content a {
  color: #ffc107;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s;
}

/* Hover Effects (MAIN PART 🔥) */
.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Image Zoom Effect */
.premium-card:hover img {
  transform: scale(1.1);
}

/* Link Animation */
.plan-content a:hover {
  letter-spacing: 1px;
}


/* all media query */
/* ===============================
   TABLET (≤ 992px)
================================= */
@media (max-width: 992px) {

  /* Hero */
  .hero {
    text-align: center;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero .d-flex {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Hero Image */
  .hero-img img {
    margin-top: 30px;
  }

  /* Trust Section */
  .trust-section .row {
    text-align: center;
  }

  /* Slider */
  .custom-caption h2 {
    font-size: 32px;
  }

  .custom-caption p {
    font-size: 15px;
  }

  /* Benefits */
  .benefit-card {
    padding: 25px;
  }

  /* Why LIC */
  .why-lic {
    text-align: center;
  }

  .why-img img {
    margin-bottom: 20px;
  }

  /* Plans */
  .plan-img img {
    height: 180px;
  }

  /* Offer */
  .offer-box {
    text-align: center;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px;
  }

  /* Women Section */
  .women-section {
    text-align: center;
  }

  /* Contact */
  .contact-card {
    padding: 30px;
  }

}


/* ===============================
   MOBILE (≤ 576px)
================================= */
@media (max-width: 576px) {

  /* Top Bar */
  .top-bar .container {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  /* Navbar */
  .navbar-brand {
    font-size: 18px;
  }

  .nav-link {
    margin-left: 0;
    text-align: center;
    padding: 10px 0;
  }

  /* Hero */
  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.4;
  }

  .hero p {
    font-size: 14px;
  }

  .btn-yellow,
  .btn-outline-light {
    width: 100%;
    text-align: center;
  }

  /* Badges */
  .badge-box {
    font-size: 12px;
    padding: 8px;
  }

  .rating {
    top: 10px;
    right: 10px;
  }

  .customers {
    bottom: 10px;
    left: 10px;
  }

  /* Slider */
  .training-slider .carousel-item {
    height: 350px;
  }

  /* .custom-caption {
    left: 5%;
  } */

  .custom-caption h2 {
    font-size: 22px;
  }

  .custom-caption p {
    font-size: 13px;
  }

  /* Benefits */
  .benefit-card {
    padding: 20px;
  }

  .benefit-card h5 {
    font-size: 16px;
  }

  .benefit-card p {
    font-size: 13px;
  }

  /* Why LIC */
  .why-list li {
    font-size: 14px;
  }

  /* Plans */
  .plans-section {
    padding: 40px 15px;
  }

  .plan-img img {
    height: 160px;
  }

  .plan-content {
    padding: 15px;
  }

  .plan-content h5 {
    font-size: 16px;
  }

  .plan-content p {
    font-size: 13px;
  }

  /* Offer */
  .icon-box {
    width: 70px;
    height: 70px;
    font-size: 25px;
  }

  .offer-box h5 {
    font-size: 16px;
  }

  .offer-box p {
    font-size: 13px;
  }

  /* Testimonials */
  .testimonial-card p {
    font-size: 13px;
  }

  /* Women Section */
  .women-img {
    height: 180px;
  }

  .women-list li {
    font-size: 14px;
  }

  /* Contact */
  .contact-card {
    padding: 20px;
  }

  .custom-input {
    font-size: 14px;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 22px;
  }

  .cta-section p {
    font-size: 14px;
  }

  /* Footer */
  .footer-section {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

}

/* equal cards */
/* Make all columns equal height */
.plans-section .row {
    display: flex;
    flex-wrap: wrap;
}

/* Make each column behave properly */
.plans-section .col-lg-3,
.plans-section .col-md-6 {
    display: flex;
}

/* Make card full height */
.plan-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* Make content stretch properly */
.plan-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* ===============================
   TABLET (≤ 992px)
================================= */
@media (max-width: 992px) {

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn-yellow,
  .btn-outline-light {
    padding: 10px 20px;
    font-size: 14px;
  }

}


/* ===============================
   MOBILE (≤ 576px)
================================= */
@media (max-width: 576px) {

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn-yellow,
  .btn-outline-light {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 15px;
  }

}

/*  */
/* ===============================
   TABLET (≤ 992px)
================================= */
@media (max-width: 992px) {

  .trust-section .row {
    justify-content: center;
    text-align: center;
  }

  .trust-section .col-lg-4 {
    justify-content: center;
  }

  .trust-section .icon-box {
    margin-bottom: 10px;
  }

}


/* ===============================
   MOBILE (≤ 576px)
================================= */
@media (max-width: 576px) {

  .trust-section {
    padding: 40px 15px;
  }

  .trust-section .row {
    text-align: center;
  }

  .trust-section .col-lg-4 {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .trust-section h5 {
    font-size: 16px;
  }

  .trust-section small {
    font-size: 13px;
  }

  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

}


/* ===============================
   TABLET ONLY (768px – 992px)
================================= */
@media (min-width: 768px) and (max-width: 992px) {

  /* Force 2 cards per row */
  .offer-section .col-lg-4 {
    width: 50%;
  }

  /* Center the last (3rd) card */
  .offer-section .col-lg-4:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
  }

}

/* ===============================
   TABLET ONLY (768px – 992px)
================================= */
/* ===============================
   TABLET ONLY (768px – 992px)
================================= */
@media (min-width: 768px) and (max-width: 992px) {

  /* Layout: 2 + 1 centered */
  .testimonials-section .col-lg-4 {
    width: 50%;
  }

  .testimonials-section .col-lg-4:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
  }

  /* Center ALL content inside card */
  .testimonial-card {
    text-align: center !important;
    padding: 25px;
  }

  /* Center stars */
  .testimonial-card .stars {
    justify-content: center;
    display: flex;
  }

}

/* ===============================
   TABLET + MOBILE (≤ 992px)
================================= */
@media (max-width: 992px) {

  .why-list {
    display: inline-block;   /* allows centering block */
    text-align: left;        /* keeps text left aligned */
    margin: 0 auto;          /* centers the whole list */
  }

  /* Optional: better spacing */
  .why-list li {
    margin-bottom: 8px;
    font-size: 14px;
  }

}

/* ===============================
   TABLET ONLY (768px – 992px)
================================= */
/* ===============================
   TABLET ONLY (768px – 992px)
================================= */
@media (min-width: 768px) and (max-width: 992px) {

  /* Make right content full width */
  .why-lic .col-lg-6 {
    width: 100%;
    text-align: center;
  }

  /* Center the list block */
  .why-lic .why-list {
    display: inline-block;
    text-align: left;
    margin: 0 auto 15px;
  }

  /* Force button below list */
  .why-lic .btn-yellow {
    display: block;
    width: fit-content;
    margin: 15px auto 0;
  }

}

/* ===============================
   TABLET ONLY (768px – 992px)
================================= */
@media (min-width: 768px) and (max-width: 992px) {

  .women-list {
    display: inline-block;   /* allows centering */
    text-align: left;        /* keeps text aligned left */
    margin: 0 auto;          /* centers the whole list */
  }

  /* Better spacing */
  .women-list li {
    margin-bottom: 8px;
    font-size: 14px;
  }

}

/* ===============================
   TABLET ONLY (768px – 992px)
================================= */
@media (min-width: 768px) and (max-width: 992px) {

  .footer-section {
    text-align: center;
  }

  /* Stack columns nicely */
  .footer-row {
    justify-content: center;
  }

  .footer-col {
    margin-bottom: 25px;
  }

  /* Make columns full width */
  .footer-about,
  .footer-contact,
  .footer-links {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Center text */
  .footer-text {
    text-align: center;
  }

  /* Center headings */
  .footer-heading,
  .footer-title {
    text-align: center;
  }

  /* Contact items center */
  .footer-contact-item {
    justify-content: center;
    text-align: center;
  }

  /* Social icons center */
  .social-icons {
    justify-content: center;
  }

  /* Quick links center */
  .footer-list {
    padding-left: 0;
    text-align: center;
  }

  .footer-list li {
    margin-bottom: 8px;
  }

  /* Bottom text spacing */
  .footer-bottom {
    margin-top: 20px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .contact-card {
    padding: 30px;
    border-radius: 16px;
  }

  .custom-input {
    padding: 14px 10px;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-card {
    padding: 20px;
    border-radius: 14px;
  }

  .custom-input {
    padding: 12px 10px;
    font-size: 13px;
  }

  .form-group label {
    font-size: 13px;
  }
}


/* popup form css */
/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  /* display: none; */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

/* Active */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Card */
.popup-card {
  background: #123160;
  width: 100%;
  max-width: 500px;
  padding: 35px;
  border-radius: 20px;
  position: relative;
  transform: translateY(-30px);
  transition: 0.4s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.popup-card h6{
    text-align: center;
    color: #fff;

}

.popup-overlay.active .popup-card {
  transform: translateY(0);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hover Effect */
.close-btn:hover {
  background: #ffc107;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(255,193,7,0.4);
}

/* Form Styles */
.form-group {
  position: relative;
}

.custom-input {
  width: 100%;
  padding: 14px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.custom-input:focus {
  border-color: #ffc107;
  box-shadow: 0 0 10px rgba(255,193,7,0.4);
}

/* Floating Label */
.form-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
  background: #123160;
  padding: 0 5px;
}

.custom-input:focus + label,
.custom-input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #ffc107;
}

/* Button */
.btn-yellow {
  background: #ffc107;
  border: none;
  color: #000;
  border-radius: 10px;
  transition: 0.3s;
}

.btn-yellow:hover {
  background: #ffca2c;
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 992px) {
  .popup-card {
    max-width: 90%;
    padding: 25px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .popup-card {
    max-width: 95%;
    padding: 20px;
    border-radius: 15px;
  }

  .row .col-6 {
    width: 100%;
  }

  .close-btn {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }

}
/* top bar */

.contact-link {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-link:hover {
  color: #ffc107;
  text-decoration: underline;
}

/* footer */
.footer-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* prevents breaking */
    font-size: 14px;
}

.dev-link {
    color: #ED388F !important;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.dev-link:hover {
    color: #ffff !important;
}



/*  */
.footer-col {
    margin-bottom: 20px;
}

.footer-title {
    font-weight: 700;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-text {
    color: #ccc;
    line-height: 1.6;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
}

.footer-contact-item a {
    color: #ccc;
    text-decoration: none;
    margin-top: 7px;
}

.footer-contact-item a:hover {
    color: #ffc107;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-list li {
    margin-bottom: 6px;
}

.footer-list a {
    color: #ccc;
    text-decoration: none;
}

.footer-list a:hover {
    color: #ffc107;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* tab view */
@media (max-width: 992px) {

    /* Center whole column */
    .footer-contact {
        text-align: center;
    }

    /* Center address text */
    .footer-contact .footer-text {
        text-align: center;
    }

    /* IMPORTANT: center email & phone perfectly */
    .footer-contact-item {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        text-align: center;
    }

    /* Center headings */
    .footer-heading {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .footer-contact-item {
        width: 100%;
        justify-content: center !important;
    }
}


/* recapcha css */
#captchaQuestion {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
}

.form-check-input {
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    margin-left: 5px;
}

/* Show proper number input UI */
.number-input {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
}

/* Optional: make arrows more visible */
.number-input::-webkit-inner-spin-button,
.number-input::-webkit-outer-spin-button {
    opacity: 1;
    cursor: pointer;
}

/* 22-04-26*/
/* additional fields */
/* ===============================
   SELECT FIELD FIX (Dropdown Styling)
================================= */
.custom-input select,
select.custom-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

/* Dropdown arrow styling */
select.custom-input {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23ffc107' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 7l4.5 5 4.5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 35px;
}

/* Fix label for select (important for floating effect) */
select.custom-input:focus + label,
select.custom-input:not([value=""]) + label {
  top: -8px;
  font-size: 12px;
  color: #ffc107;
}

/* Make option background dark (important for your theme) */
select.custom-input option {
  background: #123160;
  color: #fff;
}