﻿| :root {
    --back: #ffffff;
    --font: #484d48;
    --navfont: #ffffff;
    --a: #0d9fc4;
    --navbar: #052742;
    --tablinks : #b8d4ee;
    --h :   #073d69;
    --cardheader : #ebf1f7;
  } 
  
  :root .dark-theme {
    --back: #080808;
    --font: #b4b1b1;
    --a: #9cccd8;
    --navbar: #000000;
    --tablinks : #011b33;
    --h : #cacfd3;
    --cardheader : #1f1f1f;
  } 
  
.carousel-caption h5 {
    font-size: 28px;
}

.carousel-caption p {
    font-size: 16px;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
    font-family: 'Public Sans', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.container {
    flex: 1;
    max-width: 1250px;
    margin: 0 auto;
}

.bg-primary {
    /*background-color: #002c41 !important;- Original */
    background-color: var(--navbar) !important; /*- Change the same as Nav bar*/
    /*background-color: rgba(255, 255, 255, 0.2);*/
}

.custom-title {
    color: var(--navbar) !important;
}

.custom-margin {
    margin-left: 3rem;
    margin-right: 3rem;
}

.notification-bar {
    background-color: #dff0ed;
    font-size: 0.9rem;
    color: #333;
}

.branding-bar {
    font-size: 0.85rem;
    background-color: #1A2A40;
    color: #555;
    border-bottom: 1px solid #dee2e6;
}

.main-header {
    background-color: white;
}

.header-icons a {
    color: #333;
    text-decoration: none;
}

    .header-icons a:hover {
        color: #0056b3;
    }

.navbar-nav.nav-link {
    color: #333;
    font-weight: 500;
}

    .navbar-nav.nav-link:hover {
        color: #0056b3;
    }

a {
    cursor: pointer;
}

.carousel-caption {
    position: absolute;
    left: 20%;
    top: 30%;
    transform: translateY(-20%);
    text-align: left;
    max-width: 30%;
    max-height: 30%;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 3px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(5, 39, 66, 1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    visibility: visible;
}

.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #f8f9fa;
}


.custom-button {
    background: linear-gradient(to right, #007bff, #4a2c43);
    color: #ffffff;
    padding: 5px 30px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-button-landing {
    background: linear-gradient(to right, #007bff, #4a2c43);
    color: #ffffff;
    padding: 5px 20px;
    font-size: 1rem;
    border: none;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .custom-button-landing:hover {
        background-color: #031d34;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.carousel-caption-right {
    left: auto;
    right: 20%;
    text-align: center;
    max-width: 40%;
    background-color: rgba(0, 0, 0, 0.5);
}



.blue-line-wrapper {
    position: relative;
    padding-left: 20px; 
}

    .blue-line-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 8px;
        height: 100%;
        background-color: #0056b3;
        z-index: 1; /* Ensure it's above other elements */
    }

@media only screen and (max-width: 768px) {
    For mobile phones:
    [class*="col-"] {
        width: 100%;
    }
}
