 /* General Styles */
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    
  }
header {
  position: relative; 
  width: 100%;
  height: 400px;
}
  footer {
    background-color: #FE0800;
    color: #fff;
    text-align: center;
  }
/*
  nav {
    display: flex;
    justify-content: center;
    background-color: red;
    padding: 5px;
  }
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
  }
     */
  .content {
    padding: 20px;
  }
  
  .logo img{
    
    margin-left:20px;
    
    


  }
  .Motto{
    
   text-align: center;
   img{
    background-color: #fff;
    height: 200px;
    width: 200px;
    border-radius: 50%;
   }
  }

  /* Social Media Links */
  .social-links {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  .social-links a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
  }
  .social-links img {
    height: 20px;
    width: 20px;
  }



.Mainpage{
  margin-top: 120px; 
  margin-left:25px;
  margin-right:25px;
  h2{
    text-align: center;
    color:red;
    text-decoration: underline;
  }
}
.banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
}
.Principal{
  display: grid;
  grid-template-columns: 1fr 1.618fr; /* Golden ratio */
  gap: 20px; /* Space between the image and paragraph */
  max-width: 1200px; /* Adjust this as needed */
  margin: 0 auto;
}
.Principal-Picture{
  text-align: center;
  img {
    width: 100%;
    height: auto;
}
}

.Principal-Caption{
  font-size: 14px;
  margin-top: 5px;
  color: #555;
}

.Principal-Message{
  font-size: 12px;
}

.Club-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    text-align: center;
    margin: 20px 0;
    img{
  width: 300px;
  height: 300px;
}
  }

  .Department-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    text-align: center;
    margin: 20px 0;
    img{
      height: 300px;
      width:300px;
      
    }

  }


  .Teacher-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    text-align: center;
    margin: 20px 0;
    img{
      height: 300px;
      width:300px;
      
    }

  }

.application {
    background-color: aliceblue;

}

.center{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.important{
  
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: larger;


}
.history{
  font-family: 'Times New Roman', Times, serif;
}
.pledge{
  font-family: fantasy;
  

}
.song{
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: larger;
  font-weight: bold;
  text-align: center;
}

.Contact{
  margin-top:20px;
  margin-left: 20px;
  margin-right: 20px;
  display: grid;
  
  li{
    list-style-type: none;
  }
  grid-template-columns: repeat(3, 1fr);
  gap:50px;
 
  img{
    height: 50px;
    width: 50px;
  }
}

.calendar-frame {
  border: none;       /* removes borders */
  outline: none;      /* removes focus outline */
  width: 950px;        /* make it expand properly */
  height: 500px;      /* adjust as needed */
  background: transparent;
}


    .calendar {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 350px;
    }
    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .calendar-header button {
        background-color: #4CAF50;
        border: none;
        color: white;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 5px;
        font-size: 14px;
    }
    .calendar-header button:hover {
        background-color: #45a049;
    }
    table {
        width: 100%;
        border-collapse: collapse;
    }
    th {
        background: #f0f0f0;
        padding: 8px;
        text-align: center;
    }
    td {
        text-align: center;
        padding: 10px;
        cursor: pointer;
        border-radius: 5px;
        height: 40px;
    }
    td:hover {
        background-color: #e0e0e0;
    }
    .today {
        background-color: #4CAF50;
        color: white;
    }
    .holiday {
        background-color: yellow;
    }
    .important {
        background-color: red;
        color: white;
    }
    .lesser {
        background-color: lightblue;
    }


news-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}
.news-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 3px solid black;
  padding-bottom: 10px;
}
.news-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.news-card:hover {
  transform: scale(1.01);
}
.news-image {
  width: 200px;
  object-fit: cover;
}
.news-content {
  padding: 20px;
  flex: 1;
}
.news-title {
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: red;
}
.news-date {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 10px;
}
.news-summary {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}
.read-more {
  text-decoration: none;
  color: red;
  font-weight: bold;
}
.read-more:hover {
  text-decoration: underline;
}

.job-listing {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}
.job-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: red;
  margin-bottom: 10px;
}
.job-summary {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
}
.read-more-content {
  display: none;
  font-size: 0.95rem;
  color: #333;
  margin-top: 10px;
}
.read-more-button {
  background: none;
  color: red;
  border: none;
  cursor: pointer;
  font-weight: bold;
  padding: 0;
}
.read-more-button:hover {
  text-decoration: underline;
}


form {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    button {
    background: red;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}
button:hover {
    background: darkred;
}
label {
    font-weight: bold;
}
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
}


