*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Mulish, sans-serif;
}
/* variables */
:root {
    --primary: ;
    --secondary: #212529;
    --accent: #0dcaf0;
    --button: linear-gradient(to left,#009cea,#0dcaf0,#009cea)
}
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar img {
    width: 60px;
}

.header {
    background-color: #00022d;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    color: #fff;
    z-index: 1029;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}
.about {
    background: url(assets/img/dnb.png);
    background-size: cover;
}
.about .content {
    background-color: 
color-mix(in srgb, #009cea, transparent 95%);
    padding: 40px;
}
.services {
    background: url(assets/img/dnb.png);
    background-size: cover;
}

.card {
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
}
.ard {
    background-color: #e5f3fd;
    transition: 0.6s ease;
    background-size: 200%;
}
.ard:hover {
    background-position: right;
    transform: scale(.9);
}
.arc {
    background-color: #f5fbff;
    transition: 0.6s ease;
    background-size: 200%;
}
.arc:hover {
    background-position: right;
    transform: scale(.9);
}
.pd {
    position: relative;
    border-radius: 20px;
    overflow: hidden; /* Ensures the background doesn't spill outside rounded corners */
}
.pd::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(assets/img/blur.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.8; /* Adjust this value (0 to 1) to control transparency */
    z-index: 0;
}
.pd .card-body {
    position: relative;
    z-index: 1; /* Makes sure your content is above the background */
}

.rd {
    border-radius: 20px;
    background-color: 
color-mix(in srgb, white, transparent 95%);
    transition: background-color 0.3s ease;
}

.rd:hover {
    background-color: rgba(0, 123, 255, 0.2); /* light blue with some transparency */
}



/* form */
.form {
    background: url(assets/img/dnb.png);
    background-size: cover;
}
.container-frm{
    background: var(--accent);
}

.faqs {
    background: url(assets/img/dnb.png);
    background-size: cover;
}

.faqs .accordion-button {
    background-color: #00022d; /* Bootstrap's primary blue */
    color: white; /* Optional: makes text readable on blue */
}

.faqs .accordion-button:not(.collapsed) {
    background-color: #00022d; /* Slightly darker when active */
    color: white;
}

.faqs .accordion-body {
    background-color: #00022d; /* Light blue for contrast */
    color: white; /* Optional: dark text for readability */
}
/* footer */
.container-fluid{
    background: url(assets/img/dnb.png);
    background-size: cover;
}
.container-fluid h3{
    font-weight: bold;
    background: linear-gradient(to right,#fdfdfd,#ebedee 70%);
    background: linear-gradient(90deg,#fc00ff,#00dbde);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn1{
    transition: 0.6s ease;
    background-size: 200%;
    background-image: var(--button);
    cursor: pointer;
    border: none;
}
.btn1:hover{
    background-position: right;
    transform: scale(.9);
    color: white;
}