/* ===== SUBMENU STYLING ===== */

.main-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;

}

/* Parent li */
.main-menu nav ul li.has-megamenu-child {
  position: relative;
}

/* Parent link */
.main-menu nav ul li.has-megamenu-child>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect on parent */
.main-menu nav ul li.has-megamenu-child>a:hover {
  color: #0056d2;
}

/* Submenu container */
.main-menu nav ul li.has-megamenu-child .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 12px 0;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: block !important;
  /* Always block */
  flex-direction: column !important;
  /* In case flex applied */
}

/* Show on hover */
.main-menu nav ul li.has-megamenu-child:hover>.dropdown-menu,
.main-menu nav ul li.has-megamenu-child:focus-within>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Submenu items */
.main-menu nav ul li.has-megamenu-child .dropdown-menu li {
  list-style: none;
}

/* Submenu links */
.main-menu nav ul li.has-megamenu-child .dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

/* Hover effect on submenu links */
.main-menu nav ul li.has-megamenu-child .dropdown-menu li a:hover {
  background: #f5f9ff;
  color: #0056d2;
  border-left: 3px solid #0056d2;
  padding-left: 21px;
}

/* Advance hover animation (slide underline) */
.main-menu nav ul li.has-megamenu-child .dropdown-menu li a {
  position: relative;
}

.main-menu nav ul li.has-megamenu-child .dropdown-menu li a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 18px;
  width: 0;
  height: 2px;
  background: #0056d2;
  transition: width 0.3s ease;
}

.main-menu nav ul li.has-megamenu-child .dropdown-menu li a:hover::after {
  width: calc(100% - 36px);
}




/* swiper slider start */
/* How We Help Section */
.custom-padding {
  padding: 100px 0px;
}

.custom-padding-bg {
  background: #f9faff;
}

.how-we-help__item {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.how-we-help__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.how-we-help__item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.how-we-help__item span {
  display: block;
  font-size: 14px;
  color: #3C72FC;
  margin-bottom: 10px;
}

.how-we-help__item p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Swiper Pagination Dots */
.how-we-help__dot {
  margin-top: 20px;
}

.how-we-help__dot .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.how-we-help__dot .swiper-pagination-bullet-active {
  background: #3C72FC;
  transform: scale(1.2);
}

/* Responsive Fixes */
@media (max-width: 767px) {
  .how-we-help__item {
    padding: 20px;
    text-align: center;
  }
}

/* swiper slider end */

/* why choose us */
.why-choose-us {
  border: 2px solid green;
}

.choose-item {
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 2px rgba(237, 131, 22, 0.9);
  border-radius: 10px;
  height: 100%;
  transition: all 0.2s ease;
}

.choose-item:hover {
  box-shadow: 0 0 6px rgba(237, 131, 22, 0.8)
}

.help-card {
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 2px rgba(237, 131, 22, 0.9);
  border-radius: 10px;
  height: 270px;
  transition: all 0.2s ease;
  /* display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column; */
  margin: 5px;
}

.help-card:hover {
  box-shadow: 0 0 6px rgba(237, 131, 22, 0.8)
}

.help-icon i {
  color: #ffc107;
  font-size: 40px;
}






/* index page */
.gov-hero {
  background: #f5840c;
  color: var(--paper);
  position: relative;
  isolation: isolate;
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, .08);
  padding: 80px 0px 0px;
}


.gov-hero__content {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 14px;
  backdrop-filter: blur(2px);
  color: #fff;
}

.gov-hero__title {
  margin: 0 0 .4rem 0;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.7;
}

.gov-hero__subtitle {
  margin: .25rem 0 1rem 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: .95;
}

.gov-hero__highlights {
  display: grid;
  gap: .35rem;
  margin: 0 0 1rem 1.1rem;
}

.gov-hero__highlights li {
  list-style: "▸ ";
  padding-left: .25rem;
}

.gov-hero__ministry span {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.gov-hero__topband {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 1rem;
  background: rgba(0, 0, 0, .12);
  font-size: .9rem;
  line-height: 1.2;
  margin-top: 15px;
}

.choose-icon i {
  color: #ffc107;
  font-size: 40px;
}



/* mission and vision start */
.mission-vision-section {
  background-color: #f9f9f9;
  padding: 80px 0px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.mission-card,
.vision-card {
  border: none;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.mission-card .icon i {
  color: #007bff;
}

.vision-card .icon i {
  color: #28a745;
}


.skip-link {
  color: #0B3D91;
  text-decoration: underline;
}

.topbar {
  /* background: #0B3D91; */
  color: #fff;
  font-size: .95rem;
  display: block !important;
  width: 100%;
  background: #f8f9fa;
  border-bottom: 1px solid #ddd;
  padding: 6px 15px;
  position: relative;
  z-index: 1000;
}

.topbar .topbar-child {
  display: flex;
  color: #fff;
  justify-content: center;
  /* width: 100%; */
}

.topbar .topbar-left {
  margin-right: 10px;
}

.topbar .topbar-right {
  margin-left: 10px;
}


.skip-links {
  /* display: flex; */
  text-align: center;
}

.skip-link {
  padding: 0px 15px;
  color: #0B3D91;
  font-weight: 600;
}

.disclaimer-bar {
  background-color: #0B3D91;
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .top-bar-parent {
    display: none;
  }
}

/* top header bar end */


.top-parent-banner {
  display: block;
  background-image: url('../images/banner/onlinealert-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 485px;
  /* Desktop / Large screens */
  margin-top: 157px;
}

.top-parent-banner-small-device {
  display: none;
}


/* Small Mobile (≤480px) */
/* @media (max-width: 1024px) {
  .top-parent-banner {
    display: none;
  }

  .top-parent-banner-small-device {
    display: block;
    background-image: url('../images/banner/onlinealert-banner-small-device.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 390px;
    margin-top: 140px;
  }
} */




/* Tablets (768px – 1024px) */
@media (max-width: 1024px) {
  .top-parent-banner {
    display: none;
  }

  .top-parent-banner-small-device {
    background-image: url('../images/banner/onlinealert-banner-small-device.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    height: 1000px;
    margin-top: 120px;
  }
}

/* Mobiles (≤767px) */
@media (max-width: 767px) {
  .top-parent-banner-small-device {
    background-image: url('../images/banner/onlinealert-banner-small-device.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 550px;
    margin-top: 90px;

  }
}

/* Small mobiles (≤480px) */
@media (max-width: 480px) {
  .top-parent-banner-small-device {
    background-image: url('../images/banner/onlinealert-banner-small-device.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 428px;
    margin-top: 70px;
  }
}





/* services page start */
/* ===== Banner Clone Styling ===== */
.govt-vision-banner {
  background: #ffc107;
  /* padding: 40px 40px; */
  padding: 50px 0px;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-top: 150px;
}

@media (max-width: 480px) {
  .govt-vision-banner {
    margin-top: 70px;
  }
}

/* Left Content */

.vision-left-child {
  padding: 40px 0px;
}

@media (max-width: 480px) {
  .vision-left-child {
    padding: 0px;
  }
}

@media (max-width: 480px) {
  .vision-left {
    padding-bottom: 80px;
  }
}

.vision-left h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 15px;
}

.vision-left h2 span {
  color: #0B3D91;
}

.vision-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  margin-bottom: 30px;
}

.tab-buttons button {
  background: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 20px;
  font-weight: bold;
  color: #333;
  transition: all 0.3s ease;
}

.tab-buttons .active {
  background: #005baa;
  color: #fff;
}

/* Stats Section */
.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-box img {
  width: 40px;
  height: 40px;
}

.stat-box h3 {
  font-size: 22px;
  margin: 0;
  font-weight: bold;
  color: #222;
}

.stat-box p {
  font-size: 15px;
  margin: 0;
  color: #333;
}

/* Right Image */
.vision-right {
  flex: 1;
  min-width: 300px;
  text-align: right;
  position: relative;
  z-index: 2;
}

.vision-right img {
  width: 100%;
  max-width: 450px;
  /* border-top-left-radius: 50% 30%;
    border-bottom-left-radius: 50% 30%; */
  /* border-top-right-radius: 0;
    border-bottom-right-radius: 0; */
  position: relative;
  z-index: 2;
}

/* Animated Background Shape */
.check-rotate {
  position: relative;
  /* right:150px;
    bottom: 250px; */
  z-index: 1;
  animation: fadeInRight 1.5s ease-in-out 0.2s both;
}

.animation__rotate {
  animation: spin 20s linear infinite;
  opacity: 0.15;
}

/* Rotation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Fade-in Right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* services page end */



/* why choose us start */
/* ===== Onboarding Steps ===== */
.onboarding-steps {
  background-color: #f9faff;
  overflow: visible;
  padding: 60px 0;
}

.onboarding-title {
  font-size: 28px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 40px;
  text-align: center;
}

.onboarding-title span {
  color: #f4a300;
}


.steps-line {
  position: absolute;
  top: 40px;
  left: 8%;
  width: 0%;
  height: 2px;
  border-top: 2px dashed #bbb;
  z-index: 0;
  transition: width 2s linear;
}

.steps-wrapper.active .steps-line {
  width: 84%;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0;
  transform: translateX(10px) translateY(10px);
  transition: transform 0.6s cubic-bezier(.2, .8, .2, 1), opacity 0.6s;
}

.step.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* circle */
.step-circle {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  line-height: 54px;
  border: 3px solid #ccc;
  background: #fff;
}

.step-circle.green {
  border-color: #28a745;
  color: #28a745;
}

.step-circle.orange {
  border-color: #f4a300;
  color: #f4a300;
}

.step-circle.blue {
  border-color: #007bff;
  color: #007bff;
}

.step-circle.purple {
  border-color: #6f42c1;
  color: #6f42c1;
}

/* card */
.step-card {
  padding: 20px;
  border-radius: 8px;
  margin-top: 8px;
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 18px rgba(10, 20, 40, 0.03);
}

.step-card h4 {
  padding: 10px 0px;
}

.green-card {
  background: #d7f9d8;
}

.orange-card {
  background: #ffefcf;
}

.blue-card {
  background: #d9ecff;
}

.purple-card {
  background: #efe1ff;
}

.step-card h5 {
  font-size: 18px;
  color: #003366;
  margin-bottom: 8px;
  font-weight: 700;
}

.step-card p {
  font-size: 14px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {

  .steps-line {
    display: none;
  }

  .step {
    width: 100%;
    margin-bottom: 24px;
    transform: none;
    transition: none;
    opacity: 1;
  }
}

/* why choose us end */
.loopAnim {
  animation-iteration-count: 3;
  /* ya 'infinite' for endless */
}

/* safety-guidelines */

.safety-guidelines ul li {
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 4px;
  box-shadow: 0px 2px 0px rgba(196, 196, 196, 0.5);
}



.offer__item__second {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #0b3d91;
  padding: 10px;
  padding-top: 0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
  height: 350px;
  clip-path: polygon(80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
      /* clip-path: polygon(84% 0, 100% 40%, 100% 100%, 0 100%, 0 0); */
}

.offer__item__second .shape-top {
  position: absolute;
  top: 50%;
  right: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.offer__item__second .shape-bottom {
  position: absolute;
  bottom: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.offer__item__second h4 {
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0px;
  color: #fff;
}

.offer__item__second p {
  color: #fff;
}

.offer__item__second .choose-icon {
  padding: 30px 0px 10px 0px;
}

.offer__item__second .choose-icon i {
  color: #ffc107;
  font-size: 50px;
}


@media (max-width: 991px) {
  .offer__item__second {
    margin-top: 30px;
    height: 280px;
  }
}

@media only screen and (max-width: 768px) {
  .offer__item__second h4 {
    line-height: initial;
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .offer__item__second {
    margin-top: 0px;
  }
}


.float {
    position: fixed;
    padding: 12px 15px;
    bottom: 95px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    border: 3px solid #fff;
}