.head2
{

    font-style: italic;
    color: black;
    border-bottom: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(245, 211, 160);
    padding: 10px;
font-size:30px;
}
p
{
    
    color: black;
  
    padding: 10px;
    text-align: justify;
    font-family: 'Times New Roman', Times, serif;
    font-size:18px;
    line-height: 1.5;


}


.head3
{
    font-style: italic;
    color: black;
    border-bottom: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(245, 211, 160);
    padding: 10px;
font-size:30px;

}
p
{
    color: black;
  
    padding: 10px;
    text-align: justify;
    font-family: 'Times New Roman', Times, serif;
    font-size:18px;
    line-height: 1.5;   
}
.column {
    float: left;
    width: 48%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgb(6, 33, 63);
   
 
    margin: 9px;
  }
  .column p
 
  {
    color: white;
  }
  .column:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;

  }
  /* Clear floats after the columns */
  .row:after 
  {
    content: "";
    display: table;
    clear: both;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgb(167, 247, 220);
  }

/*--------------------------------------------------------------------------*/
.head3 i {
    font-size: 36px; /* Icon size */
    color: #007bff; /* Icon color */
    transition: transform 0.3s ease;
    color: white;
  }

  .head3:hover i {
    transform: scale(1.2); /* Hover effect: zoom in the icon */
    color: white;
  }
  .head3
  {
    color: white;

  }

  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 800px;
    margin: 20px auto;
  }
  .gallery-item {
    width: calc(25% - 10px); /* 4 items per row */
    padding-top: 25%;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
  }
  .gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Pagination Styling */
  .pagination {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin-top: 20px;
  }
  .pagination li {
    margin: 0 5px;
    cursor: pointer;
  }
  .pagination li a {
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  .pagination li a:hover,
  .pagination li a.active {
    background-color: #333;
    color: #fff;
  }

  .table-container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    overflow-x: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.styled-table thead tr {
    background-color: #4CAF50;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #4CAF50;
}

.styled-table tbody tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.fcnt
{

  display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 20px;
}
.faculty-card {
    background-color: white;
    margin: 5px;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 180px;
}
.faculty-card img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
}
.faculty-card h3 {
    margin: 10px 0;
    font-size: 18px;
}
.faculty-card p {
    font-size: 14px;
    color: #777;
}
