/* Offcanvas Fullscreen */
.offcanvas-fullscreen {
    width: 100% !important;
    max-width: none !important;
    background-color: black;
    height: 100%;
  }
  
  /* Offcanvas Nav-Link Styling */
  .offcanvas .nav-link {
    color: white !important;
    padding: 1rem 0;
    border-bottom: 1px solid #444;
  }
  
  .offcanvas .nav-link:hover {
    background-color: #222;
  }
  
  .offcanvas .nav-link img {
    width: 40px;
    height: 40px;
  }
  
  .offcanvas .nav-link div {
    display: flex;
    flex-direction: column;
  }
  
  .offcanvas .nav-link div div {
    font-size: 1rem;
  }
  
  .offcanvas .nav-link div small {
    font-size: 0.8rem;
    color: #bbb;
  }
  
  /* Hide Navbar Content on Small Screens */
  @media (max-width: 767.98px) {
    .navbar-collapse {
      display: none !important;
    }
  }
  
  .square-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  
/* Default dropdown width for desktop */
.dropdown-menu {
    width: 900px;
    background-color: black !important; /* Match navbar background */
    border: none; /* Remove border to match navbar style */
}

/* Adjust dropdown width for smaller screens */
@media (max-width: 767px) {
    .dropdown-menu {
        width: 100%; /* Make the dropdown fill the screen width */
        padding: 10px;
    }
}

/* Navbar and Dropdown Links */
.nav-link, .dropdown-item {
    color: white !important;
    margin-right: 15px;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    text-decoration: none; /* Optional: Remove underlines */
}

/* Hover Effect for Navbar and Dropdown Links */
.nav-link:hover, .dropdown-item:hover {
    color: var(--bs-primary) !important;
    background-color: transparent !important; /* No background change to match navbar */
}

/* Remove the active/focus background effect from dropdown items */
.dropdown-item:focus, .dropdown-item:active {
    background-color: transparent !important;
}

/* Styling for Buttons */
.btn-purple {
    background-color: #6366f1;
    color: white;
    border-color: #6366f1;
}

.btn-purple:hover {
    background-color: #4f4cd1; /* Darker shade on hover */
    color: white;
    border-color: #4f4cd1;
}

/* Styling for List Items */
.styled-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.styled-list li::before {
    content: "•";
    color: #f39c12;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Role Highlighting */
.current-role-highlight {
    background-color: #d03c50;
    color: white;
    padding: 5px 20px;
    border-radius: 3px;
    display: inline-block;
}

.previous-roles-highlight {
    padding: 5px 20px;
    border-radius: 3px;
    display: inline-block;
}

/* Footer Styling */
footer {
    background-color: black;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Flex container for the footer row */
.footer-row {
    display: flex;
    justify-content: space-between; /* Pushes first and last columns to edges */
    align-items: flex-start;
}

/* Column styling */
.footer-col {
    flex: 1; /* Equal width for all columns */
    margin: 0; /* Remove margins to allow equal spacing */
}

/* Footer heading styling */
.footer-heading {
    color: grey;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Footer text styling */
.footer-text {
    color: white;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer link styling */
.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--bs-primary) !important;
    background-color: transparent !important; /* No background change to match navbar */
}

/* Ensure logo is responsive */
footer img {
    max-width: 75px;
    height: auto;
}

