body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: white;
}
.top-bar {
background-color: rgb(139, 8, 190);
color: white;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
font-size: 14px;
}

.top-bar .left {
display: flex;
align-items: center;
flex-wrap: wrap;
}

.top-bar .left img {
margin-right: 10px;
height: 30px;
}

.top-bar .right a {
color: white;
text-decoration: none;
margin-left: 15px;
display: inline-block;
}

.top-bar .right a:hover {
text-decoration: underline;
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
background-color: #ffffff;
padding: 5px 15px;
z-index: 1000;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
border-bottom: 2px solid blue;

}

.navbar a {
color: rgb(21, 15, 102);
text-decoration: none;
margin: 0 15px;
font-size: 16px;
}



.dropdown {
position: relative;
display: inline-block;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #6508a3;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
padding: 10px;
z-index: 1;
width: 300px;
}

.dropdown-content a {
display: block;
color: white;
padding: 5px 10px;
}

.dropdown-content a:hover {


}

.dropdown:hover .dropdown-content {
display: block;
}

.main {
position: relative;
text-align: center;
}

.main img {
max-width: 100%;
height: auto;
display: block;
margin-bottom: -30px;
}

.main h1 {
font-size: 40px;
margin-bottom: 20px;
}

.button-container {
margin-top: 20px;
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
}

.button-container a {
text-decoration: none;
padding: 10px 20px;
margin: 0 10px;
border: 2px solid white;
border-radius: 5px;
color: white;
font-size: 16px;
}

.button-container a:hover {
background-color: rgb(160, 17, 216);
color: #fcfcfc;
border: 2px solid black;
}

@media (max-width: 768px) {
.top-bar {
  font-size: 12px;
  flex-direction: column;
  align-items: flex-start;
}

.navbar {
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
}

.navbar a {
  margin: 5px;
  font-size: 14px;
}

.button-container h1 {
  font-size: 28px;
}

.button-container a {
  font-size: 14px;
  padding: 8px 15px;
}
}

@media (max-width: 480px) {
.top-bar {
  font-size: 10px;
  text-align: center;
  padding: 5px;
}
.studentlink:hover .dropdown-content-mobile{
  display: block;
}
.navbar {
  flex-direction: column;
}

.navbar a {
  margin: 5px 0;
  font-size: 12px;
}

.button-container h1 {
  font-size: 22px;
}

.button-container a {
  font-size: 8px;
  padding: 5px 5px;
  margin: 0;
  color: #72079c;
  font-weight: 700;
}

}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}

.hamburger div {
background-color: rgb(21, 15, 102);
height: 3px;
width: 25px;
margin: 4px 0;
}

.nav-links-mobile {
display: none;
flex-direction: column;
background-color: #6508a3;
position: absolute;
top: 100%;
left: 0;
width: 100%;
z-index: 999;
}

.nav-links-mobile a {
padding: 10px 20px;
color: white;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links-mobile a:hover {
background-color: #082b5e;
}

.navbarlinks a:hover {
border-bottom: 5px solid blue;
border-radius: 5px;
padding-bottom: 25px;
text-decoration: none;
transition: .5s;
font-size: 18px;
color: black;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
.hamburger {
  display: flex;
  margin-left: 75%;
}

.nav-links {
  display: none;
}

.nav-links-mobile.open {
  display: flex;
}
}

.footer {
background-color: #001f3f;
color: #ffffff;
padding: 20px 0;
margin-top: 200px;
}

.footer-container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.footer-section {
flex: 1;
min-width: 250px;
padding: 10px;
}

.footer-section h3 {
border-bottom: 2px solid #ffffff;
padding-bottom: 5px;
margin-bottom: 10px;
}

.footer-section ul {
list-style: none;
padding: 0;
}

.footer-section ul li {
margin: 10px 0;
}

.footer-section ul li a {
color: #ffffff;
text-decoration: none;
}

.footer-section ul li a:hover {
text-decoration: underline;
}

.social-icons a {
margin-right: 10px;
color: #ffffff;
font-size: 18px;
text-decoration: none;
}

.social-icons a:hover {
color: #1da1f2;
}

.footer-bottom {
text-align: center;
padding: 10px;
background-color: #000f20;
}

.footer-bottom p {
margin: 0;
font-size: 14px;
}

#goTopBtn {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #1da1f2;
color: #ffffff;
border: none;
border-radius: 50%;
padding: 10px 15px;
font-size: 16px;
cursor: pointer;
display: none;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#goTopBtn:hover {
background-color: #005f99;
}

.footer-section i {
padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
.footer-container {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-section {
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  margin: 5px;
}
}

@media (max-width: 480px) {
.footer-section h3 {
  font-size: 18px;
}

.footer-section ul li {
  font-size: 14px;
}

.footer-bottom p {
  font-size: 12px;
}

#goTopBtn {
  padding: 8px 12px;
  font-size: 14px;
}
#aboutus p{
  text-align: justify;
}
.social-icons{
  display: flex;
  justify-content: center;
  align-items: center;
}
}

.socialMedia {
height: 30px;
width: 30px;
background-color: #0650ee;
border-radius: 5px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}

.social-icons {
display: flex;
gap: 5px;
align-items: center;
}

.socialMedia i {
margin-left: 20px;
}



@media (max-width: 768px) {
.about-section {
  width: 100%;

  flex-direction: column;
  text-align: center;
}

.about-content,
.about-photo {
  max-width: 100%;
}
}


/* whatsapp icon */
.whatsapp-float {
position: fixed;
bottom: 20px;
left: 20px;
z-index: 1000;
text-decoration: none;
}

.whatsapp-icon {
width: 50px;
height: 50px;
border-radius: 50%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease-in-out;
}

.whatsapp-icon:hover {
transform: scale(1.1);
}


.dropdown-content a:hover{
border: none;
padding-bottom: 0;
color: #a19fce;
}


.dropdown-content-mobile{
display: none;
}