a{
    text-decoration: none;

}

li{
    list-style: none;
}

h1,h2,h3,h4{
    font-family: "Comfortaa", sans-serif;
}

p{
    font-family: "Comfortaa", sans-serif;
}

.menu-bar .row .col-lg-3 img{
    width: 100%;
}

.menu-bar .row .col-lg-3{
    width: 13%;
}

.col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.pbg-header-1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(15, 32, 39, 0.6)); */
}

.menu-bar {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.2);
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
    position: absolute;
    width: 100%;
    border: 1px solid #fff;
}

.menu-bar .row {
    align-items: center;
}

.menu-bar .col-lg-3 img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: cover;
}

.col-lg-9 {
    gap: 40px !important; /* Increased gap for better spacing */
    padding-right: 30px;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(15, 32, 39, 0.6)); */
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.nav-item a:hover {
    color: #00aced !important;
    transform: translateY(-2px);
}


.pbg-banner{
    /* min-height: 900px; */
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(10, 25, 70, 0.3), rgba(10, 25, 70, 0.5)),url(../images/pbg-banner.jpg) no-repeat center center/cover;
    padding-block: 146px !important;
}

.pbg-banner h1{
    font-size: 45px;
}

.glassmorphic {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.glassmorphic input,
.glassmorphic select,
.glassmorphic button {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.glassmorphic input::placeholder,
.glassmorphic input[type="date"]::-webkit-calendar-picker-indicator,
.glassmorphic input[type="time"]::-webkit-calendar-picker-indicator {
    color: rgba(255, 255, 255, 0.7);
}

.glassmorphic label {
    color: #fff;
}

.nav-tabs .nav-link {
    color: #0d6efd; /* Bootstrap primary blue */
    background-color: white;
    transition: 0.3s;
}

.nav-tabs .nav-link:hover {
    background-color: #fff !important;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd #0d6efd white;
}

.btn-primary{
    border: none;
}

/* ============== pbg-card================= */
.pbg-card {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Deep blue gradient */
    padding: 60px 0;
    color: #fff;
}

/* Glassmorphic Card Style */
.pbg-glass-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pbg-glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.pbg-glass-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, #1e3c72, #2a5298, #1e3c72);
    opacity: 0.1;
    z-index: 0;
    transform: rotate(25deg);
}

.card-title,
.card-text {
    position: relative;
    z-index: 1;
}

/* =============== quote =========== */
.pbg-quote-section {
    background-color: #0d1b2a; /* Deep blue background */
    padding: 4rem 1rem;
}

.pbg-quote {
    max-width: 800px;
    margin: auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05); /* Subtle glassmorphic touch */
    border-left: 5px solid #00b4d8; /* Accent color */
    border-radius: 10px;
    font-style: italic;
    color: #f8f9fa;
}

/* ============ budgeting ========= */
.budgeting{
    background-attachment: fixed;
}

.budgeting .col-12{
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.budgeting .col-12:hover{
    transform: translateY(-5px);
}

/* ============ services ======= */
.services{
    background-image: url('../images/services-back.webp'); 
    background-size: cover; 
    background-position: center center; 
    background-attachment: fixed;
    background-repeat: no-repeat;
}

