   body {
            font-family: 'Lato', sans-serif;
            color: #343a40; /* Dark grey */
        }
        .navbar {
  background-color: white; /* Transparent background */
  border: none; /* Remove border */
  transition: all 0.3s ease; /* Smooth transition */
  padding: 20px 0; /* Larger padding */
}


.navbar-brand {
  font-size: 1.5rem; /* Larger brand name */
  transition: font-size 0.3s ease; /* Smooth transition */
  color: #333; /* Dark color for brand */
}

.navbar.shrink .navbar-brand {
  font-size: 1rem; /* Smaller brand name on scroll */
  color: #000; /* Change color on scroll */
}

.navbar-nav {
  margin: 0; /* Reset margin */
}

.navbar-nav .nav-link {
  color: #0056b3 !important; /* Change link color to a different shade of blue */
  padding: 10px 20px; /* Increase spacing between links */
}

.navbar-nav .nav-link:hover {
  color: #28a745 !important; /* Change color on hover to green */
}

.navbar-toggler-icon {
  background-image: url("../assets/img/menu.svg"); /* You can set a custom icon if desired */
}


        
        .masthead {
            background-color: rgba(44, 62, 80, 0.9); /* Slightly transparent dark blue */
            padding-top: 120px;
            padding-bottom: 100px;
            color: #ecf0f1; /* Light grey */
        }
        .masthead h1, .masthead p {
            color: white; 
        }
        .page-section {
            padding: 100px 0;
        }
        .page-section h2 {
            color: #2c3e50; /* Dark blue */
        }
        .bg-primary {
            background-color: #2980b9 !important; /* Blue */
        }
        .portfolio-item img {
            border-radius: 10px;
        }
        footer {
            background-color: #2c3e50; /* Dark blue */
            color: #ecf0f1; /* Light grey */
            padding: 25px 0;
        }
        footer a {
            color: #f39c12; /* Yellow */
        }
        footer a:hover {
            color: #d35400; /* Dark orange */
        }
        .btn-primary {
            background-color: #f39c12; /* Yellow */
            border-color: #f39c12;
        }
        .btn-primary:hover {
            background-color: #e67e22; /* Darker yellow */
            border-color: #e67e22;
        }
        .bg-welcome {
    --bs-bg-opacity: 1; /* This can be used to control overlay opacity if needed */
    background-image: url('../assets/img/Hawk_Stone.jpg'); /* Path to your image */
    background-size: cover; /* Makes sure the image covers the whole area */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image */
    position: relative; /* Needed for overlay */
    height: auto; /* Ensure the div has a height to display the background image */
    width: auto; /* Optional: set width if needed */
  }
.team-10 {
  text-align: center;
  margin-bottom: 30px;
  border-radius: 5px;
  perspective: 1000px; /* Enable 3D perspective */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team-10 .team-img {
  overflow: hidden;
  width: 100%; /* Ensures the image container takes up full width */
  height: 200px; /* Set a fixed height for uniformity */
}

.team-10 .team-img img {
  width: 100%; /* Image takes up full width of its container */
  height: 100%; /* Image takes up full height of its container */
  object-fit: cover; /* Ensures the image covers the container while maintaining aspect ratio */
  border-radius: 10px; /* Rounded corners for images */
  transition: transform 0.3s ease-in-out;
}

.team-10 .team-content {
  width: 100%;
  height: 150px; /* Fixed height for uniform container size */
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.team-10:hover .team-content {
  transform: rotateY(180deg);
}

.team-10 .team-front,
.team-10 .team-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Hide the back side until the card is flipped */
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-direction: column;
}

.team-10 .team-front {
  background: #ecf0f1; /* Background color for the front */
}

.team-10 .team-back {
  background: #ecf0f1; /* Background color for the back */
  transform: rotateY(180deg); /* Initially flip the back side */
}

.team-10 .team-front h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.team-10 .team-front h3 {
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  color: #555;
}

.team-10 .team-back p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #333;
}


.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}
.snowflake {
    position: fixed;
    top: -2em;
    font-size: 1.5em;
    color: white;
    user-select: none;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}
