
<style>
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.top-bar {
  display: flex;
  background-color:#d3d3d3;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  flex-wrap: wrap;
}

.contact p {
  margin: 3px 0;
  font-size: 14px;
}
.contact img {
  width: 14px;
}
.social-icons img {
  width: 24px;
  margin-left: 10px;
}

/* Header */
.header-container {
  display: flex;
  align-items: center;
  padding: 10px 0;
  justify-content: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.institute-name h1 {
  font-size: 3rem;
  margin: 0;
}

.sub-heading {
  font-size: 14px;
  margin-top: 4px;
  color: #32363b;
}
nav {
    background-color: #004080;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

#nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

#nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.3s;
}

#nav-links li a:hover,
#nav-links li.active a {
    background-color: #ff6600;
}

/* Responsive */
@media (max-width: 768px) {
    #menu-toggle {
        display: block;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #004080;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px;
    }

    #nav-links.show {
        display: flex;
    }

    #nav-links li {
        margin: 10px 0;
    }
}

.hero {
  position: relative;
  width: 100%;
  height:40vh;
  overflow: hidden;
}

.slider {
  position: relative;
}

.slide {
  width: 100%;
  display: none;
}

.slide.active {
  display: block;
}

.hero-text {
  position: absolute;
  top: 10%;
  left: 10%;
  color: white;
}

.hero-text h1 {
  font-size: 48px;
  color: #fff;
}

.hero-text p {
  font-size: 20px;
  margin: 10px 0;
}

.btn {
  background: #000000;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}
/* Responsive */
@media (max-width: 768px) {
    
    .hero {
    height:auto;
  overflow: hidden;
}
}
</style>