@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    transition: .4s linear;
    outline: none; border: none; text-decoration: none;
    text-transform: unset!important;
}

:root{
    --main-color: #2E68FD;
    --black-color: #1b1b1b;
    --dark-black-color: #010F1C;
    --white-color: #fff;
    --gray-color: #737887;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}


html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
    font-family: "Inter", sans-serif;

}

body{
    overflow-x: hidden;
    background: #f5f7fd;
}

a{
    text-decoration: none!important;
}

ol, ul{
    padding-left: 0;
}

.channel-btns{
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.channel-btn{
    background-color: #4361ee;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 1rem 2.2rem;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1.6rem;
    box-shadow: 0 2px 10px rgba(67, 97, 238, 0.3);
    height: 50px;
    white-space: nowrap;
    &:hover{
        color: var(--white-color);
    }
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: var(--white-color);
}

::-webkit-scrollbar-thumb{
    background: #F4F5F6;
}

/* Header Section */
.cgpey-header {
    padding: 0 1%;
    background-color: #ffffff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important; 
/*    border-bottom: 1px solid rgba(0, 0, 0, 0.05);*/
    height: 70px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cgpey-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    width: 100%;
}

.cgpey-header__logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
}

.cgpey-header__nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cgpey-header__icons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.cgpey-header__icon {
    font-size: 1.8rem;
    color: #555555;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cgpey-header__icon:hover {
    color: #000000;
    transform: translateY(-2px);
}

.cgpey-header__icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

.cgpey-header__text {
    font-size: 1.6rem;
    font-weight: 500;
    color: #333333;
}

.cgpey-header__coin-count {
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cgpey-header__coin-icon {
    color: #ffa502;
}

.cgpey-header__profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.cgpey-header__profile-img {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

/* Search Bar */
.cgpey-header__search-container {
    position: relative;
}

.cgpey-header__search-bar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    padding: 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: none;
    z-index: 100;
    animation: fadeIn 0.3s ease;
}

.cgpey-header__search-bar.active {
    display: block;
}

.cgpey-header__search-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 1.4rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.cgpey-header__search-input:focus {
    border-color: #777777;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*SIDEBAR*/
:root {
    --sidebar-width: 280px;
    --sidebar-bg: #ffffff;
    --sidebar-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    --sidebar-border: 1px solid rgba(255, 255, 255, 0.18);
    --menu-item-hover: #f6f8fa;
    --menu-item-active: #f0f4ff;
    --menu-text: #7b7e91;
    --menu-text-hover: #2c2c2c;
    --menu-icon: #7b7e91;
    --menu-icon-active: #3b82f6;
    --menu-title: #9ca3af;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --content-padding: 2rem;
}

/* Sidebar Styles */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--sidebar-bg);
    box-shadow: var(--sidebar-shadow);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-right: var(--sidebar-border);
    transition: transform 0.3s ease;
    z-index: 11111;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-left: 280px;
}

.sidebar-logo img{
    height: 3.2rem;
}

.sidebar-menu {
    padding: 1rem .6rem;
    flex-grow: 1;
    overflow-y: auto;
}

.menu-title {
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--menu-title);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-item {
    margin: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 1.4rem 1rem;
    color: var(--menu-text);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    gap: 1.5rem;
}

.menu-link:hover {
    background-color: var(--menu-item-hover);
    color: var(--menu-text-hover);
}

.menu-link.active {
    background-color: var(--menu-item-active);
    color: var(--menu-icon-active);
    font-weight: 500;
}

.menu-link.active .menu-icon {
    color: var(--menu-icon-active);
}

.menu-icon img{
    width: 26px;
}

.menu-icon {
    font-size: 1.6rem;
    width: 1.5rem;
    text-align: center;
    color: var(--menu-icon);
    transition: var(--transition);
}

.menu-text {
    font-size: 1.6rem;
    font-weight: 500;
    transition: var(--transition);
    margin-left: .5rem;
}

.menu-badge {
    margin-left: auto;
    background-color: #ef4444;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-arrow {
    margin-left: auto;
    transition: var(--transition);
    color: var(--menu-icon);
    font-size: 1.2rem;
}

.menu-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: rgba(249, 250, 251, 0.5);
}

.dropdown-toggle::after{display: none;}

.menu-dropdown.active {
    max-height: 500px;
}

.submenu-link {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--menu-text);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.submenu-link:hover {
    color: var(--menu-text-hover);
    background-color: rgba(0, 0, 0, 0.02);
}

/*.submenu-link::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--menu-icon);
    opacity: 0.6;
}*/

.submenu-link:hover::before {
    background-color: var(--menu-icon-active);
}

/* Main Content Styles */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.content{
    margin-top: 7rem;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem var(--content-padding);
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

.toggle-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #4b5563;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    background: #f5f5f5;
}

.content {
    padding: var(--content-padding);
    background-color: #f5f7fd;
}

.main-content{background-color: #f5f7fd;}

.card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
/*............*/

/*Start bank csp section*/
.bankCsp-section {
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
}

.bank-section-heading {
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 3rem;
  color: #222;
  display: inline-flex;
  align-items: center; 
  gap: 1rem;
}

.bank-section-heading img{
    height: 30px;
}

.bank-section-heading::after {
  content: "";
    position: absolute;
    bottom: -0.6rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f0f4ff;
    border-radius: 2rem;
    display: none;
}

.bankCsp-section-banner img{
    width: 100%; height: auto;
    border-radius: 6px;
}

.bankCsp-section .nav-tabs {
  border-bottom: none;
    justify-content: start;
    flex-wrap: nowrap;
    gap: 2rem;
    margin-top: 2rem;
    overflow-x: auto;
    padding: 2rem 10px;
}

.bankCsp-section .nav-tabs::-webkit-scrollbar {
  height: 0.4rem;
}

.bankCsp-section .nav-tabs::-webkit-scrollbar-thumb {
  background-color: #F4F5F6;
  border-radius: 1rem;
}

.bankCsp-section .nav-tabs .nav-link {
  background: #fff;
  border: none;
  border-radius: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
}

.bankCsp-section .nav-tabs .nav-link.active {
  box-shadow: 0 6px 20px rgb(0 130 255 / 6%);
  transform: scale(1.03);
  border: 1px solid #3b82f6;
}

.bankCsp-section .tab-content {
  margin-top: 4rem;
}

.bankCsp-section .tab-pane img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 1.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.bankCsp-paragraph{
    color: var(--black-color);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.7;
}
/*End bank csp section*/

/*Start Aeps section*/
.aeps-section{
    padding: 2rem;
    border-radius: 8px;
    background-color: white;
}

.driverSelect-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 0.3rem 1.5rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 100%;
  flex-wrap: wrap;
  padding: 1rem;
  transition: all 0.3s ease;
}

.driverSelect-box:hover {
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.12);
}

.driverSelect-text {
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  flex: 1;
  min-width: 60%;
  color: #333;
}

.driverSelect-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}

.download-btn {
  background: var(--main-color);
  color: white;
  height: 45px;
  border: none;
  border-radius: 0.4rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.6rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.download-btn:hover {
  background: #0548c7;
  transform: translateY(-1px);
}

.download-btn:active {
  transform: translateY(0);
}

.driverSelect-select {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  padding: 1.2rem 1.5rem;
  height: 45px;
  font-size: 1.4rem;
  font-weight: 500;
  border-left: 1px solid #e0e0e0;
  border-radius: 0.8rem;
  min-width: 18rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0.3rem rgba(0, 0, 0, 0.05);
}

.driverSelect-select:hover {
  background-color: #f0f0f0;
}

.driverSelect-select:focus-within {
  background-color: #e8f0fe;
  box-shadow: inset 0 0 0 1px #065AF3;
}

.driverSelect-select select {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  outline: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  padding-right: 2.5rem;
  padding-left: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 0.4rem;
}

.driverSelect-select select:hover {
  color: #065AF3;
}

.driverSelect-select select:focus {
  color: #065AF3;
}

.driverSelect-select::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.2rem;
  color: #065AF3;
  transition: all 0.3s ease;
}

.driverSelect-select:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}

.driverSelect-select select option {
  padding: 1rem 1.5rem;
  background: white;
  color: #333;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.driverSelect-select select option:hover {
  background: #065AF3 !important;
  color: white;
}

.driverSelect-select select option:checked {
  background: #065AF3;
  color: white;
  font-weight: 600;
}

.driverSelect-select select option:first-child {
  color: #999;
  font-style: italic;
}

/* Custom dropdown scrollbar */
.driverSelect-select select::-webkit-scrollbar {
  width: 8px;
}

.driverSelect-select select::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.driverSelect-select select::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.driverSelect-select select::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.aadhaar-consent-container {
    margin-top: 2rem;
}

.aadhaar-consent-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: #1e293b;
    position: relative;
    padding-bottom: 0.75rem;
}

.aadhaar-consent-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #2563eb;
    border-radius: 3px;
}

.aadhaar-consent-note {
    font-size: 1.4rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 1rem;
    background-color: #f1f5f9;
    border-left: 4px solid #2563eb;
}

.aadhaar-input-group {
    margin-bottom: 2rem;
    width: 100%;
}

.aadhaar-input-container {
    position: relative;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.aadhaar-input-label {
    position: absolute;
    top: -0.75rem;
    left: 1rem;
    background-color: white;
    padding: 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #475569;
    z-index: 1;
}

.aadhaar-form-control {
    width: 100%;
    padding: 1.4rem 1.2rem;
/*    border: 1px solid #e2e8f0;*/
    border-radius: 8px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    border: 1px solid #ccc;
      border-radius: 0.6rem;
      outline: none;
      box-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.05);
}

.aadhaar-form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: white;
}

.aadhaar-input-error {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.aadhaar-consent-text {
    font-size: 1rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.aadhaar-scan-finger {
    text-align: center;
    margin-top: 2rem;
    padding: 2.5rem;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    width: 100%;
}

.aadhaar-scan-finger:hover {
    border-color: #2563eb;
    background-color: #eff6ff;
    transform: translateY(-2px);
}

.aadhaar-scan-icon {
    font-size: 3.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.aadhaar-scan-finger:hover .aadhaar-scan-icon {
    transform: scale(1.1);
}

.aadhaar-scan-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: 0.5px;
}

.aadhaar-consent-checkbox {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.aadhaar-consent-checkbox input {
    margin-right: 1rem;
    margin-top: 0.25rem;
    accent-color: #2563eb;
    width: 1.25rem;
    height: 1.25rem;
}

.aadhaar-consent-checkbox label {
    font-size: 1.6rem;
    color: #334155;
    line-height: 1.7;
    cursor: pointer;
    user-select: none;
}
/*2*/
.aepsTabs-section {
  border-radius: 8px;
}

/* Tabs Container - Full Width */
.aeps-tabs-container {
  background: #fff;
  border-radius: 0; /* Removed border radius for full width */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%; border-radius: 8px;
}

/* Tabs Navigation - Full Width */
.aeps-tabs-nav {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0; /* Remove default margins */
  padding: 0; /* Remove default padding */
}

.aeps-tabs-nav::-webkit-scrollbar {
  display: none;
}

.aeps-tab-item {
  flex: 1;
  text-align: center;
  position: relative;
  min-width: 120px; /* Minimum width for each tab */
}

.aeps-tab-btn {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #64748b;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

.aeps-tab-btn:hover {
  color: #4361ee;
  background-color: rgba(67, 97, 238, 0.05);
}

.aeps-tab-btn.active {
  color: #4361ee;
  border-bottom-color: #4361ee;
  font-weight: 600;
  font-size: 1.6rem;
}

.aeps-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4361ee;
}

/* Tab Content - Full Width */
.aeps-tab-content {
  padding: 2.5rem;
  max-width: 1200px; /* Content max width */
  margin: 0 auto; /* Center content */
}

.aeps-tab-pane {
  display: none;
}

.aeps-tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*End Aeps section*/

/*Start DTH Connection section*/
.status-filter-section {
  /*padding: 2rem;
  background-color: #fff;
  border-radius: 8px;*/
}

.filter-box {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.input-group {
  position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.input-group-text {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-right: none;
  display: flex; align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1.4rem;
  width: 50px; height: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-control, .form-select {
  border: 1px solid #e0e0e0;
  border-left: none;
  padding: 1rem 1rem;
  height: 50px;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #fff;
  color: #2b2d42;
}

.input-group select{
    border: 1px solid #e0e0e0;
  border-left: none;
  padding: 1rem 1rem;
  height: 50px;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #fff;
  color: #2b2d42; width: 100%;
}

.input-group input::placeholder{
    font-weight: 500;
}

.form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.15);
  border-color: rgba(67, 97, 238, 0.4);
}

.form-control::placeholder {
  color: #adb5bd;
  font-weight: 300;
}

.search-btn {
  background-color: #4361ee;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 1rem 2.2rem;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 1.6rem;
  box-shadow: 0 2px 10px rgba(67, 97, 238, 0.3);
  height: 50px;
  white-space: nowrap;
}

.search-btn:hover {
  background-color: #3a56d4;
  color: var(--white-color)!important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
}

/* Premium Table Styling */
.table-responsive {
  border-radius: 8px;
  overflow-x: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}

.table-responsive tbody tr button{
    background: #4361ee;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
}

.table thead {
/*  background: linear-gradient(135deg, #4361ee, #3f37c9);*/
  color: 121212;
  background-color: var(--white-color);
}

.table th {
  padding: 1.4rem 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border: none; border-bottom: 1.2px solid rgba(0, 0, 0, 0.03)!important;
}

.table td {
  padding: 1.8rem 1.5rem;
  vertical-align: middle;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 1.4rem; font-weight: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.table tr:first-child td {
  border-top: none;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tbody tr {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: white;
}

.table tbody tr:hover {
  background-color: rgba(67, 97, 238, 0.03);
  transform: translateX(2px);
}

.text-success {
  color: #2ecc71 !important;
  font-weight: 500;
}

.text-danger {
  color: #e74c3c !important;
  font-weight: 500;
}

.text-primary {
  color: #4361ee !important;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.text-primary:hover {
  color: #3a56d4 !important;
  text-decoration: underline;
}

.status-badge {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-success {
  background-color: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.status-failed {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.status-pending {
  background-color: rgb(231 215 60 / 10%);
    color: #ff6300;
}

.status-refund {
  background-color: rgb(60 210 231 / 10%);
    color: #3393ff;
}

.airtelPlans-section {
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  background-color: #fff;
}

.airtelPlans-section .plan-img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  transition: transform 0.3s ease;
}

.airtelPlans-section .plan-img:hover {
  transform: scale(1.02);
}

.airtelPlans-section .btn-wrapper {
  margin-top: 4rem;
  text-align: center;
}

.airtelPlans-section .view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 3rem;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: #065AF3;
  color: #fff;
  border-radius: 3rem;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1);
}

.airtelPlans-section .view-all-btn:hover {
  background-color: #044bcc;
}
/*End DTH Connection section*/

/* Yes Bank DMT Section */
.yesbank-dmt-card {
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*.yesbank-dmt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: linear-gradient(90deg, #004a91, #00b3b0);
}*/

.yesbank-dmt-content-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.yesbank-dmt-icon {
    font-size: 3.5rem;
    color: #004a91;
}

.yesbank-dmt-text {
    max-width: 60rem;
}

.yesbank-dmt-heading {
    font-size: 2rem;
    color: #004a91;
    margin-bottom: 1rem;
    font-weight: 700;
}

.yesbank-dmt-content {
    font-size: 1.6rem;
    color: #555;
}

.yesbank-dmt-btn {
    display: inline-block;
    background: #10a310;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 5rem;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1.5rem rgb(0 255 126 / 20%);
    white-space: nowrap;
}

.yesbank-dmt-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f5ff;
    padding: 1.8rem;
    border-radius: 8px;
}

.yesbank-dmt-btn:hover {
    transform: translateY(-0.3rem);
    color: var(--white-color);
}

.yesbank-dmt-btn:active {
    transform: translateY(-0.1rem);
}

.sender-mobile-section {

}

.sender-mobile-container {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 4rem; border-radius: 8px;
}

.sender-mobile-heading {
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.sender-mobile-heading i {
    color: #0066cc;
    font-size: 1.8rem;
}

.sender-mobile-form {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.sender-mobile-input-group {
    flex: 1;
    min-width: 200px;
}

.sender-mobile-label {
    display: block;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.sender-mobile-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    background: white;
}

.sender-mobile-input-wrapper:focus-within {
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

.sender-mobile-input-prefix {
    padding: 0 1.5rem;
    background: #f5f7fb;
    height: 5rem;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    color: #333;
    border-right: 1px solid #ddd;
}

.sender-mobile-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    font-size: 1.6rem;
    border: none;
    outline: none;
    min-width: 0;
}

.sender-mobile-button {
    background: #10a310;
    color: white;
    border: none;
    padding: 0 3rem;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgb(0 255 126 / 20%);
    height: 5rem;
    white-space: nowrap;
}

.sender-mobile-button:hover {
    background: #0052a3;
    transform: translateY(-1px);
}

.sender-mobile-button:active {
    transform: translateY(0);
}
/* End Yes Bank DMT Section */

/*Start digi process section*/
.digiKhata-process-section img{
    width: 100%; margin-bottom: 2rem;
    border-radius: 8px;
}

.digiKhata-process-section a{
    background-color: #4361ee;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 1rem 2.2rem;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1.6rem;
    box-shadow: 0 2px 10px rgba(67, 97, 238, 0.3);
    height: 50px;
    white-space: nowrap;
}
/*End process section*/

.insurance-posp-section {
}

.insurance-posp-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.insurance-posp-header p{
    color: var(--white-color);
    font-size: 1.6rem;
    line-height: 1.7;
}

.insurance-posp-benefit-item span{
    font-size: 1.6rem;
    line-height: 1.7;
}

.insurance-posp-content {
    grid-column: span 3;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
}

.insurance-posp-upload {
    grid-column: span 3;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
}

.insurance-posp-header {
    background: linear-gradient(135deg, #4361ee, #3f37c9);
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.insurance-posp-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}

.insurance-posp-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.insurance-posp-body {
    padding: 2rem;
}

.insurance-posp-body h5{
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.insurance-posp-benefits {
    margin: 1.5rem 0;
}

.insurance-posp-benefit-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.insurance-posp-benefit-icon {
    width: 3.2rem;
    height: 3.2rem;
    background-color: #e6f0ff;
    color: #4361ee;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.insurance-posp-benefit-icon i{
    font-size: 1.6rem;
}

.insurance-posp-note {
    background-color: #e6f0ff;
    border-radius: 12px;
    padding: 1.2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.insurance-posp-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #4361ee;
}

.insurance-posp-note-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
    line-height: 1.7;
}

.register-p{
    font-size: 1.4rem;
    color: var(--gray-color);
    line-height: 1.7;
    margin: 0;
}

.insurance-posp-note-item:last-child {
    margin-bottom: 0;
}

.insurance-posp-note-icon {
    color: #4361ee;
    margin-right: 0.6rem;
    margin-top: 0.1rem;
}

.insurance-posp-status {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 1.4rem;
    margin: 1rem 0;
    font-weight: 500;
}

.insurance-posp-upload-area {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.insurance-posp-upload-area:hover {
    border-color: #4361ee;
    background-color: #e6f0ff;
}

.insurance-posp-upload-area.highlight {
    border-color: #4361ee;
    background-color: #e6f0ff;
}

.insurance-posp-upload-icon {
    font-size: 4rem;
    color: #4361ee;
    margin-bottom: 0.8rem;
}

.insurance-posp-upload-text {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 1.2rem;
}

.insurance-posp-upload-btn {
    display: inline-block;
    background-color: #4361ee;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.insurance-posp-upload-btn:hover {
    background-color: #3f37c9;
    transform: translateY(-2px);
}

#fileInput {
    display: none;
}

.insurance-posp-apply-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #4361ee, #3f37c9);
    color: white;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.insurance-posp-apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

.file-info {
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #4361ee;
    display: none;
}

/*Start OTT subscription ui*/
.ott-main-section {
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--white-color);
}

.ott-nav{
    gap: 1rem;
}

.ott-nav .nav-link img{
    width: 80px;
}

.ott-nav .nav-link{
    background-color: var(--white-color);
    border-radius: 8px; padding: 1rem;
}

.ott-nav .nav-link.active, .nav-pills .show>.nav-link{
    background-color: #f0f4ff;
    border-radius: 8px; padding: 1rem;
}

/* Pricing Section */
.pricing-grid {
    
}

.pricing-grid__title {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.pricing-grid__subtitle {
    font-size: 1.6rem;
    text-align: center;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.pricing-grid__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: #c7d2fe;
}

.pricing-card__header {
    padding: 2.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    text-align: center;
}

.pricing-card__name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    font-size: 3.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.pricing-card__price span {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 0.6rem;
    margin-left: 0.3rem;
}

.pricing-card__body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card__features {
    margin-bottom: 2.5rem;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #475569;
}

.pricing-card__feature i {
    margin-right: 1rem;
    color: #6366f1;
    font-size: 1.2rem;
}

.pricing-card__action {
    margin-top: auto;
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-card__action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.3);
}

/* Popular Tag */
.pricing-card--popular {
    position: relative;
    border: 1px solid #818cf8;
}

.pricing-card--popular::before {
    content: 'POPULAR';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #4f46e5;
    color: white;
    padding: 0.3rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    transform: rotate(45deg);
    transform-origin: center;
    z-index: 1;
}
/*End OTT Subscription ui*/

/*Start dth section*/
.dth-section{
    padding:  2rem;
    border-radius: 8px;
    background-color: var(--white-color);
    background: url(../img/dth-background.jpg);
    background-size: cover; width: 100%;
    background-position: center;
}
/*End dth section*/

/* Service Tabs Section - Isolated Styles */
.service-tabs-section {
    margin-top: 2rem; border-radius: 8px;
    padding: 2rem;
    background-color: var(--white-color);
}

.service-tabs-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.service-tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    border-bottom: none;
    padding-bottom: 0.5rem;
    min-width: max-content;
}

.service-tabs-nav .nav-item {
    flex-shrink: 0;
}

.service-tabs-nav .nav-link {
    color: #495057;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0;
    margin-right: 0.5rem;
    white-space: nowrap;
    position: relative;
    background-color: transparent;
    transition: all 0.2s ease;
}

.service-tabs-nav .nav-link:hover {
    color: #0d6efd; border-radius: 6px;
    background-color: rgba(13, 110, 253, 0.1);
}

.service-tabs-nav .nav-link.active {
    color: #0d6efd;
    background-color: transparent;
    border-bottom: 3px solid #0d6efd;
}

.service-tabs-nav .nav-link i {
    margin-right: 0.5rem;
    font-size: 1.6rem;
}

/* Hide scrollbar but keep functionality */
.service-tabs-container::-webkit-scrollbar {
    height: 0.5rem; display: none;
}

.service-tabs-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 1rem;
}

.service-tabs-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 1rem;
}

.service-tabs-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Tab Content Area (empty - you'll add content) */
.service-tab-content {
    padding: 2rem 0;
}

/* Recharge Plans Section */
.roaming-plans-section {
}

.roaming-plans-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roaming-plan-card__main-flexBox{
    display: flex; align-items: center;
    gap: 1rem; justify-content: space-between;
}

.roaming-plan-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1.8rem;
    position: relative;
    border: 1px solid #e0e6ed;
}

.roaming-plan-card__popular {
    position: absolute;
    top: -8px;
    left: 15px;
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.roaming-plan-card__main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.roaming-plan-card__price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.roaming-plan-card__price small {
    font-size: 1.4rem;
    font-weight: 500;
    color: #7f8c8d;
}

.roaming-plan-card__features {
    display: flex;
    gap: 1.5rem;
}

.roaming-plan-card__feature {
    text-align: center;
}

.roaming-plan-card__feature-value {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
}

.roaming-plan-card__feature-label {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-top: 0.3rem;
}

.roaming-plan-card__divider {
    border-top: 1px dashed #e0e6ed;
    margin: 1.5rem 0;
}

.roaming-plan-card__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roaming-plan-card__cost-per-day {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.roaming-plan-card__cost-per-day span {
    font-weight: 600;
    color: #2c3e50;
}

.roaming-plan-card__toggle {
    color: #3498db;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.roaming-plan-card__toggle i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.roaming-plan-card__action {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #4a6cf7, #6a5acd);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex; align-items: center;
    justify-content: center;
}

.roaming-plan-card__action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 108, 247, 0.3);
}

.roaming-plan-card__full-details {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 1.3rem;
    color: #4a5568;
    display: none;
}

.roaming-plan-card__full-details.show {
    display: block;
}

.roaming-plan-card__full-feature {
    margin-bottom: 0.8rem;
    display: flex;
}

.roaming-plan-card__full-feature i {
    color: #4a6cf7;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    margin-top: 0.3rem;
}

/*START RECHARGE PAYMENT UI*/
.prepaid-payment-recharge-section{
    padding: 4rem 5%;
}

.prepaid-payment-recharge-section-main-heading{
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-black-color);
    margin: 0;
    padding: 1.4rem 0;
}

.prepaid-payment-recharge-section .nav-pills{
    padding: 0 2%;
    background: var(--white-color);
    border-radius: 12px;
    gap: 3rem; border: none;
    box-shadow: 0 0 23px 0 hsla(0,0%,92%,.53);
}

.prepaid-payment-recharge-section .nav-pills .nav-link{
    height: 72px; font-size: 1.8rem; color: var(--gray-color);
    letter-spacing: .4px; display: flex; align-items: center; gap: 1rem;
    font-weight: 600; border-bottom: 3px solid var(--white-color);
}

.prepaid-payment-recharge-section .nav-pills .nav-link img{
    width: 40px; 
}

.prepaid-payment-recharge-section .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    height: 72px; border-bottom: 3px solid #002970; font-size: 1.8rem; color: var(--main-color);
    font-weight: 700; background: transparent; border-radius: 0!important;
}

.DebitTab-detail-container{
    padding: 2rem;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 0 23px 0 hsla(0,0%,92%,.53);
}

.DebitTab-detail-container .form-check {
    display: block;
    min-height: 1.5rem;
    font-size: 1.6rem;
    padding-left: 1.5em;
    margin-bottom: .125rem;
    font-weight: 600;
    letter-spacing: .3px;
}

.DebitTab-detail-inputBox{
  position: relative;
}

.DebitTab-detail-inputBox input{
  width: 100%;
  padding: 1.3rem;
  margin: .5rem auto;
  border-radius: 5px;
  border: 1.2px solid var(--light-gray);
  font-size: 1.4rem;
  height: 58px;
  line-height: 45px;
  color: var(--black-color);
}

.DebitTab-detail-inputBox input::focus{
  border: 1.2px solid #002970!important;
}

.DebitTab-detail-inputBox input::placeholder{
    color: var(--gray-color);
}

.DebitTab-detail-inputBox input:focus{
    border: 1.2px solid var(--main-color);
}

.DebitTab-detail-inputBox label{
  font-size: 1.2rem;
  font-weight: 500;
  position: absolute;
  top: 1.3rem;
  color: var(--gray-color);
  background-color: var(--white-color);
  padding: 0 8px;
  margin: 0 1rem;
}

.DebitTab-detail-btn button{
    padding: 1.2rem 2.5rem;
    border-radius: 6px;
    width: 100%;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white-color);
    background: #002970;
    margin-top: 20px;
}

.DebitTab-detail-footer-detail {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: var(--gray-color);
}

.upi-tab-heading h1{
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    padding: 1.2rem 0;
    letter-spacing: .3px;
}

.upi-tab-heading-border{
    height: 3px; width: 60px;
    background: var(--main-color);
}

.upi-tab-container{
    padding: 2rem;
    background: var(--white-color);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 23px 0 hsla(0,0%,92%,.53);
}

.upi-tab-QR-code{
    position: relative;
    max-width: 350px;
    width: 100%; margin-top: 1.2rem;
    display: flex; align-items: center;
    justify-content: center;
    padding: 2rem 0; background: #e5e5e569;
}

.upi-tab-QR-code img{
    max-width: 300px;
    width: 100%;
    opacity: .4;
}

.upi-tab-QR-code button{
    display: block;
    height: 50px; width: 80%;
    border-radius: 4px;
    background: var(--main-color);
    color: var(--white-color);
    margin: auto;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem; font-weight: 500;
}

.payment-option-img img{
    width: 100%;
    max-width: 350px;
    padding: 1.2rem 0;
}

.upi-tab-how-work-container-flex{
    display: flex; align-items: start;
    padding: 1.2rem 0; flex-wrap: wrap; gap: 1rem;
}

.upi-tab-how-work-container-flex-1{
    width: 25px;
    height: 25px;
    border-radius: 6px;
    color: var(--white-color);
    background: var(--main-color);
    display: flex;
    justify-content: center; align-items: center;
    font-weight: 600; font-size: 1.4rem;
}

.upi-tab-how-work-container-flex-content h5,p{
    margin: 0;
}

.upi-tab-how-work-container-flex-content h5{
    font-size: 1.4rem; color: var(--dark-black-color);
    font-weight: 600;
}

.upi-tab-how-work-container-flex-content p{
    font-size: 1.2rem; color: var(--gray-color);
    line-height: 1.6; margin-top: .5rem;
}

.NetBankingTab-container{
    padding: 2rem;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 0 23px 0 hsla(0,0%,92%,.53);
}

.NetBankingTab-bank-label{
    width: 100%; margin-bottom: 1.5rem;
    padding: 1.5rem; height: 70px;
    font-size: 1.3rem; font-weight: 500;
    border-radius: 12px; border: 1.2px solid var(--light-gray);
    display: inline-flex; align-items: center; gap: 1rem;
}

.prepaid-payment-recharge-total-amount-container{
    padding: 2rem;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 0 23px 0 hsla(0,0%,92%,.53);
}

.NetBankingTab-bank-label img{
    width: 22px;
}

.prepaid-payment-recharge-total-amount-container-total-amount p{
    font-size: 1.4rem;
    color: var(--gray-color);
    font-weight: 500; margin: 0;
}

.prepaid-payment-recharge-total-amount-container-total-amount .amount{
    display: flex; align-items: center; 
    padding: .7rem 0; gap: 1rem;
    font-size: 2.2rem; font-weight: 700; color: var(--dark-black-color);
}

.prepaid-payment-recharge-total-amount-container-total-amount .amount a{
    font-size: 1.4rem; color: var(--main-color); font-weight: 600; border-left: 1.2px solid var(--light-gray);
    padding: 0 .6rem;
}

.prepaid-payment-recharge-total-amount-biller-flex{
    display: flex; align-items: center; gap: 1.8rem;
}

.prepaid-payment-recharge-total-amount-biller-flex img{
    width: 45px;
}

.prepaid-payment-recharge-total-amount-biller-flex-1 h4,p{
    margin: 0;
}

.prepaid-payment-recharge-total-amount-biller-flex{
    padding-top: 1.4rem; border-top: 1.2px dashed var(--light-gray);
}

.prepaid-payment-recharge-total-amount-biller-flex-1 p{
    font-size: 1.1rem;
    color: var(--gray-color);
    font-weight: 400; margin: 0;
}

.prepaid-payment-recharge-total-amount-biller-flex-1 h4{
    font-size: 1.4rem;
    color: var(--black-color);
    font-weight: 600; margin: 0;
    margin-top: .4rem;
}

.prepaid-payment-recharge-promo-container-cashback-flex{
    display: flex; align-items: center; gap: 1.5rem;
}

.prepaid-payment-recharge-promo-container{
    padding: 2rem;
    background: var(--white-color);
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: 0 0 23px 0 hsla(0,0%,92%,.53);
}

.prepaid-payment-recharge-promo-container-cashback-flex img{
    width: 60px;
}

.prepaid-payment-recharge-promo-container-cashback-flex p{
    font-size: 1.4rem; color: var(--gray-color); margin: 0;
}

.prepaid-payment-promo-code-flex{
    display: flex; align-items: center;
    width: 100%; gap: 1rem;
    border: 1.2px dashed var(--light-gray);
    height: 60px; padding: 0 .7rem;
    border-radius: 12px;
    margin: 1.4rem 0;
}

.prepaid-payment-promo-code-flex img{
    width: 25px;
}

.prepaid-payment-promo-code-flex input{
    width: 100%; height: 50px;
    font-size: 1.4rem;
}

.prepaid-payment-promo-code-flex button{
    height: 35px; background: #f38e09;
    color: var(--white-color); font-size: 1.4rem;
    font-weight: 500; padding: 0 1.4rem;
    border-radius: 6px;
}

.prepaid-payment-bottom-footer-total-amount h2{
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    padding: 1.2rem 0;
    letter-spacing: .3px;
}

.prepaid-payment-bottom-footer-total-amount-flex1, .prepaid-payment-bottom-footer-total-amount-flex2{
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 0;
}

.prepaid-payment-bottom-footer-total-amount-flex1{
    border-bottom: 1.2px dashed var(--light-gray);
}

.prepaid-payment-bottom-footer-total-amount-flex1 p{
    font-size: 1.4rem;
    color: var(--gray-color);
    font-weight: 400;
    margin: 0;
}

.prepaid-payment-bottom-footer-total-amount-flex1 h4{
    font-size: 1.4rem;
    color: var(--black-color);
    font-weight: 600;
    margin: 0;
}

.prepaid-payment-bottom-footer-total-amount-flex2 h4{
    font-size: 1.6rem;
    color: var(--black-color);
    font-weight: 600;
    margin: 0;
}

.offcanvas.recharge-offcanvas-payment{
    height: 100%; z-index: 111111;
}

.recharge-offcanvas-payment .offcanvas-header{
    background: #002970;
    padding: 1.2rem 5%;
}

.recharge-offcanvas-payment .offcanvas-header h5{
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 1.4rem 0;
}

.recharge-offcanvas-payment .offcanvas-header .btn-close{
    filter: invert(01);
    transform: scale(1.3);
}

.recharge-offcanvas-payment .offcanvas-body{
    background: #eff8ff;
}
/*RECHARGE BOXES SECTION END*/
/*END RECHARGE PAGE UI*/

/*Sell and earn page ui*/
.bank-radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  margin-bottom: 3rem;
}

.bank-option {
  position: relative;
}

.bank-option input[type="radio"] {
  display: none;
}

.bank-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18rem;
  height: 7rem;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bank-option label img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.bank-option input[type="radio"]:checked + label {
  border-color: #065AF3;
}
/*End sell and earn page ui*/

/*Lic premium page ui*/
.modern-tabs-section {
    margin-bottom: 4rem;
}

.modern-tabs-container {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    background: url(../img/dth-background.jpg);
    background-size: cover; background-position: center;
}

.input-group-label{
    font-size: 1.4rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: .8rem;
}

.modern-tabs-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1rem;
    background: linear-gradient(90deg, #6c5ce7, #fd79a8);
}

.modern-tabs-header {
    display: flex;
    background: white;
    padding: 0 2rem;
    position: relative;
}

.modern-tabs-header .nav-link {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3b82f6;
    padding: 2rem 3rem;
    border: none;
    position: relative;
    background: transparent;
    z-index: 1;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.modern-tabs-header .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0.4rem;
    background: #3b82f6;
    transition: all 0.4s ease;
    border-radius: 0.4rem 0.4rem 0 0;
}

.modern-tabs-header .nav-link:hover {
    color: #6c5ce7;
}

.modern-tabs-header .nav-link.active {
    color: #3b82f6;
}

.modern-tabs-header .nav-link.active::before {
    width: 100%;
}

.modern-tabs-header .nav-link i {
    margin-right: 1rem;
    font-size: 1.8rem;
}

.modern-tabs-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.4rem;
    background: #3b82f6;
    border-radius: 0.4rem 0.4rem 0 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modern-tabs-body {
    padding: 2rem;
    position: relative;
}

.modern-tabs-content {
    animation: fadeIn 0.5s ease;
}

.modern-tabs-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.modern-tabs-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 5rem;
    height: 0.4rem;
    background: linear-gradient(90deg, #6c5ce7, #fd79a8);
    border-radius: 0.4rem;
}

.modern-tabs-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #636e72;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(2rem); }
    to { opacity: 1; transform: translateY(0); }
}
/*End Lic premium page ui*/

/*Start BBPS Section*/
.clean-utility{
    padding: 2rem;
    border-radius: 8px;
    background: var(--white-color);
    margin-bottom: 2rem;
    background: url(../img/dth-background.jpg);
    background-size: cover; background-position: center;
}

.form-info{
    font-size: 1.6rem;
    color: var(--gray-color);
    margin: 1.4rem 0;
}
/*End BBPS Section*/

/*Start profile offcanvas section*/
.profile-offcanvas {
    width: 340px !important;
    background: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.profile-offcanvas.offcanvas-end {
    border-left: 1px solid #e9ecef;
}

/* Header Styles */
.profile-offcanvas .offcanvas-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 1.5rem;
}

.profile-offcanvas .offcanvas-header h5{
    font-size: 2rem;
    font-weight: 700;
    margin: 0; color: var(--white-color);
}

.profile-offcanvas .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

/* User Profile Section */
.profile-offcanvas .user-profile {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.profile-offcanvas .user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.profile-offcanvas .user-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #212529;
}

/* Wallet Section - Enhanced */
.profile-offcanvas .wallet-section {
    padding: 1.5rem;
    background: white;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.profile-offcanvas .wallet-title {
    font-size: 1.6rem;
    color: #7b7e91;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-offcanvas .wallet-balance-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-offcanvas .wallet-balance {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2575fc;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.profile-offcanvas .wallet-balance-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Coins Section - Two in a row */
.profile-offcanvas .coins-section {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.profile-offcanvas .coins-row {
    display: flex;
    gap: 1rem;
}

.profile-offcanvas .coin-item {
    flex: 1;
    background: #fff8e1;
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #ffe0b2;
}

.profile-offcanvas .coin-count {
    font-size: 1.6rem;
    font-weight: 600;
    color: #212529;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.profile-offcanvas .coin-count i {
    color: #ffb300;
}

.profile-offcanvas .coin-expiring {
    font-size: 1.4rem;
    color: #e53935;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Menu Items */
.profile-offcanvas .nav-link {
    padding: 1.5rem 1.5rem;
    color: #7b7e91;
    border-radius: 0;
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #edf0ff;
    letter-spacing: .3px;
}

.profile-offcanvas .nav-link:hover {
    background-color: #f6f8fa;
    color: #2c2c2c;
    border-left: 3px solid #2575fc;
}

.profile-offcanvas .nav-link.active {
    background-color: #f1f8ff;
    color: #2575fc;
    font-weight: 600;
    border-left: 3px solid #2575fc;
}

.profile-offcanvas .nav-icon {
    text-align: center;
    font-size: 1.4rem;
}

/* Logout Button */
.profile-offcanvas .logout-section {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    background-color: white;
}

.profile-offcanvas .logout-btn {
    width: 100%;
    padding: 1.2rem 1rem;
    font-size: 1.6rem;
    font-weight: 500;
    background-color: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
    border-radius: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.profile-offcanvas .logout-btn:hover {
    background-color: #dc3545;
    color: white;
}

.profile-offcanvas .offcanvas-body {
    padding: 0;
    overflow-y: auto;
}

/*EDIT PROFILE*/
.dashboard-tabs-section {
}

.dashboard-tabs-section .tabs-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Tabs navigation styling */
.dashboard-tabs-section .nav-tabs {
    display: flex; gap: 1rem; flex-wrap: nowrap;
    border: none;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 0;
    position: relative;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for Chrome/Safari */
.dashboard-tabs-section .nav-tabs::-webkit-scrollbar {
    display: none;
}

.dashboard-tabs-section .nav-tabs::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-tabs-section .nav-item {
    flex-shrink: 0;
}

.dashboard-tabs-section .nav-link {
    color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 2rem 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dashboard-tabs-section .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.dashboard-tabs-section .nav-link.active {
    color: white;
    background: transparent;
    font-weight: 600;
}

.dashboard-tabs-section .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 0.3rem;
    background: white;
    border-radius: 0.3rem 0.3rem 0 0;
}

.dashboard-tabs-section .nav-link i {
    margin-right: 0.8rem;
    font-size: 1.6rem;
}

/* Tab content styling */
.dashboard-tabs-section .tab-content {
    padding: 3rem;
}

/* Enhanced Form Fields */
.dashboard-tabs-section .form-label {
    font-weight: 500;
    font-size: 1.4rem;
    color: #334155;
    margin-bottom: 1rem;
}

.dashboard-tabs-section .form-control,
.dashboard-tabs-section .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.6rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dashboard-tabs-section .form-control:focus,
.dashboard-tabs-section .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.dashboard-tabs-section .input-group-text {
    background-color: #f8fafc;
    border-color: #e2e8f0;
}

.dashboard-tabs-section .btn-primary {
    background-color: #3b82f6;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.dashboard-tabs-section .btn-primary:hover {
    background-color: #2563eb;
}

.dashboard-tabs-section .alert {
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
}

.profile-upload-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 1rem;
}

.profile-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f1f5fe;
/*    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);*/
    margin: 0 auto 1.5rem;
    display: block;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.profile-preview i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4.5rem;
    color: #94a3b8;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.upload-btn {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.upload-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

.upload-btn:active {
    transform: translateY(0);
}

.upload-btn i {
    font-size: 1.2rem;
}

.upload-btn-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.profile-default {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5fe 0%, #e0e7ff 100%);
}

/*BUSINESS INFO PROFILE EDIT PAGE */
.business-docs-upload {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.business-docs-upload .upload-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.business-docs-upload .upload-section-title i {
    color: #4361ee;
    font-size: 1.6rem;
    background: #e0e7ff;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-docs-upload .upload-card {
    border: 2px dashed #e2e8f0;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
/*    height: 100%;*/
    position: relative;
    overflow: hidden;
}

.business-docs-upload .upload-card:hover {
    border-color: #4361ee;
    background: #f0f7ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.1);
}

.business-docs-upload .upload-card.dragover {
    border-color: #4361ee;
    background: #ebf4ff;
    transform: translateY(-1px);
}

.business-docs-upload .upload-icon {
    font-size: 3.5rem;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.business-docs-upload .upload-card:hover .upload-icon {
    color: #4361ee;
    transform: scale(1.05);
}

.business-docs-upload .upload-instructions {
    color: #64748b;
    margin-bottom: 1.75rem;
    font-size: 1.4rem;
    line-height: 1.5;
}

.business-docs-upload .upload-btn {
    background: #4361ee;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
}

.business-docs-upload .upload-btn:hover {
    background: #3a56d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(67, 97, 238, 0.3);
}

.business-docs-upload .preview-container {
    margin-top: 1.75rem;
    display: none;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.business-docs-upload .preview-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    background: white;
}

.business-docs-upload .preview-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.business-docs-upload .preview-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #4361ee;
    font-size: 3rem;
}

.business-docs-upload .remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.2s ease;
}

.business-docs-upload .remove-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.business-docs-upload .file-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #475569;
    text-align: center;
}

.business-docs-upload .file-name {
    font-weight: 500;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    margin: 0 auto 0.25rem;
}

.business-docs-upload .file-size {
    color: #64748b;
    font-size: 0.85rem;
}

.business-docs-upload input[type="file"] {
    display: none;
}
/*End profile offcanvas section*/





































/* Responsive Styles */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
        box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.1);
    }

    .main-content {
        margin-left: 0;
    }

    .toggle-btn {
        display: block;
    }

    .insurance-posp-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-posp-content,
    .insurance-posp-upload {
        grid-column: span 1;
    }
}

/* Animation for dropdown arrow */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-dropdown.active .submenu-link {
    animation: fadeIn 0.3s ease forwards;
}

.menu-dropdown.active .submenu-link:nth-child(1) { animation-delay: 0.1s; }
.menu-dropdown.active .submenu-link:nth-child(2) { animation-delay: 0.15s; }
.menu-dropdown.active .submenu-link:nth-child(3) { animation-delay: 0.2s; }

/*END SIDEBAR*/

/*Start dashboard main content part*/
.dashboard-container {
    margin: 0 auto;
}

/* Compact Card Design */
.admin-card {
    width: 100%;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    transition: all 0.25s ease;
/*    border: 1px solid #e2e8f0;*/
}

.admin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* Left Side - User Info */
.card-user-section {
    flex: 0 0 220px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.user-info {
    position: relative;
    z-index: 2;
}

.user-greeting {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.user-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: white;
}

.user-status {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.85);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}

/* Right Side - Content */
.card-content-section {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    position: relative;
}

.content-text {
    color: #475569;
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Decorative Elements */
.user-section-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.decoration-1 {
    top: -30px;
    right: -30px;
}

.decoration-2 {
    bottom: -15px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.content-decoration {
    position: absolute;
    right: 20px;
    bottom: 20px;
    opacity: 0.1;
    font-size: 4rem;
    font-weight: 700;
    color: #6366f1;
    line-height: 1;
    user-select: none;
}

/*MAIN TABS SECTION*/
/* Payments Section */
.payments-section {
    padding: 2rem 3%;
    background-color: var(--white-color);
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.payments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.payments-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
}

.payments-toggle {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.payments-toggle:hover {
    color: #000;
}

.payments-toggle i {
    transition: transform 0.3s ease;
}

.payments-toggle.active i {
    transform: rotate(180deg);
}

/* Payment Images Grid */
.payments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.payment-image:hover {
    transform: scale(1.03);
}

/* Collapsible Section */
.payments-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.payments-collapsible.active {
    max-height: 1000px;
}
/*END MAIN TABS SECTION*/
/*Start reward section*/
.reward-section {
  padding: 4rem 3%;
background-color: var(--white-color);
margin-top: 2rem;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.reward-section .reward-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.05);
  padding: 2rem;
  height: 100%;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  color: inherit;
  background: url(../img/reward-card-bg.jpg);
  background-size: cover; background-position: center;
  width: 100%; flex-wrap: wrap;
}

.reward-section .reward-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.reward-section .reward-text-block {
  flex: 1;
}

.reward-section .reward-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.reward-section .reward-text {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

.reward-section .reward-link {
  font-size: 1.6rem;
font-weight: 600;
color: #134795;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
background: #fff;
padding: .8rem 2rem;
border-radius: 33px;
}

.reward-section .reward-image {
  width: 12rem;
  height: auto;
  flex-shrink: 0;
}
/*End reward section*/
.cgpey-login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0; background-color: #fff;
}

.left-slider,
.right-form {
  height: 100vh;
}

.right-form img{
    width: 200px;
    margin-bottom: 2rem;
}

.cgpey-login-section .left-slider .owl-carousel,
.cgpey-login-section .left-slider .item {
  height: 100%;
}

.cgpey-login-section .left-slider .owl-carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.cgpey-login-section .right-form {
  background-color: #fff;
  padding: 4rem;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
}

.right-form h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #222;
}

.right-form h2 span {
  color: #00B6FF;
}

.form-group {
  margin-bottom: 2.2rem;
}

.form-group input {
  width: 100%;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 3rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: #0056d2;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 210, 0.1);
}

.form-group i {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #777;
  cursor: pointer;
}

.form-group.position-relative {
  position: relative;
}

.form-links {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.form-links a {
  color: #0056d2;
  text-decoration: none;
}

.btn-login {
  display: block;
  width: 100%;
  background: linear-gradient(93deg, #53B2FE, #065AF3);
  color: white;
  padding: 1.4rem;
  border: none;
  border-radius: 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.05rem;
}

.btn-login:hover {
  background: linear-gradient(90deg, #004FAD, #00B6FF);
}

.signup-text {
  margin-top: 2rem;
  font-size: 1.4rem;
  text-align: center;
}

.signup-text a {
  color: #0056d2;
  text-decoration: none;
  font-weight: 600;
}

.footer-links {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.footer-links a {
  margin: 0 1rem;
  color: #0056d2;
  text-decoration: none;
}
/*End dashboard main content part*/












/*Media quaries*/

@media screen and (max-width: 1200){
    .payments-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 992px){
html{
    font-size: 55%;
}

.cgpey-header__text {
    display: none;
}

.sidebar-logo{
    margin-left: 0;
}

.payments-grid {
    grid-template-columns: repeat(3, 1fr);
}

/*.filter-box {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }*/

  .search-btn {
    width: 100%;
  }

  .yesbank-dmt-card {
    flex-wrap: wrap;
    gap: 2rem; padding: 1.5rem;
  }

  .sender-mobile-container{padding: 1.5rem}

  .sender-mobile-form{flex-wrap: wrap; gap: 1.5rem}

  .cgpey-header{padding: 0 3%;}

  .ott-main-section{margin-top: 2rem;}

  .pricing-grid__container{
    display: flex!important; flex-wrap: wrap;
    gap: 2rem;
  }

  .pricing-card{
    width: 100%;
  }

  .dth-section{
    margin-top: 2rem;
  }

  .dashboard-tabs-section{
    margin-top: 2rem;
  }

  .bank-section-heading{
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 992px){ 
    .toggle-btn{
        display: flex;
        height: 32px;
        width: 32px;
    }

    .aeps-tabs-nav {
        gap: 1rem;
      }
      
      .aeps-tab-item {
        flex: 0 0 auto;
      }

      .menu-text {
        font-size: 1.8rem;
        font-weight: 500;
        transition: var(--transition);
        margin-left: 1.5rem;
    }

    .bankCsp-section{margin-top: 2rem;}
    .aepsTabs-section{margin-top: 2rem;}
}

@media screen and (max-width: 768px){
    .cgpey-header__logo {
        font-size: 2rem;
    }
    
    .cgpey-header__nav {
        gap: 1.5rem;
    }
    
    .cgpey-header__icons {
        gap: 1.5rem;
    }
    
    .cgpey-header__coin-count {
        padding: 0.3rem 0.8rem;
        font-size: 1.2rem;
    }
    
    .cgpey-header__search-bar {
        width: 250px;
    }

    .payments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .payments-quick-actions {
        flex-direction: column;
        gap: 1.5rem;
    }

    .admin-card{
        margin-top: 2rem;
        display: none;
    }

}

@media screen and (max-width: 576px){ 
    .cgpey-header__logo {
        font-size: 1.8rem;
    }
    
    .cgpey-header__coin-count span {
        display: none;
    }
    
    .cgpey-header__coin-count {
        padding: 0.5rem;
    }
    
    .cgpey-header__profile-name {
        display: none;
    }
    
    .cgpey-header__search-bar {
        width: 200px;
        right: -50px;
    }

    .payments-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .payments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .left-slider {
        display: none !important;
      }

      .right-form {
        height: 100vh;
        border-radius: 0;
        box-shadow: none;
      }
      
      .aeps-tab-btn.active {
        background-color: rgba(67, 97, 238, 0.1);
      }
      
      .aeps-tab-btn.active::after {
        display: none;
      }

      .roaming-plan-card__features {
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        /*.roaming-plan-card__feature {
            flex: 1 0 40%;
        }*/

        .roaming-plan-card__main{
            display: block;
        }

        .roaming-plan-card__main-flexBox{
            display: block;
        }

        .roaming-plan-card__price{
            margin-bottom: 1rem;
        }

        /*.roaming-plan-card__action{
            margin-top: 0;
        }*/

        .roaming-plan-card__action{
            width: 100%;
        }

        .ott-nav .nav-link img{
            width: 50px;
        }
}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}

}




























