body{
    
  font-family: "Roboto", sans-serif !important;
    
}
/* CARD */
.feat-card{
  
  margin:auto;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  border:1px solid #cfdaf0;
  text-align:center;
}

/* TOP BLUE */
.feat-header{
  background:#2b5aa6;
  height:90px;
  position:relative;
}

/* NOTABLE BADGE */
.badge-top{
  position:absolute;
  top:10px;
  left:10px;
  background:#c9a84c;
  color:#1a3a6e;
  font-size:10px;
  padding:3px 8px;
  border-radius:10px;
  font-weight:600;
}

/* GOLD LINE */
.gold-line{
  height:3px;
  background:#c9a84c;
}

/* AVATAR */


/* AVATAR */
.avatar img{
  width:100px;
  height:100px;
  border-radius:50%;
  background:#2b5aa6;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  font-size:22px;
  border:3px solid #fff;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-35px;
}

/* BODY */
.feat-body{
  padding:50px 15px 20px;
}

.name{
  font-weight:600;
  color:#1e3a5f;
}

.role{
  font-size:13px;
  color:#5b7bb5;
}

.company{
  font-size:13px;
  font-weight:600;
  color:#1a3a6e;
}

.year{
  font-size:11px;
  color:var(--gold);
  letter-spacing:1px;
  margin:5px 0;
}

.loc{
  font-size:12px;
  color:#5b7bb5;
}

/* BUTTON */
.btn-linkedin{
  margin-top:10px;
  font-size:12px;
}
/* End Card */


.bg-1{
    background-color:#f0f5fc;
}

.bg-2{
    background-color:#2563C8;
}

.form-section{

background: #fff;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    border-top: 4px solid #c9a84c;
    
}

.file-upload-box {
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  background: #f8fafc;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.file-upload-box:hover {
  border-color: #0d6efd;
  background: #eef4ff;
}

.file-upload-box input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-box .upload-text {
  display: block;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 5px;
}

.file-upload-box small {
  color: #6b7280;
}


.alumni-title {
  position: relative;
  display: inline-block;
  padding-bottom: 10px; /* Space between line and heading */
 
}

.alumni-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #c9a84c; /* White line */
  width: 20%; /* Line width */
  margin: 0 auto;
  
}

.hero {
    background: #2563C8;
    padding: 15px 0 40px 0;
    color: #fff;
    text-align: center;
}

/* LOGO */
.hero-logo img {
    margin-bottom: 10px;
}

/* SCHOOL NAME BIG */
.hero h5 {
    font-size: 28px;   /* bada kiya */
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #ffffff;
}

/* SUB TITLE */
.hero h6 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

/* GOLD LINE */
.gold-bar {
    width: 70px;
    height: 3px;
    background: #c9a84c;
    margin: 12px auto;
}

.hero-tagline {
    font-size: 15px;
    margin-bottom: 3px;
}

.hero-sub {
    font-size: 13px;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* 🔥 NEW STATS DESIGN */
.stats-box {
    background: #ffffff;
    color: #2563C8;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* top accent line */
.stats-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #c9a84c;
}

/* hover effect */
.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* number */
.stat-num {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

/* label */
.stat-label {
    font-size: 13px;
    font-weight: 500;
}

/* mobile adjust */
@media (max-width: 576px) {
    .hero h5 {
        font-size: 22px;
    }
}


/* Default placeholder color */
::placeholder {
  color: #999 !important;
  opacity: 1; /* Firefox fix */
   font-size: 14px !important;
}

/* Chrome / Safari */
::-webkit-input-placeholder {
  color: #999 !important;
   font-size: 14px !important;
}

/* Firefox */
::-moz-placeholder {
  color: #999 !important;
   font-size: 14px !important;
}

/* IE / Edge */
:-ms-input-placeholder {
  color: #999 !important;
   font-size: 14px !important;
}
 select {
  font-size: 14px;
  color: #999; /* default placeholder jaisa */
}