@charset "utf-8";
/* custom styles */

.full-width-img {
  width: 100vw; /* 100% of viewport width */
  margin-left: calc(-50vw + 50%); /* Breaks out of container */
  max-width: none;
}
body {
  background-color: #000000;
}

.navbar-brand img {
  max-width: 120px; /* Display at original intended size */
  height: auto;
}
.nav-link {
	font-family: "Geologica", sans-serif;
	text-transform: uppercase;
	color: #FFFFFF;
}
.nav-link:hover{
	color: #777777;
	font-weight: bold;
	
}
.nav-link.current-page {
	color: #777777;
}

.navbar-nav {
  gap: 30px; 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.figma-link {
  color: #5aa896; /* Your teal color */
  text-decoration: none; /* Removes underline */
  font-weight: bold; /* Optional - makes it stand out */
}

.figma-link:hover {
  color: #1C7461; /* Darker on hover */
  text-decoration: none; /* Adds underline on hover */
}

.position-relative {
  position: relative;
}

.hero-section {
  background-image: url('images/testimage.jpg');
  background-size: cover; /* Makes image cover the whole area */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat;
  padding: 100px 0px; /* Adjust this to control section height */
	
  /* display: flex;
  //align-items: center; 
  //justify-content: center; 
  //margin-top: 0.5rem;
  //margin-bottom: 3rem; */
}

.image-text {
  /* position: absolute;
  //top: 50%; 
  //left: 50%; 
  //transform: translate(-50%, -50%); /* Perfect centering */
  text-align: center;
  color: #FFFFFF;
  font-family: "Geologica", sans-serif;
}

.image-text h1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Makes text readable */
}

.image-text p {
  font-size: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.btn-primary {
  background-color: #064739;
  border: none;
  padding: 15px 40px;
  font-family: "Geologica", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
}

.btn-primary:hover {
  background-color: #1C7461;
}

.btn-primary:active {
	background-color: #064739;
	
}

.contact-title {
  font-family: "Geologica", sans-serif;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  font-family: "Geologica", sans-serif;
}

.contact-form .form-label {
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-form .form-control {
  background-color: #1a1a1a;
  border: 1px solid #444444;
  color: #FFFFFF;
  padding: 12px;
}

.contact-form .form-control:focus {
  background-color: #1a1a1a;
  border-color: #064739;
  color: #FFFFFF;
  box-shadow: 0 0 0 0.2rem rgba(109, 185, 169, 0.25);
}

.contact-form .form-control::placeholder {
  color: #777777;
}

.contact-form .btn-primary {
  background-color: #064739;
  border: none;
  padding: 12px 40px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
}

.contact-form .btn-primary:hover {
  background-color: #1C7461;
}

#projectCarousel {
  max-width: 600px; /* Adjust size */
  margin: 0; /* Centers it */
}
.project-title {
	font-family: "Geologica", sans-serif;
	font-weight: 700;
	color: #FFFFFF;
}
.project-category {
	font-family: "Geologica", sans-serif;
	color: #919191;
}
.project-description {
	font-family: "Geologica", sans-serif;
	color: #FFFFFF;
	font-weight: 200;
}
.jumbocap{
	color: #FFF000;
	font-family: "Roboto Condensed";
	text-shadow: 1px 1px 6px #000000;
}

.cap_sub {
	color: #FFF000;
	font-family: "Roboto Condensed";
	text-shadow: 1px 1px 6px #000000;
}

.desat{
	filter:grayscale(0%);
	transition: .2s ease-in;
}
.desat:hover{
	filter:grayscale(100%);
}

.bi_clr {
	color: #ffffff;
	font-size: 20px;	
}
.bi_clr:hover{
	color:#777777;
}

.cust_card {
	font-family: "Roboto Condensed";
	text-transform: uppercase; 
	color: #FFFFFF;
	text-shadow: 1px 1px 6px #000000;
}
    /* Hover Blur Effect */


    .text {
	font-family: "Geologica", sans-serif;
	text-transform: uppercase;
    color: #6DB9A9;	
	font-size: 25px;
	font-weight: bold;
    }

	.subtext {
	display: block;
	font-family: "Geologica", sans-serif;
	text-transform: uppercase;
	color: #6DB9A9;
	font-size: 15px;
	margin-top: 5px;
	
	}

    .hover-blur a {
      display: block;
      position: relative;
      overflow: hidden;
    }
/*
    .hover-blur img {
      width: 100%;
      height: auto;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
    }
    .hover-blur:hover img {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -o-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2);
      -webkit-filter: grayscale(0.6) blur(1px);
      filter: grayscale(0.6) blur(1px);
    }
*/


.hover-blur img {
  width: 100%; /*Adjust this - try 70%, 75%, 80%, 90% */
  height: auto;
  margin: 0 auto; /* Centers the image */
  display: block; /* Needed for margin auto to work */
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hover-blur a {
	display: block; 
	justfiy-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	width: 90%; /* match image width */
	margin: 0 auto;
}
    .hover-blur a h2 {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      margin-top: 0px;
      margin-bottom: 0px;
      height: 100%;
      width: 100%;
      padding: 45% 20px;
      text-align: center;
      background-color: #064739;
      background-size: 3px 3px;
      -webkit-transition: all 0.25s linear;
      -moz-transition: all 0.5s linear;
      -o-transition: all 0.5s linear;
      -ms-transition: all 0.5s linear;
      transition: all 0.25s linear;
      -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
      filter: alpha(opacity=0);
      opacity: 0;
    }
    .hover-blur:hover a h2 {
      -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
      filter: alpha(opacity=100);
      opacity: 1;
    }
    .hover-blur .text-white {
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -o-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
      -webkit-transition: all 0.5s linear;
      -moz-transition: all 0.5s linear;
      -o-transition: all 0.5s linear;
      -ms-transition: all 0.5s linear;
      transition: all 0.5s linear;
      -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
      filter: alpha(opacity=0);
      opacity: 0;
    }
    .hover-blur:hover .text-white {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      -webkit-transition: all 0.5s linear;
      -moz-transition: all 0.5s linear;
      -o-transition: all 0.5s linear;
      -ms-transition: all 0.5s linear;
      transition: all 0.5s linear;
      -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=1)";
      filter: alpha(opacity=1);
      opacity: 1;
    }
	