*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Transparent navbar */
.navbar {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}


.navbar-brand img{
    width: 220px;
}

.navbar-brand, .nav-link {
    color: white !important;
}

.nav-item.active{
    border-bottom: 1px solid #fff;
}

.btn-danger {
    background-color: #FF0000;
}

.btn-outline-primary {
    border-color: #0D5267;
    color: #0D5267;
}

.btn{
    box-shadow: none !important;
}


.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #0d5267;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgb(13 82 103 / 20%);
}

.btn-primary{
    background-color: #0D5267 !important;
    border-color: #0D5267 !important;
}


/* Hero section video styling */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay text */
.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Footer style */
footer {
    background-color: #0D5267;
    color: white;
    position: relative;
    z-index: 1;
}

.row-box{
    color: #fff;
    background: #0d5267;
    border-radius: 5px;
    padding: 1.5rem;
}

.row-box p{
    margin-bottom: 0;
}

.text-red{
    color: #FF0000;
}

.text-navy{
    color: #0D5267;
}