body {
margin: 25px auto;
    padding: 0 20px;
    max-width: 1200px;
    height: 100vh; /* Full height */
     background: linear-gradient(to bottom, 
    #000000 0%, 
    #000000 33%, 
    #444444 70%, 
    #555555 100%);
    background-attachment: fixed; /* Fixed background */
    color: #fff; /* Light text for contrast */
    font-family: 'Oswald', sans-serif;
}

.content {
  margin-top: 90px; /* Match this to your navbar height */
}

.text {
    white-space: nowrap;  /* Prevents text from wrapping */
}

.center {
   text-align: center;
}

.italic {
   font-style: italic; /* Apply italic style */
}

.custom-line {
    border: none;
    height: 20px; /* Adjust thickness here */
    background-color: #808080; /* Medium gray */
    margin: 20px 0; /* Spacing */
}

ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.navbar {
    height: 50px;
    background-color: #808080;
    padding: 0px 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    transition: top 0.3s;
    display: flex;
    align-items: center;
    overflow-x: auto; /* allows horizontal scrolling on small screens */
    white-space: nowrap; /* ensures inline elements don't wrap */
}

.navbar ul {
  display: flex;
  align-items: center;
  justify-content: center; /* Centers links and pipes horizontally */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0px; /* Reduce spacing between items */
}

.navbar li {
  display: flex;
  align-items: center;
  font-size: 20px;
}

/* For navbar and links */
.navbar a {
  text-decoration: none;
  color: white; /* White text color for links */
  padding: 2px 6px;
  display: inline-block;
}

/* Ensure pipes are black */
.navbar .pipe {
  color: black !important; /* Forces pipes to be black */
  font-size: 30px;
  user-select: none;
}

.navbar li.pipe {
  color: black;
  font-size: 30px;
  user-select: none;
}

/* Hover & Active states */
.navbar a.active,
.navbar a:hover {
    background-color: black;
    color: #fff;
    border-radius: 10px;
}

.image-links {
    display: flex;
    justify-content: center; /* Center the images */
	flex-wrap: wrap;
    gap: 50px; /* Space between images */
    margin-top: 20px; /* Space above the images */
}

.image-links figure {
    text-align: center; /* Center align the text */
	font-size: 25px;
}

.image-links img {
    width: 450px; /* Set a fixed width */
    height: 350px; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: add rounded corners */
}

.image-container {
  max-width: 100%; /* Ensure the container is responsive */
  display: flex;
  justify-content: center; /* Center the image */
}

.image-container img {
	border: 10px solid gray; /* Border around each image */
    display: inline-block; /* Align images in line */
    max-width: 100%; /* Ensure responsiveness */
	height: auto; /* Maintains aspect ratio */
}

.responsive-img {
    width: 100%;
    max-width: 1000px; /* <--- bump this up to make images bigger */
    height: auto;
    display: block;
    margin: 10px auto; /* Optional: adds spacing between sections */
    border: 2px solid #808080;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on small screens */
    justify-content: space-between; /* Spread the columns evenly */
    gap: 20px; /* Add consistent gap between columns */
    margin-bottom: 0px; /* Ensure there’s space at the bottom */
}

/* For each info-column */
.info-column {
    flex: 1 1 300px; /* Make sure each column takes up space evenly, and wraps when necessary */
    text-align: center;
    padding: 10px; /* Add some padding around the columns */
}

/* For <ul> inside each info-column */
.info-column ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.info-column li {
    font-size: 25px;
    margin-bottom: 10px; /* Evenly space out the list items */
}

/* Title inside info-column */
.info-column li:first-child {
    font-size: 35px;
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .navbar a {
        font-size: 16px;       /* Smaller font on mobile */
        padding: 2px 6px;     /* Less padding to fit more links */
    }

    .navbar ul {
        flex-direction: row; /* Make sure links stay in a row */
        text-align: center;
		gap: 4px;
    }

    .navbar li {
        margin-right: 10px; /* Adjust spacing between links if necessary */
		font-size: 16px;
    }   

   .container {
    /* flex-direction: column; ← REMOVE or comment this out */
    align-items: center;
  }

  .info-column {
    width: 50%;  /* Instead of 100%, use 50% or flex-basis if needed */
  }

    .info-column li {
        font-size: 18px; /* Adjust font size for smaller screens */
        margin-bottom: 0px; /* Provide more space between items */
    }
	
	.info-column li:first-child {
    font-size: 22px;
  }
}
	
	 .image-links {
        flex-direction: column;
        align-items: center;
    }

    .image-links img {
        width: 90%;
        height: auto;
    }

    figcaption {
        font-size: 16px;
        padding-top: 8px;
    }

   p, li {
    font-size: clamp(1rem, 2.5vw, 2rem);
}

.page-title {
    text-align: center;
    font-size: 80px;
    margin-bottom: 10px;
    text-decoration: underline;
    margin-top: 30px; /* optional: spacing under nav */
    color: white; /* matches the rest of your text */
}

.section-heading {
    font-size: 50px;
    color: white;
    margin-left: 20px;
}

.sub-heading {
    font-size: 40px;
    color: white;
    margin-left: 40px;
}

.about-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 30px auto;
    border: 2px solid #808080;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

a[href^="tel"] {
    color: inherit;           /* Use surrounding text color */
    text-decoration: none;    /* Remove underline */
    font-size: inherit;       /* Keep the intended size */
}

.image-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Adjusted to match the distance between text and image */
    margin-top: 20px;
}

.about-img {
    max-width: 85%; /* Shrink images by 10% */
    height: auto;
    border: 10px solid gray;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
    margin-bottom: 10px; /* Adjusted space between images */
}

/* Certificate image smaller */
.smaller-img {
    max-width: 70%; /* Shrinks certificate image */
}

/* Optional mobile tweaks */
@media (max-width: 768px) {
    .smaller-img {
        max-width: 85%;
    }
}

/* Adds top margin to push image below navbar */
.content-top {
    margin-top: 100px; /* adjust as needed based on navbar height */
}

@media (max-width: 768px) {
  .container {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .info-column {
    margin-bottom: 5px;  /* Previously 0, now just a little space for readability */
    padding-bottom: 0;
  }
  
   .info-column:last-child {
    margin-bottom: 0;  /* Ensure the last one doesn't add extra space */
  }
  
   .image-container {
        margin-top: 10px; /* Less space above the image */
    }

    .responsive-img {
        margin-top: 10px; /* Optional: adjust margin above image */
    }

  p.italic {
    margin-top: 10px; /* Pull it closer to the columns */
  }
}

.elfsight-app-d7bef950-06a5-4cd6-9d79-5f3974f51f45 {
  background-color: transparent !important;
  padding: 20px;
}