:root {
    --primary-color: #e0e0e0;
    --secondary-color: #03045e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
  }

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.bg-light-custom {
    background-color: var(--primary-color);
}

.bg-dark-custom {
    background-color: var(--secondary-color);
}

.text-color-dark {
    color: var(--secondary-color);
}

.text-color-light {
    color: var(--primary-color);
}

.navbar-collapse .nav-link {
    color: var(--primary-color);;
}

/* Navbar brand and link colors */
.navbar-brand,
.navbar.bg-dark-custom .nav-link {
    color: #e0e0e0; /* Custom link color */
}

/* Hover effect for navbar brand and links */
.navbar-brand:hover,
.navbar.bg-dark-custom .nav-link:hover {
    color: #ffffff; /* Change to white on hover */
}

/* Custom active state for navbar brand and links */
.navbar-brand:active,
.navbar-brand.active,
.navbar.bg-dark-custom .nav-link:active,
.navbar.bg-dark-custom .nav-link.active,
.navbar.bg-dark-custom .nav-link:focus,
.navbar-brand:focus {
    color: var(--primary-color); /* Ensure the color remains the same */
    background-color: transparent; /* Remove the default black background */
    outline: none; /* Remove the focus outline */
    box-shadow: none; /* Remove any focus shadow */
}

/* Custom styles for navbar toggle button */
.navbar-toggler {
    border-color: #6edff6; /* Custom border color */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%236edff6' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    /* Custom color for the "hamburger" icon */
}

/* footer */
.footer {
    padding: 20px 0;
}

.footer a {
  color: var(--primary-color); /* Primary color for links */
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff; /* Change link color to white on hover */
}

.contact-info {
    display: flex;
    gap: 20px; /* Adjusts the space between email and phone spans */
}

.contact-info span {
    display: flex;
    align-items: center;
}

.contact-info a {
    margin-left: 10px;
}

.fs-7 {
    font-size: 0.75rem; /* or any size smaller than fs-6 */
}


.custom-hr {
    border-top: 3px solid var(--secondary-color);
    width: 75%; 
    margin: 2rem auto; /* Center it horizontally with margin on top and bottom */
    margin-top: 0;
}

/* Add shadow to all form controls */
.form-control {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: box-shadow 0.3s ease; /* Smooth transition for shadow on focus */
  }
  
  /* Stronger shadow effect on focus */
  .form-control:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    outline: none; /* Removes default focus outline */
  }
  
/* Apply shadow to buttons */
button.btn {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

button.btn:focus, button.btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Apply shadow to text */
h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

p,
label {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); 
}
