/* For font size and justify content */
p {
  font-size: 18px;
  text-align: justify;
}

ul {
  font-size: 18px;
  text-align: justify;
}

ol {
  font-size: 18px;
  text-align: justify;
}

.accordion-button {
  font-size: 20px;
}

/* For AEPS facility sectioin */
@media only screen and (min-device-width: 320px) and (max-device-width: 600px) {

  .aeps-card1 {
    height: 325px;
  }

  .aadhar-atm-card {
    height: 315px;
  }

  .courier-service-card {
    height: 280px;
  }
  .solar-service-card {
    height: 220px;
  }

  .utility-bill-card {
    height: 285px;
  }

  .insurance-agent-card {
    height: 250px;
  }

  .irctc-card {
    height: 290px;
  }

  .footer-img {
    width: 70%;
  }

  .heading-h2 {
    font-size: 32px;
  }

  .centered {
    position: absolute;
    top: 70%;
    left: 10%;
    transform: translate(-5%, -30%);
    /* 10 20*/
  }

  .form-slider-img {
    width: 100%;
  }

}

@media only screen and (min-device-width: 600px) and (max-device-width: 1440px) {

  .aeps-card1 {
    height: 380px;
  }

  .aadhar-atm-card {
    height: 385px;
  }

  .courier-service-card {
    height: 305px;
  }
  .solar-service-card {
    height: 250px;
  }

  .utility-bill-card {
    height: 345px;
  }

  .insurance-agent-card {
    height: 310px;
  }

  .irctc-card {
    height: 300px;
  }

  .footer-img {
    width: 100%;
  }

  .heading-h2 {
    font-size: 40px;
  }

  .centered {
    position: absolute;
    top: 60%;
    left: 40%;
    transform: translate(-50%, -50%);
  }

  .form-slider-img {
    width: 70%;
  }
}

@media only screen and (min-device-width: 1400px) and (max-device-width: 2560px) {
  .footer-img {
    width: 100%;
  }

  .centered {
    position: absolute;
    top: 60%;
    left: 40%;
    transform: translate(-50%, -50%);
  }
}

/* same height & width for mobile and desktop devices */
.top-pan-card-services {
  height: 300px;
}

.micro-atm-card {
  height: 330px;
}

.money-transfer-card {
  height: 300px;
}

.banking-card {
  height: 300px;
}

.dth-recharge-card {
  height: 312px;
}

.money-transfer-play-icon {
  position: absolute;
  /* top: 45%; */
  left: 30%;
  bottom: 0%;

}

.irctc-play-icon {
  position: absolute;
  top: 41%;
  left: 38%;
}

.service-navmenu-heading {
  text-align: center;
  justify-content: center;
}

/* About us page slider timeline css  */

.timeline {
  width: 100%;
  height: 480px;
  padding: 20px;
  position: relative;
  box-sizing: border-box;
  overflow: auto;
  display: flex;
  overflow-y: hidden;
  /* Hide vertical scrollbar */
  overflow-x: hidden;
  /* Hide horizontal scrollbar */
}

.timeline-content {
  max-width: 400px;
  height: 208px;
  padding: 10px;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
  background: #FFF;
  position: relative;
  border-radius: 20px;
  margin-right: 10px;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.timeline-content:before {
  position: absolute;
  width: calc(100% + 14px);
  height: 4px;
  top: calc(100% + 10px);
  background: #153cd7;
  content: "";
  left: -7px;
  border-radius: 5px;
}

.timeline-content:after {
  position: absolute;
  width: 4px;
  height: 25px;
  top: 100%;
  left: calc(50% - 10px);
  background: #153cd7;
  content: "";
}

.timeline-period {
  position: absolute;
  top: calc(100% + 25px);
  background: #153cd7;
  padding: 10px;
  width: 100px;
  text-align: center;
  border-radius: 10px;
  left: calc(50% - 60px);
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.timeline-period:before {
  width: 15px;
  height: 15px;
  background: #153cd7;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: -20px;
  left: calc(50% - 6px);
  z-index: 2;
}

.timeline-content:nth-child(even) {
  align-self: flex-end;
}

.timeline-content:nth-child(even):before {
  top: -15px;
}

.timeline-content:nth-child(even):after {
  top: -25px;
}

.timeline-content:nth-child(even) .timeline-period {
  top: -75px;
}

.timeline-content:nth-child(even) .timeline-period:before {
  top: calc(100% + 2px);
}

        /* for captch style  */
        /* For Chrome, Edge, and Safari */
        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        /* For Firefox */
        input[type="number"] {
            -moz-appearance: textfield;
        }

/* Notification Bar Start */
/* Notification Bar - Independence Day Theme */
.notification-bar {
  position: fixed; /* stays above header */
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    180deg, 
    #FF9933 0%,   /* Saffron */
    #fff5e6 40%,  /* Light off-white */
    #138808 100%  /* Green */
  );
  color: #000; /* Black text for better contrast */
  padding: 10px 12px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 99999; /* ensure above header */
  animation: slideDown 0.4s ease-out;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Text */
.notification-text {
  flex: 1;
  text-align: center;
}

/* CTA Button */
.notification-cta {
  background: #FF9933;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.notification-cta:hover {
  background: #138808;
}

/* Close Button */
.notification-close {
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

/* Animation */
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .notification-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: fixed; /* stays above header */
    padding: 16px 12px 10px; /* extra space for close button */
  }

  .notification-close {
    position: absolute;
    top: 8px;
    right: 10px;
  }
}

/* Notification Bar END */