

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
   font-family: "Poppins", sans-serif;
}
/* Top Bar */
.top-bar {
  background: #004062;
  color: white;
  font-size: 14px;
  padding: 6px 0;
}
.btn-theme{
  background-color: #004062;
  color: #fff
}
.btn-theme:hover{
  background-color:  #66AC4C;
  color: #fff;
}
.top-bar a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
}
.top-bar a:hover {
  text-decoration: underline;
}

/* Navbar */
.main-navbar {
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.main-navbar .nav-link {
  color: #004062;
  padding: 10px 15px;
  text-decoration: none !important;
}
.bannerbtn a{
  background-color:#004062;
  color: #fff;
}
.main-navbar a:hover {
  color: #65ac4c;
}

.bannerbtn a:hover{
  background-color: #65ac4c;
  color: #fff;
}
.bannerhead h1{
  font-weight: 700;
  color: #000;
}
.bannerhead i{
  color: #66ac54;
}
/* Mega Menu Style */
.mega-menu {
  width: max-content;
  min-width: 500px;
  padding: 20px;
  top: 100%;
  left: 0;
  right: auto;
  border-top: 2px solid #000;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  display: none;
  position: absolute;
}

/* Menu items */
.mega-menu .dropdown-item {
  color: #000;
  padding: 6px 10px;
  font-size: 15px;
  white-space: normal;
}
.mega-menu .dropdown-item:hover {
  background: #f8f9fa;
  color: #000;
}

/* Desktop: show on hover */
@media (min-width: 992px) {
  .mega-dropdown {
    position: relative;
  }

  .mega-dropdown:hover .mega-menu {
    display: block;
  }

  .mega-dropdown > .nav-link::after {
    display: none;
  }
}

/* Mobile: dropdown works on click */
@media (max-width: 991px) {
  .mega-menu {
    position: static !important;
    display: none;
    box-shadow: none;
    border: none;
    padding: 10px;
  }

  .dropdown-menu.show {
    display: block !important;
  }
}

/* Global */
a {
  text-decoration: none !important;
}

@media (max-width: 991px) {
  .mega-menu.show {
    display: block !important;
  }
}
.cstmnav li a{
  font-weight: 700 !important;
}
.navbar .dropdown-menu {
    right: 0;
    left: auto;
}
.sticky-top {
  background: #fff; /* keeps background solid while scrolling */
  z-index: 1030; /* ensures navbar is above other content */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* subtle shadow */
}
.whatsapp-btn {
  display: inline-block;
  font-weight: bold;
  animation: pulseZoom 2s infinite; /* change to blinkZoom if you want blinking */
}

/* Zoom in & out */
@keyframes pulseZoom {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Blink effect */
@keyframes blinkZoom {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* Optional hover effect */
.whatsapp-btn:hover {
  animation: none; /* stop animation on hover */
  transform: scale(1.1);
}
/*BANNER */
.btn-white{
  background-color: #fff;
  font-weight: 500;
} 
.hero-banner {
  background-color: #004062;
}
.herocontent{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #c6c6c6;
    color: #000;
    padding: 20px;
}

.banner-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #004062;
}

.banner-left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #d1d5db;
}

.banner-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-link {
  background: #FF8D00;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 141, 0, 0.2);
}

.service-link:hover {
  background-color: #e07500;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 141, 0, 0.3);
}

.banner-img {
  max-height: 400px;
  animation: float 3s ease-in-out infinite;
}

/* Simple float animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .banner-left h1 {
    font-size: 2rem;
  }

  .banner-left p {
    font-size: 1rem;
  }

  .banner-img {
    max-height: 280px;
  }
}

/*BANNER */

/*SECTION TITLE*/
.section-title {
  text-align: center;
  overflow: hidden;
  margin-bottom: 1.3em;
}

.tag {
  text-transform: uppercase;
  position: relative;
  line-height: 2.5em;
  padding: 0 1em;
  font-weight: 700;
  display: inline-block;
}

/* Animated lines */
.tag:before,
.tag:after {
  content: "";
  height: 5px;
  width: 1000px;
  position: absolute;
  top: 47%;
  display: block;
  background: linear-gradient(90deg, transparent, #65AC4C, transparent);
  background-size: 200% auto;
  animation: moveLine 3s linear infinite;
}

.tag:before {
  left: -1000px;
}

.tag:after {
  right: -1000px;
}

@keyframes moveLine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/*SECTION TITLE*/
/*SERVICE*/
.sbox {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 200px;
  margin: 10px 0px;
  padding: 10px;
  overflow: hidden; /* important for the animation to stay inside box */
  border-radius: 10px;
  -webkit-box-shadow: -10px 17px 46px -25px rgba(0, 0, 0, 0.68);
  -moz-box-shadow: -10px 17px 46px -25px rgba(0, 0, 0, 0.68);
  box-shadow: -10px 17px 46px -25px rgba(0, 0, 0, 0.68);
}

/* black background overlay */
.sbox::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 1;
  transition: bottom 0.4s ease-in-out;
  border-radius: 10px;
}
.sbox:hover::before {
  bottom: 0; /* animate black from bottom to top */
}
.sbox img{
  max-height: 50px;
  margin-right: 10px;
}
.sbox a{
  color: #000;
  font-weight: 600;
}
.sbox img,
.sbox h4,
.sbox p,
.sbox a,
.sbox span {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease-in-out, filter 0.4s ease-in-out;
}
.sbox h4{
  font-size: 16px;
  color: #000;
  font-weight: bold;
  text-align: left;
}
.sbox p{
    font-size: 15px;
  color: #000;
  text-align: left;
}
.sbox:hover h4,
.sbox:hover p,
.sbox:hover span,
.sbox:hover a {
  color: white;
}
.sbox:hover{
  cursor: pointer;
}

/*SERVICE*/

/*HOW IT WORK*/
/*-- Counter --*/
.counter-area {
  background-image: url("../img/counter-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.counter-area .card-overlay:before {
  border-top: 135px solid #fff;
  border-right: 130px solid transparent;
  opacity: 0.2;
  z-index: 1;
  left: 15px;
}
.counter-area .card-overlay:after {
  border-bottom: 135px solid #fff;
  border-right: 130px solid transparent;
  opacity: 0.2;
  z-index: 1;
  left: 15px;
  top: -30px;
}

.counter-item {
  text-align: center;
  background-color: #004062;
  padding: 45px 30px 50px;
  position: relative;
}
.counter-item:before {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  border: 2px dotted #fff;
  transform: translateX(-50%) translateY(-50%);
}
.counter-item h3 {
  font-size: 50px;
  margin-bottom: 3px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.counter-item h3 .target {
  font-size: 40px;
  margin-left: -5px;
}
.counter-item p {
  margin-bottom: 0;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/*HOW IT WORK*/
.how-it-works {
    background: #f8f9fa;
    padding: 60px 0;
  }
  .step-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    margin-top: 10px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    z-index: 1;
  }
  .step-icon {
    width: 70px;
    height: 70px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin: 0 auto 15px;
  }
  .connector {
    position: absolute;
    top: 50%;
    right: -60px;
    width: 120px;
    height: 2px;
    border-top: 2px dotted #bbb;
    z-index: 0;
  }
  @media(max-width: 767px) {
    .connector {
      display: none;
    }
  }

  .legal-section {
    background: #fff;
    padding: 60px 0;
  }
  .service-box {
    background: #004062;
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    height: 100%;
  }
  .service-box:hover {
    background: #65AC4C;
    cursor: pointer;
    transform: translateY(-5px);
  }
  .service-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
  }
  .service-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .service-list li {
    margin-bottom: 8px;
    color: #fff;
  }
  .service-list li i {
    color: #fff;
    margin-right: 8px;
  }


/*Service Breadcrumb*/
  .service_breadcrumb{
    background-color: #004062;
    color: #fff;
    padding: 40px;
  }
  .cms_service_banner__stats {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 5px;
    border-radius: 50px;
    border-left: 6px solid var(--Orange-Orange-04,#fca229);
    background: var(--Neutral-White,#fff);
    gap: 10px
}

@media(max-width: 768px) {
    .cms_service_banner__stats {
        gap:20px
    }
}

.cms_service_banner__stat-item {
    background: var(--Neutral-White-Smoke,#f5f5f5)
}

.cms_service_banner__stat-item,.cms_service_banner__stat-item-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 6px 22px;
    min-width: 140px;
    border-radius: 77px
}

.cms_service_banner__stat-icon {
    width: 25px;
    height: 25px
}

.cms_service_banner__stat-number {
    font-size: 13px;
    font-weight: 400;
    color: #000
}

.cms_service_banner__stat-text {
    font-size: 13px;
    color: #666;
    font-weight: 400
}

.breadcrumb_form{
  background-color: #fff;
  padding:20px; 
  border-radius: 10px;z
}
.breadcrumb_form h4{
  color: #000;
  font-weight: 700;
  text-align: center;
}
.breadcrumb_form p{
  color: #000;
  text-align: center;
}

.breadcrumb_form form input{
  margin-top: 10px;
  border: 1px solid #000;
}
.ser_detail_image img{
  border-radius: 10px;
}


.service_tabs .nav {
  background-color: #f8f8f8;
  padding: 10px 20px;
  border-radius: 50px;
  align-items: center;
  font-weight: 500;
}

.service_tabs .nav-link{
  color: #666;
}
.service_tabs .nav-pills .nav-link.active, .service_tabs .nav-pills .show>.nav-link{
  background-color: #000 !important;
  color: #fff;
  border-radius: 40px;
}
.tab-sticky-form {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    top: 160px; /* adjust: header + nav height */
    z-index: 1000;
    background-color: #000 !important;
  }

  /*SWIPER SLIDER*/
   
    .smboxreg h3 {
      font-size: 16px;
      color: #000;
      font-weight: 600;
      margin-top: 10px
    }

    .service_breadcrumb ul li i {
        color: #65AC4C;
    }
    .service_breadcrumb ul li{
      line-height: 1.8;
    }

   .reg_box {
    height: 250px; /* fix same height for all */
    background-color: #66ac54;
    border: 2px solid #66ac54;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0px 10px 10px 0px #c6c6c6;

    display: flex;
    flex-direction: column;
    justify-content: space-between; /* space top to bottom */
    align-items: center;
}

.reg_box img {
    width: 60px;
    height: 60px;        /* all logos same size */
    object-fit: contain;  /* keep logo ratio */
    margin-bottom: 10px;
}

.reg_box h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0;
    color: #fff;
}
.reg_box p{
 color: #fff;
  font-size: 14px;
}

.reg_boxgreen{
  background: #66ac54 !important;
}
.bgblue{
  background: #004062;
}
.reg_box a.btn {
    margin-top: auto; /* push button to bottom */
}

.itbox {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
}
.how-it-works img {
    border-radius: 10px;
    height: 130px;
    object-fit: cover;
}
.itbox h4 {
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    font-weight: 700;
}
.itbox a {
  background-color: #004062;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  transition: 0.5s;
}
.itbox:hover a{
  background-color: #65AC4C;
  color: #fff;
}

.testimonial-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 20px;
      text-align: center;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }
    .testimonial-card img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 15px;
    }
    .testimonial-card h6 {
      margin: 0;
      font-weight: bold;
    }
    .testimonial-card small {
      color: gray;
    }
    .formhead{
      background-color: #004062;
      color: #fff;
      padding: 5px;
      border-radius: 10px;
      text-align: center;
    }