body, html {
    margin: 0;
    padding: 60;
    width: 100%;
    height: 100%;
}

header {
    text-align: center;
    background-color: #007bff;
    color: white;
    padding: 20px;
    margin-bottom: 100px;
}

.grid-container {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 20px;
    justify-content: center;
    padding: 60px;
}

.item {
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 1px;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    color: #2c2c2c;
    transition: transform 0.5s;
}

.item img {
    width: 100%;
    height: auto;
}

.item:hover {
    transform: scale(1.10);
    box-shadow: 0 5px 15px rgba(39, 134, 197, 0.1);
}

@media (max-width: 200px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

footer {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
.int { 
    background-image: url(Image/intro.jpg);
    height: 100%;
    background-color: rgba(255, 255, 255, 0.795);
    background-blend-mode: lighten;
    background-position: center;
    background-repeat: repeat-y;
    background-size: cover;
    color: #464545;
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-c 
}

.his { 
    background-image: url(Image/history.jpg);
    height: auto;
    background-color: rgba(255, 255, 255, 0.795);
    background-blend-mode: lighten;
    background-position: center;
    background-repeat: repeat-y;
    background-size: cover;
    color: #464545;
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-c 
}

.hiw {
    background-image: url(Image/hiw.jpg);
    height: auto;
    background-color: rgba(255, 255, 255, 0.795);
    background-blend-mode: lighten;
    background-position: center;
    background-repeat: repeat-y;
    background-size: cover;
    color: #464545;
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
}

.tec { 
    background-image: url(Image/techno1.jpg);
    height: auto;
    background-color: rgba(255, 255, 255, 0.795);
    background-blend-mode: lighten;
    background-position: center;
    background-repeat: repeat-y;
    background-size: cover;
    color: #464545;
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-c 
}

.fut { 
    background-image: url(Image/future.jpg);
    height: auto;
    background-color: rgba(255, 255, 255, 0.795);
    background-blend-mode: lighten;
    background-position: center;
    background-repeat: repeat-y;
    background-size: cover;
    color: #464545;
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-c 
}

  .grid-container2 {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    height: 100%;
    align-items: center;
    justify-items: center;
  }

  .grid-item2 {
    text-align: left;
  }

  .header2 {
    grid-column: 1 / span 3;
  }

.item2 {
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 1px;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    color: #2c2c2c;
    transition: transform 0.5s;
}

.navigation-buttons {
    text-align: center;
    margin: 20px 0;
}

.btn, .home-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
}

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

.home-btn {
    background-color: transparent;
    cursor: default;
}