body {
  font-family: Arial, sans-serif;
  background: black;
  margin: 0;
}

.card-container {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  gap: 20px;             
  width: 100%;
  max-width: 700px;
  padding: 40px 0;        
  margin: 0 auto;        
}

.card, .employee-card {
  width: 100%;  
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 15px;
  box-sizing: border-box; 
}

.card {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
 
}

.left-text {
  font-family: 'Playfair Display', serif;
  line-height: 1;
  font-size: 30px;
  /* width: 100px; */
  font-weight: bold;
  color: #b30000;
}

.left-text br{
  font-family: 'Poppins', sans-serif; 
  font-size: 10px;
}

.right-text {
  font-family: 'Playfair Display', Didot, 'Times New Roman', serif;
  font-size: 25px;
  font-weight: 500;
  color: #333;
  text-align: right;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: center; 
  margin: 20px auto;
  width: fit-content;      
  margin-bottom: 60px;
}

.logo {
  width: 130px;            
  height: 120px;
}

.logo-text {
  font-size: 50px;
  font-family: 'Startup', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
  color: black;
}

.card-footer {
  margin-top: auto;  
  text-align: center;
  font-size: 15px;
  color: #333; 
}
.center-text {
  margin: 0;
}

.red-text {
  color: red;
  font-weight: bold;
}

.employee-card {
  width: 100%;   
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 15px;
}

.employee-info {
  text-align: left;
  margin-left: 50px;  
  margin-top: 40px;  
}

.employee-name {
  font-size: 30px;
  font-weight: bold;
   line-height: 1;
   font-family: 'Playfair Display', serif;
  margin: 0;
}

.employee-designation {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  color: #555;
  margin: 0;
  margin-bottom: 15px;
}

.contact-section {
  margin-top: 20px;
  width: 100%;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px; 
}

.contact-left {
  display: flex;
  align-items: center;
  margin-left: 50px;      
  color: grey;            
  font-size: 16px;         
  gap: 12px; 
   margin-bottom: 30px;               
}

.contact-right {
  display: flex;
  align-items: center;
  margin-right: 50px;      
  color: grey;             
  font-size: 16px;        
  gap: 12px;  
  margin-bottom: 30px;             
}

.contact-left .contact-icon,
.contact-right .contact-icon {
  color: black;            
  font-size: 22px;      
}

.contact-border {

  height: 2px;             
  background-color: grey;    
  margin: 20px 50px 0 50px; 
}

.location-section {
  display: flex;
  justify-content: space-between;  
  margin: 20px 50px;               
  gap: 10px;                        
}

.location-box {
  background: linear-gradient(90deg, hsla(172, 85%, 74%, 1) 0%, hsla(319, 74%, 64%, 1) 100%);
  padding: 10px 15px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  flex: 1;
 
  color: white; 
  margin-bottom: 30px;
}

.employee-footer {
  display: flex;
  justify-content: center; 
  gap: 25px;              
  margin: 20px 0;          
}

.employee-footer a {
  color: #333;            
  font-size: 22px;         
  text-decoration: none;
  transition: transform 0.2s, color 0.2s;
}

.employee-footer a:hover {
  color: #0073e6;         
  transform: scale(1.2); 
}

button {
  background: linear-gradient(90deg, hsla(172, 85%, 74%, 1) 0%, hsla(319, 74%, 64%, 1) 100%);
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 10px;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

input[type="file"] {
  padding: 8px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
}