@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
   --primary-blue: #19327c;
   --secondary-blue: #3b82f6;
   --accent-orange: #f97316;
   --light-bg: #f8fafc;
   --dark-text: #1e293b;
   --bs-primary: #0e1b53;
}
.bg-primary {
   background-color: var(--bs-primary) !important;
}
.btn-primary{
   background-color: var(--bs-primary) !important;
}
.btn-group{

}
.btn-secondary{
   background: #F3F5FF;
   color: #0E1B53;
   font-weight: 500;
}
.text-primary {
   color: var(--primary-blue) !important;
}
body {
   font-family: "Montserrat", sans-serif;
   /* background-color: var(--light-bg); */
   color: var(--dark-text);
   line-height: 1.6;
}
.main_heading {
   font-size: 2.18rem;
   color: #2e3a59;
   font-weight: 700;
}
.breadcrumb{padding-bottom: 10px;}
.breadcrumb .breadcrumb-item a{color:#ffff; text-decoration: none; font-weight: 600;}
.breadcrumb .breadcrumb-item.active{color:#D1D2D3}

.header_top {
   display: flex;
   background: #f4fff9;
   padding: 10px 10px;
}
.custom-center-logo {
   transform: translateY(20%);
   transform: translateX(-50%);
   margin-top: 48px;
   z-index: 10;
   background-color: #f4fff9;
   border-radius: 50%;
   /* height: 126px; */
   width: 160px;
   padding: 5px;
}

.service-card {
   transition: all 0.3s ease;
   border: 1px solid #dee2e6;
   height: 100%;
}

.service-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
   border-color: var(--secondary-blue);
}

.service-icon {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   margin: 0 auto 1rem;
}

.notification-badge {
   position: absolute;
   top: -8px;
   right: -8px;
   background: #dc3545;
   color: white;
   border-radius: 50%;
   width: 20px;
   height: 20px;
   font-size: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.language-selector {
   border: 1px solid #ced4da;
   padding: 0.5rem;
   border-radius: 0.375rem;
   background: white;
}

.marquee-container {
   overflow: hidden;
   background: #fffbeb;
   border: 1px solid #fef3c7;
}

.marquee-content {
   display: inline-block;
   white-space: nowrap;
   animation: marquee 20s linear infinite;
}

@keyframes marquee {
   0% {
      transform: translateX(100%);
   }
   100% {
      transform: translateX(-100%);
   }
}

.footer-pattern {
   /* background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%); */
   background-image: url("../images/footerbg.png");
   position: relative;
}

.footer-pattern::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgb(0 0 0 / 86%);
}

.nav-link-custom {
   color: #ffffff !important;
   font-weight: 400;
   transition: color 0.3s ease;
   font-size: 16px;
}

.nav-link-custom:hover {
   color: #fab401 !important;
}

.nav-link-custom.active {
   color: #fab401 !important;
   font-weight: 600;
}

.stat-number {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 0.5rem;
}

.news-card {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   height: 100%;
}

.news-card:hover {
   transform: translateY(-3px);
   box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.social-icon {
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.2);
   transition: background 0.3s ease;
}

.social-icon:hover {
   background: rgba(255, 255, 255, 0.3);
}

.hero-image {
   border-radius: 15px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.navbar .dropdown .dropdown-menu {
   display: none;
   margin-top: 0;
}

.navbar .dropdown:hover .dropdown-menu {
   display: block;
}

.navbar .dropdown .dropdown-menu {
   transition: display 0.3s ease;
}

.navbar .dropdown:hover > .nav-link {
   color: white !important;
}

/* 2. Section Styling */
.live-transactions-section {
    background-color: #ffffff;
    color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
/* Custom Background Colors */
.bg-accent-orange {
   background-color: #fd3e1c1a !important;
   border: 1px solid #dc3545;
}

.bg-light-card {
   background-color: #f4fff9 !important;
}

/* Text Styling */
.stat-label {
   font-size: 1rem;
   margin-bottom: 0.5rem;
   opacity: 0.8; /* Slightly less opaque */
}

.stat-value {
   font-size: 2.0rem;
   font-weight: 900;
   margin-bottom: 0;
   line-height: 1.2;
}

/* Card Text Colors */
.text-primary-blue {
   color: var(--primary-blue) !important;
}

.text-dark-text {
   color: var(--dark-text) !important;
}

.aboutus {
   background: #fafcff;
}
.bgcm {
   background: #f9f8f3;
}

.about-section {
   background: #ffffff;
}

.bg-vision {
   background-color: rgb(255 189 20 / 5%);
}
.bg-mission {
   background-color: rgb(131 131 131 / 5%);
}
.cm_name {
   font-size: 14px;
}
.text-dark-blue {
   color: #0e1b53;
}

.text-accent-orange {
   color: #fd3c1c;
}
.about-list li {
   margin-bottom: 5px;
}
.about-list li i {
   font-size: 12px;
}

/* Section Background */
.uidai-section {
   padding: 60px 20px;
   text-align: center;
   color: #fff;
   background: url("../images/services.png") no-repeat center top;
}

/* Container Card */
.uidai-section .container {
   background-color: #fff;
   border-radius: 20px;
   padding: 50px 30px;
   max-width: 1100px;
   margin: 0 auto;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   color: #000;
   position: relative;
   z-index: 2;
   background: #fff url("../images/bg_00001.png") no-repeat top;
   background-position-y: -162px;
}

.uidai-section h2 {
   font-size: 28px;
   font-weight: 700;
   margin-bottom: 5px;
}

.uidai-section p {
   color: #6c757d;
   margin-bottom: 40px;
}

/* Services Grid */
.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 20px;
}

/* Service Boxes */
.service-box {
   border-radius: 12px;
   padding: 25px 20px;
   text-align: left;
   transition: transform 0.3s ease;
}

.service-box:hover {
   transform: translateY(-4px);
}

/* Light Box */
.light-box {
   background-color: #f9f9f9;
}

/* Dark Blue Box */
.dark-box {
   background-color: #0b1a55;
   color: #fff;
}

.service-box h3 {
   font-size: 18px;
   margin-bottom: 15px;
   font-weight: 600;
}

.service-box ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.service-box ul li {
   padding: 10px 0;
   border-bottom: 1px solid rgba(0, 0, 0, 0.1);
   font-size: 15px;
   color: #333;
}

.dark-box ul li {
   border-bottom: 1px solid rgba(255, 255, 255, 0.2);
   color: #f8f9fa;
}

.service-box ul li:last-child {
   border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
   .uidai-section .container {
      padding: 40px 20px;
   }

   .uidai-section h2 {
      font-size: 22px;
   }

   .service-box {
      padding: 20px;
   }
}

.service-box ul li a {
   text-decoration: none;
   color: inherit;
   font-size: 0.95rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   transition: color 0.2s ease;
}

.service-box ul li a::after {
   content: "›";
   font-size: 1.2rem;
   opacity: 0.5;
}

.service-box ul li a:hover {
   color: #0a58ca;
}

.important-links {
   padding: 60px 20px;
   background-color: #fff;
   text-align: center;
}

.important-links h2 {
   font-size: 28px;
   font-weight: 700;
   color: #000;
   margin-bottom: 10px;
}

.important-links p {
   color: #555;
   font-size: 15px;
   max-width: 750px;
   margin: 0 auto 40px;
}

/* Flex container */
.links-flex {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
   margin-top: 30px;
}

/* Clickable card */
.link-card {
   flex: 1 1 calc(50% - 20px); /* 2 per row */
   display: flex;
   align-items: center;
   justify-content: space-between;
   text-decoration: none;
   background: #fff;
   border: 1px solid #eee;
   border-radius: 16px;
   padding: 18px 24px;
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
   min-width: 320px;
   max-width: 520px;
}

/* Hover effect */
.link-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

/* Icon box */
.icon-box {
   width: 60px;
   height: 60px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

/* Icon colors */
.icon-box.orange {
   background-color: #ffe8d3;
}
.icon-box.blue {
   background-color: #e3e9ff;
}
.icon-box.green {
   background-color: #e1fbe6;
}
.icon-box.mint {
   background-color: #ddfbf5;
}

/* Text */
.link-text {
   flex: 1;
   font-size: 1rem;
   font-weight: 600;
   color: #1a1a1a;
   margin-left: 16px;
   text-align: left;
}

/* Arrow */
.arrow {
   font-size: 1.8rem;
   color: #999;
   transition: transform 0.2s ease, color 0.2s ease;
}

.link-card:hover .arrow {
   transform: translateX(4px);
   color: #0e1b53;
}
/* Center of Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0 0 0 / 70%);
    backdrop-filter: blur(2px);
    z-index: 9999;
}

/* Loader Style */
.loader {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
    border-width: 3px 2px 3px 2px;
    border-style: solid dotted solid dotted;
    border-color: #fab401 rgba(0, 0, 0, 0.08) #ffffff rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotate 1s linear infinite;
}

    .loader:before,
    .loader:after {
        content: '';
        top: 0;
        left: 0;
        position: absolute;
        border: 10px solid transparent;
        border-bottom-color: #ffffff;
        transform: translate(-10px, 19px) rotate(-35deg);
    }

    .loader:after {
        border-color: #fab401 transparent transparent transparent;
        transform: translate(32px, 3px) rotate(-35deg);
    }

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
}
/* Responsive */
@media (max-width: 768px) {
    .link-card {
      flex: 1 1 100%;
   }
}
.navbar .container {
    max-width: 1500px;
}
.app-section {
    background: #ffed6024;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.ftlogo1{width:150px;}
.app-name {
    font-size: 15px;
    color: #0e1b53;
}

.store-buttons img {
   height: 40px;
   width: auto;
   transition: transform 0.2s ease;
}

.store-buttons img:hover {
   transform: scale(1.05);
}

.dropdown .btn {
   background-color: #fff;
   border-radius: 10px;
   padding: 6px 12px;
   border: 1px solid #ddd;
   font-weight: 500;
   color: #0e1b53;
}

.dropdown-menu {
   font-size: 14px;
}

.announcement-bar {
   background-color: #0e1b53;
   color: #fff;
   font-size: 15px;
   line-height: 1.5;
   padding: 0;
   overflow: hidden;
}

.icon-box_announcement {
   background-color: #1a2c77;
   padding: 10px 16px;
   flex-shrink: 0;
}

.icon-box_announcement img {
   width: 40px;
   height: 40px;
}
.announcement-textred {
    flex: 1;
    width: 100%;
    white-space: nowrap;
    color: red; /* sirf text red */
    padding: 10px; /* thoda spacing */
    box-sizing: border-box; /* proper width calculation */
}
.announcement-text {
   flex: 1;
   white-space: nowrap;
}

.announcement-text marquee {
   padding: 0;
   color: #fff;
   margin: -7px;
}

.announcement-text a {
   color: #ff8c00;
   text-decoration: none;
}

.announcement-text a:hover {
   text-decoration: underline;
}
.latest-updates{background: #f8f9fa82;}
.latest-updates .nav .nav-item button.active {
   background-color: transparent;
   color: var(--bs-danger) !important;
}
.latest-updates .nav .nav-item button.active::after {
   content: "";
   border-bottom: 4px solid var(--bs-danger);
   width: 100%;
   position: absolute;
   left: 0;
   bottom: -1px;
   border-radius: 5px 5px 0 0;
}
.latest-updates .accordion-item {
   margin-bottom: 10px;
}
.latest-updates .accordion-item button {
   background-color: rgb(255 189 20 / 5%);
}

.enrollmentstatus {
   background: #ffff;
}
.enrollmentstatus .table thead th {
   background: #03124f;
   color: #fff;
}

.info-bar_ft {
   background-color: #0e1b53;
   border-radius: 20px;
   position: relative;
   top: -40px;
}

.info-bar_ft .vertical-line {
   width: 1px;
   height: 60px;
   background-color: rgba(255, 255, 255, 0.4);
}

.info-bar_ft i {
   color: #fff;
}
.footer-title {
   color: #ff4d2e;
   font-weight: 600;
   margin-bottom: 1rem;
}

.footer-links li {
   margin-bottom: 0.4rem;
}

.footer-links a {
   color: #ddd;
   text-decoration: none;
   transition: 0.3s;
}

.footer-links a:hover {
   color: #ff4d2e;
   text-decoration: underline;
}

.social-icon {
   display: inline-flex;
   width: 35px;
   height: 35px;
   border-radius: 50%;
   background: #ff4d2e;
   color: #fff;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   transition: 0.3s;
}

.social-icon:hover {
   background: #fff;
   color: #ff4d2e;
}

.blogs {
   padding-bottom: 80px !important;
}
.lstft {
   list-style: none;
   padding-left: 0;
   column-count: 2;
   column-gap: 20px;
}
.last_m {
   background: #fd3514;
   border-radius: 5px;
   margin-left: 10px;
}

.registration-section {
   background-color: #fff;
}

.registration-section .card-box {
   background: #e8f2ff;
   border: none;
   border-radius: 20px;
   padding: 0.2rem;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   max-width: 530px;
   flex: 1 1 45%;
}

.registration-section .card-yellow {
   background: #fffbdc;
}

.registration-section .card-box:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.icon-img {
   width: 150px;
   height: auto;
}

.card-content {
   text-align: left;
   justify-content: flex-start;
}

.about-banner {
    background: linear-gradient(rgb(15 23 60 / 88%), rgba(14, 27, 83, 0.85)), url(../images/innser_about.png) center / cover;
    color: #fff;
    text-align: left;
    }
    .about-banner h1 {
      font-weight: 700;
      font-size: 2.5rem;
    }
    .breadcrumb {
      color: #d1d1d1;
    }

    /* ======= About Section ======= */
    .about-section {
      padding: 60px 0;
    }
    .top_heading_page{
         padding: 100px 0px 80px;
    }
    .about-section .card {
      border-radius: 10px;
      background: #f5f8ff;
      padding: 15px;
      height: 100%;
      transition: all 0.3s ease;
    }
    .about-section .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .about-section .card-body h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: #0E1B53;
    }
     .about-section .card-body h5 i {
      padding-right:10px;
    }
    .about-section .card p {
      font-size: 15px;
      color: #000;
    }
  
  .card-header {
    background: #0E1B53 !important;
    border-radius: 15px 15px 0 0 !important;
}

.card {
    border-radius: 15px !important;
}

.table thead th {
    font-weight: 600;
    background: #0E1B53 !important;
    color:#fff;
}

 .table tbody tr:nth-child(even) {
    background: #F9FBFF;
}


.card_tb .table thead th {
    font-weight: 600;
    background: #F4F7FF !important;
    color: #000;
}

.card_tb .table tbody tr:nth-child(even) {
    background: #F9FBFF;
}

.card_tb .table i {
    cursor: pointer;
}
.actionBtn a {
    text-decoration: none;
    padding: 0;
    margin: 0 2px;
}
.actionBtn a i {
    font-size: 20px !important;
    border: 1px solid #0e19501c;
    border-radius: 6px;
    padding: 3px 5px;
}

.operator_activation{
    padding: 30px;
}
.operator_activation .form-control{
padding: 11px;
}
.operator_activation button{
padding: 11px;
}
.ft_mrgin_other_pages{
   margin-top: 90px;
}

.table-section{padding: 50px; background-color: #fff;}
.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #edecec;
    overflow: hidden;
    max-width: 700px;
}
    .search-box select {
      border: none;
      outline: none;
      padding: 10px 15px;
      font-weight: 500;
      color: #3c2c1b;
      background: transparent;
    }
    .search-box input {
      border: none;
      outline: none;
      flex: 1;
      padding: 10px 15px;
    }
    .search-box .search-icon {
      color: #0a154b;
      font-size: 1.2rem;
      padding: 0 15px;
      cursor: pointer;
    }

    
    /* ======= Features Section ======= */
    .features-section {
      background: #fff;
      padding: 60px 0;
    }
    .features-section h4 {
      color: #0E1B53;
      font-weight: 600;
    }

    /* ======= Usage Section ======= */
    .usage-section {
      background: #F9FAFB;
      padding: 60px 0;
    }
    .usage-section h3 {
      font-weight: 700;
      color: #0E1B53;
    }

    /* ======= FAQ Section ======= */
    .faq-section {
      background: #fff;
      padding: 60px 0;
    }
    .accordion-button:focus {
      box-shadow: none;
    }
	   /* Background banner */
    .features-bg {
      background: #fff url('../images/featured_about.png') top no-repeat;
      /*min-height: 80vh;*/
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    
    /* Card container */
    .features-card {
      position: relative;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      margin-top:8rem;
      margin-bottom:2rem;
      padding: 40px;
      z-index: 2;
    }

    /* Typography */
    .features-card h2 {
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
      color: #000;
    }

    .features-card p {
      color: #444;
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .features-card strong {
      color: #000;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .features-card {
        padding: 30px 20px;
      }
      .features-card h2 {
        font-size: 1.5rem;
      }
    }
	.usage-section li h4{padding-bottom: 10px;}
.usage-section li h4::before {
    content: "✔";
    color: #fff;
    background-color: #142676;
    border-radius: 50%;
    width: 1.1em;
    height: 1.1em;
    display: flex
;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 15px;
    top: 15%;
    transform: translateY(-50%);
    font-size: 0.8em;
}
.usage-section ul{padding: 10px;}
.usage-section ul li {
    padding: 20px 20px 20px 50px;
    margin-bottom: 13px;
    border-radius: 10px;
}
.all_transaction{padding: 40px;}
	 .all_transaction .glass-card {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(14px);
        border-radius: 18px;
        padding: 0px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: 0.3s ease-in-out;
    }

    .all_transaction .glass-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 50px rgba(0,0,0,0.12);
    }

    .all_transaction .card-header {
        background: linear-gradient(90deg, #0d47a1, #1976d2);
        color: #ffffff;
        padding: 14px 20px;
        border-radius: 14px;
        margin-bottom: 20px;
        font-size: 16px;
        font-weight: 700;
        box-shadow: inset 0 1px 3px rgba(255,255,255,0.3);
    }

    /* FLEX STATS */
    .all_transaction .stats-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
		 padding: 11px;
    }

    .all_transaction .stat-box {
        background: linear-gradient(180deg, #f9fbff, #ffffff);
        border: 1px solid #e5e9f2;
        border-radius: 12px;
        padding: 14px 16px;
        flex: 1 1 calc(25% - 16px); /* 4 per row */
        text-align: center;
        min-width: 120px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.06);
        transition: 0.2s ease;
    }

    .all_transaction .stat-box:hover {
        background: linear-gradient(180deg, #ffffff, #eef4ff);
        transform: translateY(-4px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.10);
    }

    .all_transaction .stat-label {
        font-size: 12px;
        color: #6d7280;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .all_transaction .stat-value {
        font-size: 22px;
        font-weight: 800;
        color: #0d2850;
    }
.table-scroll {
    max-height: 400px; /* Adjust based on your row height */
    overflow-y: scroll;
    overflow-x: hidden;
    border: 1px solid #dee2e6;
    position: relative;
}

    /* Optional: keep header fixed */
    .table-scroll thead th {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 2;
    }

    @media(max-width:768px) {
       .all_transaction .stat-box {
            flex: 1 1 calc(50% - 16px); /* 2 per row */
        }
    }
#myModal .modal-dialog {
    max-width: 1050px
}

#myModal iframe {
    width: 100%;
}
.latest-updates{padding:3rem}
.enrollmentstatus {
    padding: 3rem
}
.fmTp-1 {
    padding-top: 29px;
    font-weight: bold;
    color: #9b9b9b;
    font-size: 12px;
}
@media(max-width: 575.98px) {
    .custom-center-logo {
        transform: translateY(20%);
        transform: translateX(-50%);
        margin-top: 144px;
        z-index: 10;
        background-color: revert;
        border-radius: 50%;
        height: 65px;
        width: 65px;
        padding: 5px;
        right: -19px;
    }

    .start-50 {
        left: 90% !important;
    }

    .navbar-toggler {
        filter: invert(1);
    }

    #myModal .modal-dialog {
        max-width: 390px;
    }

    header .navbar-brand img {
        width: 130px
    }

    .store-buttons img {
        height: 31px;
        width: auto;
        transition: transform 0.2s ease;
    }

    .main_heading {
        font-size: 1.4rem;
    }

    .live-transactions-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .about-section p {
        font-size: 0.9rem;
        text-align: justify
    }

    .link-card {
        padding: 13px 13px;
    }

    .icon-box {
        width: 46px;
        height: 46px;
    }

    .link-text {
        font-size: 0.87rem;
    }

    .registration-section a h5 {
        font-size: 1rem
    }

    .opSub {
        font-size: 0.90rem;
    }

    .icon-img {
        width: 96px;
        height: auto;
    }

    .latest-updates p-5 {
        padding: 0 !important
    }

    .latest-updates {
        padding: 0rem;
    }

    .enrollmentstatus {
        padding: 0rem
    }

    .last_m {
        margin-left: 0;
    }

        .last_m a i {
            padding-left: 10px
        }

    .dropdown-toggle::after {
        float: right;
    }

    .navbar-collapse {
        background: linear-gradient(180deg, #ffffff, #f8f9fa);
        padding: 1rem;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        margin-top: 10px;
    }

    /* Main nav links */
    .navbar-nav .nav-link {
        padding: 10px 13px;
        margin-bottom: 6px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 12px;
        color: #212529;
        transition: all 0.3s ease;
    }

        /* Active & hover */
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background: #0e1b53;
        }

    /* Dropdown menu */
    .dropdown-menu {
        position: static !important;
        float: none;
        border: none;
        border-radius: 14px;
        padding: 8px;
        margin: 6px 0 12px 0;
        background: #f1f3f5;
        box-shadow: inset 0 0 0 1px #e0e0e0;
        animation: dropdownFade 0.35s ease;
    }

        /* Dropdown items */
        .dropdown-menu .dropdown-item {
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 15px;
            color: #333;
            transition: all 0.25s ease;
        }

            .dropdown-menu .dropdown-item:hover {
                background: #0e1b53;
                transform: translateX(4px);
            }

    /* Dropdown arrow animation */
    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
        transition: transform 0.3s ease;
    }

    .show > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .nav-link-custom {
        color: #000 !important;
    }
    /* Right side nav (Sign in etc.) */
    .navbar-nav.ms-auto {
        margin-top: 16px;
        border-top: 1px solid #dee2e6;
        padding-top: 12px;
    }

    /* Sign In button style */
    .last_m .nav-link {
        color: #fff !important;
    }
    /* Dropdown animation */
    @keyframes dropdownFade {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .about-banner h1 {
        font-weight: 700;
        font-size: 1.5rem;
    }

    .top_heading_page {
        padding: 50px 0px 40px;
    }

    .actionBtn {
        display: flex
    }

    .info-bar_ft div div {
        text-align: left;
    }

    .table-section {
        padding: 0px;
    }

    .search-box {
        margin: 9px auto;
    }

    .table-section .rislPPP11 {
        margin: 0px auto;
    }

        .table-section .rislPPP11 button {
            font-size: 18px;
        }

    .operator_activation {
        padding: 10px;
    }

    .ftlogo1 {
        margin: 0px auto;
    }

    .contactus h4, h5 {
        font-size: 13px;
        font-weight: 600;
    }

    .all_transaction {
        padding: 15px 0;
    }

        .all_transaction .stat-value {
            font-size: 16px;
        }
        .all_transaction .card-header {
            font-size: 13px;
        }

}


   
.bbx1 img{max-width:120px !important;}
@media (min-width: 768px) and (max-width: 1023px) {
    .custom-center-logo {
        margin-top: 81px;      
        width: 108px;       
    }
    .stat-value {
        font-size: 1.0rem;
    }
    .main_heading {
        font-size: 1.5rem;
    }
    .services-grid {        
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));       
    }
    .important-links {
        padding: 10px 20px;       
    }
    .icon-img {
        width: 100px;        
    }
    .opSub {
        font-size: .8rem;       
    }
    .latest-updates {
        padding: 1rem;
    }
    .enrollmentstatus {
        padding: 1rem;
    }
    .info-bar_ft div div {
        text-align: left;
    }
    .navbar-toggler {
        filter: invert(1);
    }
    .dropdown-toggle::after {
        float: right;
    }

    .navbar-collapse {
        background: linear-gradient(180deg, #ffffff, #f8f9fa);
        padding: 1rem;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        margin-top: 10px;
    }

    /* Main nav links */
    .navbar-nav .nav-link {
        padding: 10px 13px;
        margin-bottom: 6px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 12px;
        color: #212529;
        transition: all 0.3s ease;
    }

        /* Active & hover */
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background: #0e1b53;
        }

    /* Dropdown menu */
    .dropdown-menu {
        position: static !important;
        float: none;
        border: none;
        border-radius: 14px;
        padding: 8px;
        margin: 6px 0 12px 0;
        background: #f1f3f5;
        box-shadow: inset 0 0 0 1px #e0e0e0;
        animation: dropdownFade 0.35s ease;
    }

        /* Dropdown items */
        .dropdown-menu .dropdown-item {
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 15px;
            color: #333;
            transition: all 0.25s ease;
        }

            .dropdown-menu .dropdown-item:hover {
                background: #0e1b53;
                transform: translateX(4px);
            }

    /* Dropdown arrow animation */
    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
        transition: transform 0.3s ease;
    }

    .show > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .nav-link-custom {
        color: #000 !important;
    }
    /* Right side nav (Sign in etc.) */
    .navbar-nav.ms-auto {
        margin-top: 16px;
        border-top: 1px solid #dee2e6;
        padding-top: 12px;
    }

    /* Sign In button style */
    .last_m .nav-link {
        color: #fff !important;
    }
    /* Dropdown animation */
    @keyframes dropdownFade {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .top_heading_page {
        padding: 50px 0px 50px;
    }
    .actionBtn{
        display:flex;
    }
    .table-section {
        padding: 10px;
    }
    .operator_activation {
        padding: 10px;
    }
    .all_transaction {
        padding: 33px 10px;
    }
}
   
    @media(max-width: 991.98px) {
    }


    @media(max-width: 1199.98px) {
    }