﻿/* Custom background color */
.my-custom-navbar {
    background-color: #03352c !important; /* Use !important if needed to override defaults */
}

/* Optional: Custom link colors */
    .my-custom-navbar .nav-link {
        color: #fff3c2 !important;
    }

/* Optional: Hover color */
.my-custom-navbar .nav-link:hover {
    color: #f58d5c !important;
}

.navbar {
    min-height: 80px;
}

.navbar-brand, .nav-link {
    padding-top: 20px;
    padding-bottom: 20px;
}
.navbar-nav .nav-link.active {
    color: #f58d5c !important; /* Replace with your desired color */
}
.my-custom-footer {
    background-color: #03352c !important; /* Use !important if needed to override defaults */
    padding-top: 20px;
}
.btn-custom1 {
    background: linear-gradient(to right, #f58d5c, #e7c7bb);
    border: none;
    color: white;
}
.btn-custom2 {
    background: linear-gradient(to right, #708670, #add4cc);
    border: none;
    color: white;
}
.btn-custom1:hover {
    color: #000000; /* text color */
}
.btn-custom2:hover {
    color: #000000; /* text color */
}