* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    background-color:#FBF4DB;
}

.cardflex{
    gap: 15px;
}

.header-list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-list-nav ul {
    display: flex;
  }
  .header-list-nav ul li {
    list-style-type: none;
    padding: 0 10px;
    position: relative;
  }
  .header-list-nav ul a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
  }
  .header-list-nav ul a:hover,
  .header-list-nav ul a.active {
    color: #088178;
    content: "";
  }
  .header-list-icon a {
    color: #1a1a1a;
    padding-left: 20px;
    transition: 0.3s ease;
  }
  .header-list-icon a:hover,
  .header-list-nav ul a.active {
    color: #088178;
  }
header {
    /* margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px; */

    margin: 10px 10px 10px 10px;

    border-radius: 25px;
    background-color: rgb(223, 229, 231);
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

header .logo h1 {
    font-size: 24px;
}

header nav ul {
    list-style-type: none;
    display: flex;
    justify-content: baseline;
}

header nav ul li {
    margin-left: 20px;
    
}

header nav ul li a {
    color: black;
    text-decoration: none;
}

header nav ul li a:hover {
    text-decoration: underline;
}

.imag{
    width: 1200px;
    margin-top: 15px;
    display: flex;
    gap: 70px;
    position: relative;
}
.heading{
    margin-left: 50px;
}


.icon1{
    position: absolute;
    top: 5px;
    left: 102px;
    width: 40px;
    border-radius: 5px;
}

.info{
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 20px;
    width: 500px;
    margin-left: 30px;

}


.ing{
    display: flex;
    width: 600px;
    gap: 5px;
}
.width{
    width: 300px;
    border-radius: 6px;
    box-shadow: 2px 2px 10px rgb(133, 131, 131);
    transition: all 3s ease;
}
.img1:hover{
    transform: scale(1.1);
}
.img2:hover{
    transform: scale(1.1);
}
.img3:hover{
    transform: scale(1.1);
}


.banner {
    background:url("../assets/images/main/main-img-11.jpg");
    background-size:cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    color:white;
    text-align: center;
    padding: 100px 20px;

   
}
.pic{
    position: relative;
    height: 300px;
    width: auto;
    margin:50px;
}



.image1{
    position: absolute;
    left: 200px;
}

.pic p{
    font-size:30px;
}
.text p{
    width: 500px;
    height: 200px;
    font-size: 15px;
    float: left;
    padding:20px;
    margin-top: 10px;
}
.photo{
    float: left;
    height: 90px;}


.banner h2 {
    font-size: 36px;
    padding-top: 50px;
}

.banner p {
    font-size: 20px;
    margin-top: 10px;
    
}

.courses {
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.courses h2 {
    text-align: center;
    margin-bottom: 30px;
}

.course-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.course {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
}

.course h3 {
    margin-bottom: 10px;
}

.faculty {
    padding: 50px 20px;
}

.faculty h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faculty-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.faculty-member {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
}

.faculty-member h3 {
    margin-bottom: 5px;
}

.contact {
    background-color:grey;
    color: #fff;
    text-align: center;
    padding: 30px 5px;
}

.contact p {
    margin-top: 10px;
}

footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}





.card {
    width: 280px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top:10px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #333;
}

.card-description {
    font-size: 0.9rem;
    color: #555;
    margin: 10px 0;
}

.card-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card-button:hover {
    background-color: #0056b3;
}


.cardflex{
    display: flex;
    justify-content: space-evenly;
    margin-top: 40px;
}
.head{
    margin-top: 30px;
    margin-left: 700px;
}

.contact{
    margin-top: 20px;
}
a{
    text-decoration: none;
}

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