
.program-card {
   background: #fff;
   border-radius: 20px;
   padding: 40px 30px;
   text-align: center;
   box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: all 0.3s;
   height: 100%;
   border: 3px solid transparent;
}
.program-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 40px rgba(79,172,254,0.2);
   border-color: #4facfe;
}
.program-icon {
   width: 100px;
   height: 100px;
   background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 25px;
   font-size: 40px;
   color: #fff;
}
.program-title {
   font-size: 24px;
   font-weight: 700;
   color: #333;
   margin-bottom: 15px;
}
.program-description {
   color: #666;
   line-height: 1.8;
}

.curriculum-item {
   background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
   border-radius: 15px;
   padding: 30px;
   margin-bottom: 20px;
   border-left: 5px solid #4facfe;
   transition: all 0.3s;
}
.curriculum-item:hover {
   transform: translateX(10px);
   box-shadow: 0 10px 30px rgba(79,172,254,0.15);
}
.curriculum-icon {
   font-size: 40px;
   color: #4facfe;
   margin-bottom: 15px;
}
.curriculum-title {
   font-size: 22px;
   font-weight: 700;
   color: #333;
   margin-bottom: 10px;
}
.curriculum-description {
   color: #666;
   line-height: 1.8;
}

.faculty-card {
   background: #fff;
   border-radius: 20px;
   padding: 30px;
   text-align: center;
   box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: all 0.3s;
}
.faculty-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 40px rgba(245,87,108,0.2);
}
.faculty-icon {
   width: 120px;
   height: 120px;
   background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
   font-size: 50px;
   color: #fff;
}
.faculty-name {
   font-size: 20px;
   font-weight: 700;
   color: #333;
   margin-bottom: 8px;
}
.faculty-role {
   color: #f5576c;
   font-weight: 600;
   margin-bottom: 15px;
}
.faculty-description {
   color: #666;
   line-height: 1.8;
   font-size: 14px;
}


