.navbar-nav .nav-link {
    font-size: 24px; /* Adjust size as needed */
}

.shiny-card {

    background: linear-gradient(145deg, #a8c8c9, #d0ebeb);
    color: black;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.shiny-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(60deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
    opacity: 0.3;
    transform: translateY(-100%);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.shiny-card:hover::after {
    transform: translateY(0);
    opacity: 0.6;
}

.shiny-card i {
    z-index: 2;
    position: relative;
}

/* Navbar Gradient Background */
.bg-gradient {
    background: linear-gradient(90deg, #1f4037, #99f2c8);
    color: #6eb5b3;
}

/* Navbar Links */
.navbar-dark .nav-link {
    color: #6eb5b3;
    transition: color 0.3s;
}

.navbar-dark .nav-link:hover {
    color: #d4edda; /* Soft green hover effect */
}

/* Active Link Styling */
.navbar-dark .nav-link.active {
    color: #ffdfba;
    font-weight: bold;
    border-bottom: 2px solid #ffdfba;
}

/* Dropdown Menu Styling */
.navbar-dark .dropdown-menu {
    background-color: #1f4037;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-dark .dropdown-item {
    color: #6eb5b3;
}

.navbar-dark .dropdown-item:hover {
    background-color: #99f2c8;
    color: #1f4037;
}

/* Logo Styling */
.navbar-brand span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #6eb5b3;
}

/* Ensure navbar toggler (hamburger icon) is visible */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.7)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    /* Adding white color to the hamburger lines */
    background-color: #1f4037;
}

/* Navbar toggler (hamburger icon) color when active */
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* For better visibility when the menu is collapsed */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5); /* Light border */
}

.custom-btn {
    background-color: #6eb5b3;
    border-color: #6eb5b3;
    color: white; /* Ensures the text is visible against the background */
    padding: 10px 20px; /* Adjusts the padding for better spacing */
    font-size: 16px; /* Sets a default font size */
    border: 1px solid; /* Ensures there's a border */
    border-radius: 5px; /* Adds rounded corners */
    cursor: pointer; /* Changes the cursor to a pointer on hover */
    transition: background-color 0.3s, border-color 0.3s; /* Adds transition effects */
}

a:hover {
      color: #d1e0e0; /* A lighter shade for hover effect */
  }
.custom-btn:hover {
    background-color: #5a9d9b; /* Darkens the background on hover */
    border-color: #5a9d9b; /* Matches the border to the background on hover */
}

.custom-card-header {
    background-color: #6eb5b3; /* Custom background color */
    color: white; /* Text color */
}
