/* Info Strip Styling */
.info-strip {
    background-color: #80b3ff; /* Light blue shade of the current blue color */
    padding: 10px 0;
    color: #004080; /* Dark blue text for contrast */
}

.info-strip-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.info-strip-contact {
    display: flex;
    gap: 20px;
    font-size: 0.9em;
}

.info-strip-address,
.info-strip-email,
.info-strip-contact-number {
    margin-right: 20px;
}

.info-strip-email a {
    color: #004080;
    text-decoration: none;
}

.info-strip-social {
    display: flex;
    gap: 15px;
}

.info-strip-social-link {
    color: #ffffff;
    font-size: 1.5em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.info-strip-social-link:hover {
    color: #ffa500; /* Change color on hover for emphasis */
    transform: scale(1.2);
}

/* Header Styling */
.header-section {
    background-color: #004080;
    color: #ffffff;
    padding: 15px 20px;
}

.header-container {
    display: flex;
    align-items: center;
}

.header-branding {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 80px; /* Adjust size as necessary */
    height: auto;
    margin-right: 20px; /* Space between the logo and the name */
}

.header-institute-name {
    font-size: 2em; /* Increase font size to match the logo size */
    font-weight: 700;
    color: #ffffff;
}

/* Navbar Styling */
.navbar-section {
    background-color: #003366; /* Darker blue for menu strip */
    padding: 10px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

.navbar-item {
    margin: 0 15px;
}

.navbar-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

.navbar-link:hover {
    background-color: #0055a3; /* Lighter shade for hover effect */
    border-radius: 5px;
}
