:root {
    --font-weight: 700;
}

/* --- Fonts --- */
@font-face {
    font-family: "SourceSans3";
    src: url("fonts/SourceSans3-VariableFont_wght.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* --- General Body Styles --- */
body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 22px;
}

/* --- Headings --- */
h1 {
    color: #0d6efd;
}

.page-header h1 {
    background-color: #ffffff;
    padding-top: 3rem;
    color: #0d6efd;
}

.page-header p {
    font-size: 1.25rem;
    color: #6c757d;
}

/* --- Link Styles --- */
/* Default links (excluding special classes) */
a:link:not(.linkst):not(.btn-dynamic):not(.year) {
    color: lightblue;
    background-color: transparent;
    text-decoration: none;
}

a:hover:not(.linkst):not(.btn-dynamic):not(.year) {
    color: white;
    background-color: transparent;
}

/* Special link classes */
.linkst {
    color: rgb(21, 172, 231);
}

.linkst:hover {
    color: rgb(1, 108, 150);
}

.drop {
    color: lightblue;
    background-color: transparent;
    text-decoration: none;
}

.drop:hover {
    color: white;
    background-color: transparent;
}

#emaillink {
    color: black;
    text-decoration: none;
}

#emaillink:hover {
    color: blue;
}

/* --- Navbar Styles --- */
#navbar {
    background-color: #07204C;
    height: auto;
}

#Logo {
    width: 180px;
    height: auto;
    border: 0px;
}

.navbar-brand {
    font-size: 30px;
}

.navtext {
    color: lightblue;
}

.navtext:hover {
    color: white;
}

/* --- Footer Styles --- */
#footer {
    width: 100%;
    background-color: #07204C;
    font-family: 'Varela Round', sans-serif;
    font-size: 13px;
    color: lightblue;
}

#footer a, #footer a:link {
    color: lightblue;
    text-decoration: none;
}

#footer a:hover {
    color: white;
}

#social-media {
    width: 13px;
    height: 20px;
    border: 0px solid #07204c;
}

#social-media2 {
    width: 20px;
    height: 20px;
    border: 0px solid #07204c;
}

#social-media3 {
    width: 27px;
    height: 22px;
    border: 0px solid #07204c;
}

#footerlogo {
    width: 300px;
    height: auto;
    border: 0px;
}

#footerlogolink {
    text-decoration: none;
}

#footerlinks {
    font-size: 17px;
}

/* --- About Us Section --- */
.About-us {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 800px;
}

.About-us h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
}

.group-member-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 1px #DDD;
}

/* --- Carousel / Slideshow --- */
#imageCarousel .carousel-inner {
    height: 400px;
    background-color: rgb(157, 158, 160);
}

#imageCarousel .carousel-item {
    height: 400px;
    text-align: center;
}

#imageCarousel .carousel-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

#imageCarousel .carousel-caption {
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 12px;
    font-size: 20px;
    color: #f2f2f2;
}

#imageCarousel .carousel-indicators {
    margin-bottom: 0rem;
}

/* --- EXCITING HIRING BUTTON STYLES --- */
/* Added 'a.btn-dynamic' for higher specificity and !important to force color */
a.btn-dynamic,
.btn-dynamic {
    background-color: #0d6efd !important;
    color: white !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(13, 110, 253, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none !important; /* Ensures no underline */
}

/* The arrow starts hidden */
.btn-dynamic .icon-arrow {
    width: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    fill: none; /* Ensure SVG fill doesn't override stroke */
}

/* On Hover: Button gets darker, arrow appears */
a.btn-dynamic:hover,
.btn-dynamic:hover {
    background-color: #0b5ed7 !important; /* Darker blue on hover */
    padding-right: 20px; 
    transform: scale(1);
    color: white !important;
    box-shadow: 0 6px 12px rgba(13, 110, 253, 0.4);
}

.btn-dynamic:hover .icon-arrow {
    width: 20px;
    opacity: 1;
    transform: translateX(10px);
    margin-left: 5px;
}

/*

Animated button styles

*/

.btn-s {
  position: relative;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  /* Default background (can be overridden by .neon-pulse) */
  background: green; 
  border: none;
  cursor: pointer;
  overflow: visible; /* Changed to visible so the pulse isn't cut off */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth transition */
  min-width: 200px;
  z-index: 1;
  border-radius: 15px;
}

.neon-pulse {
  background: #ffffff;
  border: 5px solid rgb(0, 34, 255);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  /* overflow: visible is handled in .btn-s, but good to ensure */
  overflow: visible; 
}

/* --- NEW HOVER EFFECTS --- */
.neon-pulse:hover {
  background-color: rgb(0, 34, 255); /* Fill button with Blue */
  color: #ffffff; /* Change text to White */
  transform: translateY(-5px) scale(1.02); /* Lift up and grow slightly */
  box-shadow: 
    0 0 20px rgba(0, 34, 255, 0.8), /* Inner strong glow */
    0 0 40px rgba(0, 255, 255, 0.6); /* Outer ambient glow */
  border-color: rgb(0, 34, 255);
}

/* --- PULSE ANIMATION RINGS --- */
.neon-pulse::before,
.neon-pulse::after {
  content: "";
  position: absolute;
  inset: -8px; /* Moved further out so they don't overlap the border exactly */
  border: 2px solid rgb(75, 91, 215);
  border-radius: 20px; /* Match button radius + spacing */
  animation: pulseOut 2s ease-out infinite;
  opacity: 0;
  z-index: -1; /* Ensure rings are behind the button */
}

.neon-pulse::after {
  animation-delay: 1s;
}

/* Make the pulse faster and brighter on hover */
.neon-pulse:hover::before,
.neon-pulse:hover::after {
  animation-duration: 1s; /* Speed up */
  border-color: rgb(0, 255, 255); /* Change ring color to Cyan */
}

@keyframes pulseOut {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

    