body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image: url("../Images/about1.jpg");
    background-size:cover;
}

.container {
    max-width: 1170px;
    margin: auto;
}

header {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 10;
    background-color: #000000;
    padding: 15px 15px;
}

header .logo a {
    font-size: 30px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
}

header .logo a span {
    color: #ee4609;
}

header .nav ul li a.active::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .2;
    transition: width .5s ease;
    z-index: -1;
}

header .nav ul li a::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 0px;
    background-color: #000000;
    opacity: .2;
    transition: width .5s ease;
    z-index: -1;
}

header .nav ul li a:hover::before {
    width: 100%;
}


.department-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
  }
  
  .department-box {
    width: 16%;
    /* Adjust as needed to fit 4 boxes in 1 row */
    margin: 5px 5px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333;
  }
  

/* .department-box {
    background-color: #ffffff;
    padding: 20px;
    border: 2px solid #d44713;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
} */


.department-box:hover {
    border: 2px solid #F6450A;
    border-radius: 10px;
    box-shadow: 0 0 15px #ee701d;
}

.department-box h2 {
    font-size: 24px;
    color: #d44713;
    margin-bottom: 10px;
}

.department-box .hod {
    color: #555555;
    margin-bottom: 5px;
}

.department-box .description {
    color: #777777;
    font-size: 14px;
    line-height: 18px;
}
