/* Reset basic margins */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header{background-image: url(../images/techBanner.jpg);  background-repeat: no-repeat; background-size: 100vw; height: 50vh;}

/* Navigation */
nav {
  background-color: #050D41;
}
.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px;
  margin: 0;
}
.nav-list li {
  margin: 0 20px;
}
.nav-list a {
  color: #939FF5;
  text-decoration: none;
  font-weight: bold;
}
.nav-list a:hover {
  text-decoration: underline;
}


/* Navigation Dropdown Styling */

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #050D41;
  min-width: 150px;
  z-index: 1000;
  top: 100%;
  left: 0;
  padding: 0;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  color: #939FF5;
  text-decoration: none;
}

.dropdown-menu a:hover {
  color: #c3c9f5;
}

.dropdown:hover .dropdown-menu {
  display: block;
}


.header_text{
    color: #c3c9f5;
    text-align: center;
    margin-top: 10vh;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


/* Section styling */
.section {
  padding: 40px 20px;
}

/* About Section Layout */
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#about-section{height: 60vh; background-color: #1127C4; color: #939FF5;}


.contact-section{height: 60vh;}

.about-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}
.about-text {
  flex: 1;
  min-width: 250px;
  padding: 50px;
}

/* Contact Section */
.contact-info {
  margin-bottom: 20px;
}
.map-container iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  padding: 40px 20px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-col {
  flex: 1;
  min-width: 150px;
}
.footer-col h4 {
  margin-bottom: 10px;
}
.footer-col a {
  color: #ccc; /* Ensures sufficient contrast on #222 background */
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}
.footer-col a:hover {
  color: #fff; /* Even higher contrast for hover state */
}

.footer-col a i {
  font-size: 20px;
  margin-right: 10px;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-col a i:hover {
  color: #ccc;
}



.social_icon{
  text-align: center; padding: 20px;
}

.social_icon span a{
  display: inline-block;
}
