* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: rgb(245, 245, 245);
    color: rgb(50, 50, 50);
    line-height: 1.8;
    font-size: 16px;
}

.navbar {
    background-color: #00bcd4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar .logo a {
    color: white;
    font-size: 1.6em;
    text-decoration: none;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color:navy;
}

marquee {
    background-color:wheat;
    padding: 12px;
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    white-space: nowrap;
}

marquee b {
    color: red;
}

.content {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
}

.content h1 {
    color: rgb(255, 87, 51);
    font-size: 3.5em;
}

.content p {
    font-size: 1.3em;
    margin-top: 15px;
    text-align: justify;
    padding: 0 10%;
}

     
.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color:whitesmoke;
    gap: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content-text {
    flex: 1;
    max-width: 60%;
}

.content-text h1 {
    font-size: 2.5em;
    color: royalblue;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    margin-right: 20px;
}

.content-text .intelli {
    color: navy;
}

.content-text .hostel {
    color: burlywood;
}

.content-text p {
    font-size: 1.5em;
    color: #00bcd4;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 15px;
    font-weight: 400;
}

.info {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.info .facilities, .info .services, .info .accommodation {
    flex: 1;
    max-width: 30%;
    margin-right: 100px;
}

h3 {
    font-size: 1.6em;
    color:#00bcd4;
    margin-bottom: 15px;
    font-weight: 650;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
    text-align: justify;
    margin-left: 30px;
}

.content-map {
    flex: 1;
    max-width: 35%;
    border-radius: 10px;
    overflow: hidden;
}

.content-map iframe {
    width: 80%;
    height: 250px;
    border: 1px;
}

h1:hover, h3:hover {
    color: #007BFF;
    cursor: pointer;
}



.pune-city {
    background-color: #00bcd4;
    padding: 50px 20px;
    text-align: center;
}

.pune-city h2 {
    color: whitesmoke;
    font-size: 2em;
    margin-bottom: 10px;
    right: 20px;
}

.pune-description p {
    font-size: 1.2em;
    color: rgb(50, 50, 50);
    text-align: justify;
    padding: 0 15%;
    margin-bottom: 20px;
}

.pune-description a {
    color:  #00bcd4;
    text-decoration: none;
    font-weight: bold;
}

.pune-description a:hover {
    text-decoration: underline;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 25px;
    padding: 20px;
    text-align: center;
}

.image-item {
    background-color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.image-item img {
    width: 100%;
    height: auto;
    border-bottom: 3px solid rgb(255, 87, 51);
}

.image-item .address {
    background-color: wheat;
    color: navy;
    padding: 12px;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
}

footer {
    background-color: rgb(30, 144, 255);
    color: white;
    text-align: center;
    padding: 18px 0;
    margin-top: 40px;
    font-size: 1.1em;
}




.footer {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 10px 10px;
    font-size: 14px;
    position: relative;
    bottom: 1px;
    width: 100%;
}

.footer-nav {
    margin-bottom: 15px;
}

.footer-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links li {
    display: inline;
}

.footer-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.footer-links a:hover {
    color: #25D366;
}

.social-media {
    margin-bottom: 10px;
}

.social-icon {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
}

.social-icon:hover {
    color: #25D366;
}

.footer p {
    margin: 0;
    font-size: 12px;
}


