
/* General Styles */
body,
html {
  height: 100%;
  margin: 0;
  font-family: "Roboto Condensed", serif;
  font-weight: 100; /* Bolder weight */
}

.large-heading {
  font-size: 5rem !important; /* You can adjust this size */
  font-weight: 700; /* Optionally make it bolder */
  line-height: 1.2; /* Adjust the line height for better readability */
}

/* Full-Screen Landing Section */
/* .hero-section {
  height: 100vh;
  background-image: url("../images/bg-21.jpg"); 
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  padding-top: 25vh;
  color: white;
} */

.hero-section {
  min-height: calc(100vh - 40px); /* Adjust height to leave space for the footer */
  display: flex;
  background-color: rgba(0, 0, 0, 0.93);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 25vh;
  color: white;
  box-sizing: border-box;
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.959);
  color: white;
  padding: 10px 0;
  font-size: 14px;
  z-index: 9999;
  box-sizing: border-box;
}


.hero-section h1 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.5rem;
}

.email-link {
  color: #fcfcfc; /* White color */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.email-link:hover {
  color: #999999; /* Slightly lighter white for hover */
  text-decoration: underline;
}

.fa-envelope {
  margin-right: 5px;
}

/* Section Styles */
.section {
  padding: 50px 0;
  background-color: #000;
  color: #fff;
  margin-bottom: 0px; /* Separate sections slightly */
}

.text-color {
  color: #00ffbf; /* Accent color */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .navbar-collapse {
    text-align: right;
  }
  .navbar-nav {
    margin-left: auto;
    margin-right: 0;
  }
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }
 
}
