@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body{
  margin:0;
  font-family: 'Inter', sans-serif;
  background:#f5f7fb;
}

/* Layout */
.wrapper{
  display:flex;
  min-height:100vh;
}

/* Sidebar */
.sidebar{
  width:260px;
  background:#0b1220;
  color:#fff;
  padding:20px;
}

.sidebar h2{
  font-size:20px;
  margin-bottom:25px;
}

.sidebar a{
  display:block;
  color:#cbd5e1;
  padding:12px;
  margin:6px 0;
  text-decoration:none;
  border-radius:10px;
  transition:0.3s;
}

.sidebar a:hover{
  background:#1e293b;
  color:#fff;
  transform:translateX(5px);
}

/* Main */
.main{
  flex:1;
}

/* Navbar */
.navbar{
  background:#fff;
  padding:15px 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

.search{
  width:300px;
  padding:10px;
  border:1px solid #e2e8f0;
  border-radius:10px;
}

/* Content */
.content{
  padding:25px;
}

/* Cards grid */
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.card{
  background:#fff;
  padding:20px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

/* Buttons */
.btn{
  display:inline-block;
  padding:10px 16px;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  color:#fff;
  border-radius:10px;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.05);
}

/* Badge */
.badge{
  padding:5px 10px;
  border-radius:20px;
  font-size:12px;
}

.pending{background:#fef3c7;color:#92400e;}
.approved{background:#dcfce7;color:#166534;}
.rejected{background:#fee2e2;color:#991b1b;}
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
}

/* Bank Card */
.bank-card{
  text-align:center;
  transition:0.3s;
}

.bank-card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.bank-card h3{
  margin-bottom:10px;
}
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
}

a {
    text-decoration: none;
    color: blue;
}
.page-header h2 {
    margin-bottom: 5px;
}

.page-header p {
    color: #777;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bank-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.bank-card:hover {
    transform: translateY(-5px);
}

.btn {
    background: #4CAF50;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.btn {
  display: inline-block;
  margin-top: 10px;
}
.card p {
  color: #666;
  font-size: 14px;
  margin: 10px 0;
}
.form-container {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.submit-btn {
  margin-top: 20px;
  background: #4CAF50;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
}
.upload-container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.sub-text {
  color: #777;
  margin-bottom: 20px;
}

/* Steps */
.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.step {
  text-align: center;
  font-size: 13px;
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ddd;
  margin: auto;
  line-height: 30px;
}

.step.active .step-circle {
  background: #4CAF50;
  color: #fff;
}

.step.completed .step-circle {
  background: #4CAF50;
  color: #fff;
}

/* Upload Box */
.upload-box {
  border: 2px dashed #ccc;
  padding: 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.upload-box:hover {
  border-color: #4CAF50;
  background: #f9fff9;
}

.file-name {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

/* Button */
.submit-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  margin-top: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.btn {
  display: inline-block;
  margin-top: 10px;
  background: #4CAF50;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
}
/* =========================
CARD PREVIEW
========================= */

.card-preview-wrapper{

display:flex;
flex-direction:row;

gap:30px;
}

/* CARD */

.real-card{

position:relative;

width:100%;
max-width:500px;

border-radius:24px;

overflow:hidden;

box-shadow:
0 15px 40px rgba(0,0,0,0.15);

transition:0.3s;
}

.real-card:hover{
transform:translateY(-5px);
}

/* BG */

.card-bg{

width:100%;
display:block;
}

/* CONTENT */

.card-content{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;
}

/* CARD NUMBER */

/* .card-number{

position:absolute;

bottom:110px;
left:65px;

font-size:34px;
font-weight:bold;

letter-spacing:5px;

color:#000;
} */

/* USER */

.card-user{

position:absolute;

    bottom: 70px;
    left: 21px;
    font-size: 10px;
font-weight:bold;

color:#000;
}

/* VALID */

.card-valid{

position:absolute;

    bottom: 68px;
    right: 272px;
    font-size: 15px;
font-weight:bold;

color:#000;
}

/* MOBILE */

@media(max-width:768px){

.card-number{

font-size:18px;

left:30px;
bottom:60px;
}

.card-user{

font-size:15px;

left:30px;
bottom:30px;
}

.card-valid{

font-size:14px;

right:45px;
bottom:32px;
}

}
.card-top {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.card-number {
  margin: 20px 0;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: bold;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
}

.card-bottom small {
  font-size: 12px;
  opacity: 0.8;
}

/* DASHBOARD */

.dashboard-container{
padding:25px;
background:#f4f7fb;
min-height:100vh;
}

/* HERO */

.hero-section{
background:linear-gradient(135deg,#2e7d32,#4CAF50);
padding:30px;
border-radius:20px;
display:flex;
justify-content:space-between;
align-items:center;
color:#fff;
margin-bottom:25px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.hero-section h1{
margin:0;
font-size:32px;
}

.hero-section p{
margin-top:10px;
opacity:0.9;
}

/* APPLY BUTTON */

.apply-btn{
background:#fff;
color:#2e7d32;
padding:14px 22px;
border-radius:12px;
font-weight:bold;
text-decoration:none;
}

/* STATS */

.stats-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-bottom:25px;
}

.stats-card{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.stats-card h3{
margin:0;
font-size:16px;
color:#666;
}

.stats-card p{
font-size:34px;
font-weight:bold;
margin-top:10px;
color:#2e7d32;
}

/* MAIN GRID */

.main-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:25px;
}

/* KISAN CARD */

.kisan-card{
position:relative;
background:linear-gradient(135deg,#1b5e20,#43a047);
padding:30px;
border-radius:24px;
color:#fff;
overflow:hidden;
min-height:250px;
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.card-overlay{
position:absolute;
top:-80px;
right:-80px;
width:220px;
height:220px;
background:rgba(255,255,255,0.1);
border-radius:50%;
}

.card-top{
display:flex;
justify-content:space-between;
align-items:center;
}

.card-top h2{
margin:0;
font-size:28px;
}

.card-top span{
font-size:14px;
opacity:0.8;
}

/* CHIP */



/* CARD NUMBER */


/* CARD BOTTOM */

.card-bottom{
display:flex;
justify-content:space-between;
}

.card-bottom small{
opacity:0.8;
}

.card-bottom p{
margin-top:5px;
font-size:18px;
font-weight:bold;
}

.active-status{
color:#9cffb1;
}

/* ACTION BUTTONS */

.action-buttons{
display:flex;
gap:15px;
margin-top:20px;
}

.dashboard-btn{
background:#2e7d32;
color:#fff;
padding:12px 18px;
border-radius:12px;
text-decoration:none;
font-weight:bold;
}

.outline-btn{
background:#fff;
border:2px solid #2e7d32;
color:#2e7d32;
}

/* SIDE CARD */

.side-card{
background:#fff;
padding:22px;
border-radius:18px;
margin-bottom:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.side-card h3{
margin-top:0;
margin-bottom:20px;
}

/* SIDE BUTTON */

.side-btn{
display:block;
padding:14px;
background:#f4f7fb;
margin-bottom:12px;
border-radius:10px;
text-decoration:none;
color:#222;
font-weight:600;
}

/* ACTIVITY */

.activity-item{
display:flex;
justify-content:space-between;
margin-bottom:15px;
}

.pending{
color:#ff9800;
font-weight:bold;
}

.approved{
color:#4CAF50;
font-weight:bold;
}

/* MOBILE */

@media(max-width:900px){

.main-grid{
grid-template-columns:1fr;
}

.stats-grid{
grid-template-columns:1fr;
}

.hero-section{
flex-direction:column;
align-items:flex-start;
gap:20px;
}

}

/* =========================
DASHBOARD UI PROFESSIONAL
========================= */

body{
background:#f4f7fb;
font-family:Arial, sans-serif;
}

/* MAIN CONTAINER */

.dashboard-container{
padding:30px;
}

/* HERO SECTION */

.hero-section{
display:flex;
justify-content:space-between;
align-items:center;

background:
linear-gradient(135deg,#2e7d32,#43a047);

padding:35px;

border-radius:22px;

color:#fff;

margin-bottom:30px;

box-shadow:
0 10px 30px rgba(46,125,50,0.25);
}

.hero-section h1{
font-size:34px;
margin-bottom:10px;
}

.hero-section p{
font-size:16px;
opacity:0.9;
max-width:550px;
line-height:28px;
}

/* APPLY BUTTON */

.apply-btn{
background:#fff;
color:#2e7d32;

padding:14px 24px;

border-radius:12px;

text-decoration:none;

font-weight:bold;

transition:0.3s;

box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

.apply-btn:hover{
transform:translateY(-3px);
}

/* STATS GRID */

.stats-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-bottom:30px;
}

/* CARD */

.stats-card{
background:#fff;

padding:25px;

border-radius:18px;

box-shadow:
0 4px 15px rgba(0,0,0,0.06);

transition:0.3s;

border-left:5px solid #4CAF50;
}

.stats-card:hover{
transform:translateY(-4px);
}

.stats-card h3{
font-size:15px;
color:#666;
margin-bottom:12px;
}

.stats-card p{
font-size:34px;
font-weight:bold;
color:#2e7d32;
}

/* MAIN GRID */

.main-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:25px;
}

/* KISAN CARD */

.kisan-card{
position:relative;

background:
linear-gradient(135deg,#1b5e20,#43a047);

padding:35px;

border-radius:24px;

overflow:hidden;

color:#fff;

min-height:260px;

box-shadow:
0 10px 25px rgba(0,0,0,0.15);
}

.card-overlay{
position:absolute;
top:-80px;
right:-80px;

width:240px;
height:240px;

background:rgba(255,255,255,0.08);

border-radius:50%;
}

/* TOP */

.card-top{
display:flex;
justify-content:space-between;
align-items:flex-start;

margin-bottom:50px;

position:relative;
z-index:2;
}

.card-top h2{
font-size:28px;
margin-bottom:8px;
}

.card-top span{
font-size:14px;
opacity:0.9;
}

/* CHIP */



/* NUMBER */

.card-number
{

position:absolute;

     bottom: 82px;
    right: 300px;
    font-size: 21px;
font-weight:bold;

color:#000;
}


/* BOTTOM */

.card-bottom{
display:flex;
justify-content:space-between;

position:relative;
z-index:2;
}

.card-bottom small{
font-size:13px;
opacity:0.8;
}

.card-bottom p{
font-size:18px;
font-weight:bold;
margin-top:5px;
}

.active-status{
color:#c8ffbf;
}

/* BUTTONS */

.action-buttons{
display:flex;
gap:15px;
margin-top:20px;
}

.dashboard-btn{
background:#2e7d32;
color:#fff;

padding:14px 22px;

border-radius:12px;

text-decoration:none;

font-weight:bold;

transition:0.3s;

box-shadow:
0 6px 15px rgba(46,125,50,0.2);
}

.dashboard-btn:hover{
transform:translateY(-3px);
}

.outline-btn{
background:#fff;
color:#2e7d32;
border:2px solid #2e7d32;
}

/* SIDE CARD */

.side-card{
background:#fff;

padding:25px;

border-radius:20px;

margin-bottom:20px;

box-shadow:
0 4px 15px rgba(0,0,0,0.06);
}

.side-card h3{
margin-bottom:20px;
font-size:20px;
color:#222;
}

/* SIDE BUTTON */

.side-btn{
display:block;

background:#f4f7fb;

padding:14px 18px;

border-radius:12px;

margin-bottom:12px;

text-decoration:none;

color:#333;

font-weight:600;

transition:0.3s;
}

.side-btn:hover{
background:#2e7d32;
color:#fff;
}

/* ACTIVITY */

.activity-item{
display:flex;
justify-content:space-between;
align-items:center;

padding:14px 0;

border-bottom:1px solid #eee;
}

.activity-item:last-child{
border-bottom:none;
}

/* STATUS */

.pending{
background:#fff3cd;
color:#856404;

padding:6px 12px;

border-radius:20px;

font-size:13px;
font-weight:bold;
}

.approved{
background:#d4edda;
color:#155724;

padding:6px 12px;

border-radius:20px;

font-size:13px;
font-weight:bold;
}

/* RESPONSIVE */

@media(max-width:992px){

.stats-grid{
grid-template-columns:1fr;
}

.main-grid{
grid-template-columns:1fr;
}

.hero-section{
flex-direction:column;
align-items:flex-start;
gap:20px;
}

}

@media(max-width:600px){

.dashboard-container{
padding:15px;
}

.hero-section{
padding:25px;
}

.hero-section h1{
font-size:26px;
}

.card-number{
font-size:24px;
letter-spacing:3px;
}

.action-buttons{
flex-direction:column;
}

.dashboard-btn{
text-align:center;
}

}
/* RIGHT SECTION */

.header-right{
display:flex;
align-items:center;
gap:22px;
}

/* SOCIAL ICONS */

.social-icons{
display:flex;
align-items:center;
gap:12px;
}

.social-icons a{
width:40px;
height:40px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:#f4f7fb;

color:#2e7d32;

font-size:16px;

text-decoration:none;

transition:0.3s;
}

.social-icons a:hover{
background:#2e7d32;
color:#fff;
transform:translateY(-3px);
box-shadow:0 8px 18px rgba(46,125,50,0.25);
}

/* MOBILE */

@media(max-width:768px){

.header-right{
flex-direction:column;
gap:15px;
}

.social-icons{
justify-content:center;
}

}
