body{
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
}
/* ================================
   Special Offer Floating Popup
   ================================ */

.special-offer-float{
  position: fixed;
  right: 20px;
  top: 200px;                 /* sits below your navbar */
  width: 300px;
  background: #ffffff;
  border: 2px solid #0a66c2;
  border-radius: 16px;
  padding: 12px;
  z-index: 99999;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

/* Close (X) button */
.special-offer-close{
  position: absolute;
  top: 6px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 32px;
  background: #ffffff;
  color: #111;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  z-index: 2;
}

.special-offer-close:hover{
  background: #f2f2f2;
}

/* Offer card */
.special-offer-box{
  display: block;
  position: relative;
  background: linear-gradient(135deg, #0a66c2, #004182);
  color: #ffffff;
  padding: 22px 20px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.special-offer-box:hover{
  transform: scale(1.03);
  box-shadow: 0 14px 38px rgba(0,0,0,0.35);
}

/* Badge */
.special-offer-box .badge{
  display: inline-block;
  background: #ff3b3b;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Title */
.special-offer-box h3{
  font-size: 20px;
  margin: 10px 0;
}

/* Price */
.special-offer-box .price{
  font-size: 42px;
  font-weight: 800;
  color: #ffd400;
  margin: 10px 0;
}

/* Note */
.special-offer-box .note{
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* Call-to-action */
.special-offer-box .cta{
  display: inline-block;
  margin-top: 15px;
  background: #00c853;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
}
.page-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:30px;
  align-items:start;
}

@media (max-width: 992px){
  .page-layout{ grid-template-columns:1fr; }
  .special-offer-sidebar{ display:none; }
}

.nav-link {
    position: relative;
    padding: 0px !important;

  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f7c600; /* Yellow underline */
  }
section{
  padding: 100px 0;
}
  /* Hero */
  .hero-section {
    background: url('../images/hero-bg.png') no-repeat center center/cover;
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
  }

  .badge-custom {
    color: #fff;
    border: 2px solid #ffc107;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 18px;
  }

  .hero-heading {
    font-size: 45px;
    font-weight: 700;
    color: #ffd600;
}

.hero-subtext {
  font-size: 20px;
  color: #fff;
  max-width: 831px;
  margin: 0 auto 2rem;
  font-weight: 600;
}

  .hero-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    max-width: 250px;
    width: 100%;
    min-height: 58px;
  }
  /* Section 2 */
  .heading {
    font-size: 48px;
}
  .service-sec {
    background: url('../images/award-bg.png') no-repeat center center / cover;
}
  .fs-28 {
    font-size: 28px;
}
.custom-btn.btn {
    max-width: 250px;
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.list-item {
    display: flex;
    transition: .5s all;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    gap: 27px;
}
ul.list-item li a:hover{
  opacity: .8;
}
.small-container {
  max-width: 1100px;
  margin: auto;
}   
.hero-content a{
  margin:auto;
}
.custom-btn.btn:hover {
  background: #000;
  color: #fff;
  border-color: transparent;
}
  /* FAq */
  .accordion-button {
    border-radius: 12px;
    background-color: #fff;
    padding: 1.3rem 1.25rem;
    font-size: 1rem;
    transition: background 0.2s ease;
  }
  
  .accordion-item {
    border: 1px solid #ddd;
  }
  
  .accordion-button::after {
    content: '';
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: auto;
    background: url('../images/plus-icon.svg') no-repeat center center / auto;
    transition: transform 0.2s;
  }
  
  .accordion-button:not(.collapsed)::after {
    content: '';
    background: url('../images/minus-icon.svg') no-repeat center center / auto;
  }
  
  .accordion-body {
    font-size: 1rem;
    padding: 1.5rem 1.25rem;
    padding-top: 0.5rem;
}
.accordion-item >.accordion-header .accordion-button {
  border: 0;
  border-radius: 10px;
  font-size: 18px;
  background: transparent;
  box-shadow: none;
}
/*  testimonials */

.testimonial-sec{
  background-color: #F6F3E8;
}
.star-icon {
  font-size: 24px;
  color: #FF7F22;
  letter-spacing: 2px;
}
form .form-control-lg {
    padding: 1rem;
    font-size: 16px;
}
button.btn.submit-btn {
    background: #FACC15;
    min-height: 58px;
}
button.btn.submit-btn:hover{
  background: #000;
  color: #fff;
}

footer {
  background: #0F223E;
}
.footer-text {
  max-width: 885px;
  margin: 0 auto;
}
.footer-text p{
  font-size: 16px;
  font-weight: normal;
}
.careers-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 2em;
  font-family: Arial, sans-serif;
}

.careers-section h1,
.careers-section h2,
.careers-section h3 {
  color: #1a1a1a;
}

.job-opening {
  border-top: 1px solid #ccc;
  padding-top: 1.5em;
  margin-top: 1.5em;
}

.job-opening h3 {
  margin-bottom: 0.5em;
}

.job-opening ul {
  list-style-type: disc;
  margin-left: 1.5em;
}

@media only screen and (max-width: 767px){
  ul.navbar-nav {
    align-items: self-start !important;
}
li.nav-item
 {
    padding: 15px;
    width: 100%;
}
  section {
    padding: 50px 0;
}
  .heading {
    font-size: 32px;
}
.badge-custom {
  font-size: 14px;
}
.hero-subtext {
  font-size: 16px;
  font-weight: 500;
}
.hero-content{
    padding: 1rem;
}
.hero-heading {
  font-size: 30px;
}
.service-sec p,
.service-sec-2 p{
  text-align: center;
}
.custom-btn.btn {
    margin: 0 auto;
}
}
/* ================================
   Mobile Bottom Sticky Offer (FORCE OVERRIDE)
   ================================ */

@media (max-width: 992px){
  .special-offer-float{
    position: fixed !important;

    /* RESET desktop positioning */
    top: auto !important;
    right: auto !important;

    /* APPLY bottom bar positioning */
    bottom: 0 !important;
    left: 0 !important;

    width: 100% !important;
    max-width: none !important;

    border-radius: 16px 16px 0 0;
    padding: 10px 12px;

    box-shadow: 0 -12px 35px rgba(0,0,0,0.35);
    z-index: 99999;
  }

  .special-offer-box{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
  }

  .special-offer-box h3{
    font-size: 16px;
    margin: 0;
  }

  .special-offer-box .price{
    font-size: 26px;
    margin: 0;
  }

  .special-offer-box .badge,
  .special-offer-box .note{
    display: none;
  }

  .special-offer-box .cta{
    margin-left: auto;
    margin-top: 0;
    white-space: nowrap;
  }

  .special-offer-close{
    top: -10px;
    right: 10px;
  }
}
