/* ===========================
   MUDRA GRUHLAXMI PORTAL
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Segoe UI',sans-serif;
background:#f7f7f7;
color:#333;
}

/* Navbar */

.navbar{
background:#7B3F00 !important;
}

.navbar-brand{
font-size:24px;
font-weight:bold;
color:#fff !important;
}

.nav-link{
color:#fff !important;
font-weight:500;
margin-right:10px;
}

.nav-link:hover{
color:#FFD54F !important;
}

/* Hero */

.hero{
background:linear-gradient(135deg,#F39C12,#8B4513);
padding:70px 0;
}

.hero h1{
font-size:48px;
font-weight:bold;
}

.hero p{
font-size:20px;
}

.hero .btn{
border-radius:30px;
padding:12px 35px;
font-weight:bold;
}

/* Card */

.card{
border-radius:15px;
overflow:hidden;
margin-bottom:30px;
}

.card-header{
font-size:22px;
font-weight:bold;
}

/* Headings */

h3{
font-weight:bold;
margin-bottom:25px;
}

/* Form */

.form-control,
.form-select{
height:48px;
border-radius:10px;
border:1px solid #ddd;
}

textarea.form-control{
height:120px;
}

/* Labels */

label{
font-weight:600;
margin-bottom:6px;
}

/* Upload */

input[type=file]{

padding:10px;

border-radius:10px;

background:#fff;

}

/* Buttons */

.btn-success{

background:#28a745;

border:none;

}

.btn-success:hover{

background:#218838;

}

.btn-warning{

background:#ff9800;

border:none;

color:#fff;

}

.btn-warning:hover{

background:#f57c00;

color:#fff;

}

.btn-danger{

background:#dc3545;

border:none;

}

.btn-danger:hover{

background:#c82333;

}

/* Alert */

.alert{

border-radius:10px;

}

/* Table */

table{

width:100%;

}

/* Footer */

footer{

background:#7B3F00;

color:#fff;

padding:20px;

text-align:center;

margin-top:40px;

}

/* Upload Cards */

.upload-card{

border:1px solid #ddd;

padding:20px;

border-radius:12px;

background:#fff;

transition:.3s;

}

.upload-card:hover{

box-shadow:0 5px 20px rgba(0,0,0,.15);

}

/* Checkbox */

.form-check-input{

width:20px;

height:20px;

}

.form-check-label{

padding-left:10px;

}

/* Responsive */

@media(max-width:768px){

.hero{

text-align:center;

}

.hero h1{

font-size:34px;

}

.navbar-brand{

font-size:20px;

}

.card-header{

font-size:18px;

}

}