.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 1500px !important;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-section {
    margin-top: -35em;
    z-index: 1;
}

/* ====== New Site Css ====== */

/* Property Management Website CSS - Combined Styles */

/* ====== ROOT VARIABLES & FONT SETUP ====== */
:root {
    --primary-color: #005da9 !important;
    --secondary-color: #100a55;
    --accent-color: #69c200;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .heading-font {
    font-family: 'DM Sans', sans-serif !important;
}

.container {
    max-width: 1200px;
}

/* ====== BUTTON STYLES ====== */
.btn {
    font-weight: 700 !important;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* ====== NAVBAR STYLES ====== */
.navbar {
    background: #fff;
    border-radius: 50px;
    padding: 20px 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1300px;
}

.navbar-brand img {
    max-height: 45px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #5c4eff;
}

.navbar .btn-outline-primary {
    border: 1px solid #5c4eff;
    color: #5c4eff;
    border-radius: 6px;
    font-weight: 600;
    padding: 5px 25px;
    font-size: 14px;
    text-transform: uppercase;
}

.navbar .btn-outline-primary:hover {
    background-color: #5c4eff;
    color: #fff;
}

.navbar .btn-primary {
    background-color: #5c4eff;
    border: 1px solid #5c4eff;
    border-radius: 6px;
    font-weight: 600;
    padding: 5px 25px;
    font-size: 14px;
    text-transform: uppercase;
}

.navbar .btn-primary:hover {
    background-color: #4437e6;
    border-color: #4437e6;
}

/* ====== HERO SECTION ====== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    color: white;
    display: flex;
    align-items: end;
    padding-bottom: 80px;
    justify-content: end;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.hero-content {
    z-index: 2;
    text-align: left;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.text-uppercase {
    font-size: 24px;
    font-weight: 500 !important;
    letter-spacing: 3.5px;
    color: #9dded4;
}

/* ====== CLIENT LOGOS SLIDER ====== */
.slider {
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 20s linear infinite;
}

.slide-track img {
    width: 10%;
    margin: 0 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.slide-track img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====== FEATURE CARDS ====== */
.feature-card {
    background: #f8f9fa;
    transition: all 0.3s ease;
    border-radius: 0.75rem;
}

.feature-card:hover {
    background: #100A55 !important;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.feature-card:hover i,
.feature-card:hover h5,
.feature-card:hover p {
    color: #fff !important;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* ====== COUNTER SECTION ====== */
.counter-section {
    background-color: #F5F4FB;
    color: rgb(0, 0, 0);
    padding: 80px 0;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ====== PROPERTY CARDS ====== */
.property-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    z-index: 10;
}

.property-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.property-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.property-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c757d;
}

/* ====== TESTIMONIALS ====== */
.testimonial-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: color 0.4s ease-in-out;
    z-index: 1;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 1px;
    box-shadow: 1px 0px 2px 0px #00000000;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #140E58;
    transition: bottom 0.4s ease-in-out;
    z-index: -1;
}

.testimonial-card:hover::before {
    bottom: 0;
}

.testimonial-card:hover {
    color: #fff;
}

.testimonial-card:hover .testimonial-text,
.testimonial-card:hover .testimonial-role,
.testimonial-card:hover .testimonial-name {
    color: #fff !important;
}

.testimonial-text {
    font-size: 14px;
    line-height: 24px;
    transition: color 0.3s ease;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* ====== NEWSLETTER SECTION ====== */
/* Newsletter specific styles included in main CSS above */

/* ====== FOOTER ====== */
footer {
    background-color: #f8f9fa;
    padding: 60px 0 20px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
}

.client-logos img {
    max-height: 50px;
    margin: 0 20px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.client-logos img:hover {
    filter: grayscale(0);
}

/* ====== HIDDEN ELEMENTS ====== */
.row.g-3 {
    display: none;
}

/* ====== RESPONSIVE ADJUSTMENTS ====== */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .property-meta {
        flex-direction: column;
        gap: 10px;
    }
}
/* New Site Css */

/* Make navbar transparent over header image */
.custom-nav {
    position: fixed;
    top: 20px;
    width: 100%;
    z-index: 1000;
    background: transparent !important;
}

/* White rounded container */
.nav-container {
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Nav links style */
.nav-link {
    color: #3a3a3a !important;
    font-size: 15px;
}

.nav-link.active {
    color: #6b42ff !important;  /* purple highlight like your design */
}

.navbar-brand img {
    height: 55px;
    object-fit: contain;
}

/* Header background */
.header {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                      url("https://initialmockdesign.site/pmis/wp-content/uploads/2025/11/Parkview.jpg");
    background-position: center;
    background-size: cover;
    height: 35vw;
}


/* PAGE HEADING IN CENTER OF HEADER */
.topheader-heading {
 
    text-align: center;
    padding-top:20% ;
}

.topheader-heading h2 {
    font-family: "DM Sans", Sans-serif;
    font-size: 70px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

/* Main section spacing */
.history-section {
    padding: 60px 0 80px;
    background: #fff;
}

/* Container width similar to Elementor site */
.history-section .container {
    max-width: 1200px;
    margin: auto;
}

/* Blue section heading */
.history-title {
    font-size: 48px;
    font-weight: 700;
    color: #184bcc;   /* same blue tone as screenshot */
    margin-bottom: 25px;
}

/* Paragraph styling */
.history-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 22px;
}

.commitment-section {
  padding: 0px 0px;
  background-color: #ffffff;
  max-width: 1200px;
  margin: auto;
}

.commitment-title {
  font-size: 48px;
  font-weight: 700;
  color: #0047ba; /* Blue like screenshot */
  margin-bottom: 30px;
}

.commitment-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #222;
}

.commitment-content strong {
  font-size: 22px;
  color: #000;
}


.testimonial-section {
    position: relative;
    background-color: #f4f2ff;
    padding: 100px 60px;
    font-family: "Poppins", sans-serif;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/images/Line.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.25;       /* faint like real design */
    pointer-events: none;
}



/* Header */
.testimonial-header {

    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.small-title {
    color: #6c63ff;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1f1f38;
    line-height: 1.2;
}

.right {
    max-width: 420px;
}

.right p {
    font-size: 17px;
    line-height: 1.7;
}

.view-btn {
    background: #6c63ff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
}

/* Slider Cards */
.swiper-slide.card {
    padding: 35px;
    border-radius: 18px;
    position: relative;
    min-height: 250px;
    transition: 0.35s ease;
    cursor: pointer;
}

/* Default Cards */
.card.white {
    background: #ffffff;
    color: #333;
}
.card.dark {
    background: #0d0b66;
    color: #fff;
}

/* Hover effect – invert colors */
.card.white:hover {
    background: #0d0b66;
    color: #fff;
}

.card.dark:hover {
    background: #ffffff;
    color: #333;
}

.card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.user-info h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.user-info span {
    font-size: 13px;
    color: #666;
}

.quote {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 45px;
    opacity: 0.4;
    color: #6c63ff;
}

/* Fix hover text and quote color swap */
.card.dark:hover .quote {
    color: #6c63ff;
}
.card.white:hover .quote {
    color: #fff;
}

/* Responsive */
@media(max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
        text-align: left;
    }
    h1 {
        font-size: 38px;
    }
}







.footer-section {
 
padding: 80px 0;
position: relative;
background: #5E51FD;
color: white;
}
.loop-line {
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0.4;
}
.footer-logo img {
height: 80px;
}
.contact-info p {
margin: 0;
line-height: 1.6;
}
.social-icons a {
width: 45px;
height: 45px;
border-radius: 50%;
border: 2px solid #fff;
display: flex;
align-items: center;
justify-content: center;
margin-right: 10px;
text-decoration: none;
color: #fff;
font-size: 20px;
}
.copyright {
text-align: center;
margin-top: 40px;
opacity: 0.8;
}


.listing-card {
background: #fff;
border-radius: 12px;
padding: 15px;
margin-bottom: 20px;
border: 1px solid #eee;
}


.listing-card img {
width: 100%;
height: 160px;
object-fit: cover;
border-radius: 10px;
}


.tag {
position: absolute;
top: 10px;
left: 10px;
background: #4cd964;
padding: 5px 12px;
border-radius: 8px;
font-size: 12px;
color: #fff;
}


.price {
font-size: 22px;
font-weight: 700;
color: #000;
}


.fav-btn {
border: 1px solid #ccc;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}


.filters input, .filters select {
border-radius: 8px;
border: 1px solid #ddd;
padding: 8px 12px;
}


.search-btn {
background: #4a56e2;
color: #fff;
border-radius: 8px;
padding: 8px 20px;
border: none;
}




.map-box iframe {
width: 100%;
height: 500px;
border: 0;
border-radius: 10px;
}


.gallery-box {
height: 500px;
overflow-y: scroll;
background: #fff;
border-radius: 10px;
padding: 20px;
margin-bottom: 30px;
}


.gallery-item img {
width: 100%;
height: 180px;
border-radius: 10px;
object-fit: cover;
}


.gallery-item button {
background: #5A4FF2;
border: none;
padding: 8px 20px;
border-radius: 8px;
color: #fff;
margin-bottom: 10px;
    margin-top: 15px;
}






.info-card {
background: #fff;
border-radius: 12px;
padding: 30px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: transform 0.2s ease;
}
.info-card:hover {
transform: translateY(-5px);
}
.btn-view {
background: #5e3df6;
color: white;
padding: 8px 25px;
border-radius: 8px;
}
.btn-view:hover {
background: #4a2fd1;
color: white;
}






.company-title {
font-size: 2.2rem;
font-weight: 700;
color: #001f4d;
}
.info-text {
font-size: 15px;
line-height: 1.6;
}


ul#menu-main-menu {
    display: flex !important;
    gap: 20px !important;
    list-style: none !important;
    text-decoration: none !important;
}
a.link {
    text-decoration: none !important;
}


a.logo.logo--image.link img {
    width: 80% !important;
    padding: 10px 0px;
}
footer .bkg-light a {
    color: #ffffff !important;
}
.bi::before, [class*=" bi-"]::before, [class^=bi-]::before {   
    color: #ffffff !important;

}
div#navMenu ul.navbar-nav.mx-auto.gap-4 li.current-menu-item a {
    color: #6b42ff !important;
}
a.link:hover {
    border-bottom: none !important;
}

/* styles.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #5c4eff;
    --secondary-color: #100a55;
    --accent-color: #69c200;
    overflow-x: hidden;
}



.container {
    max-width: 1280px;
}

.btn {
    font-weight: 700 !important;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}



.text-uppercase {
    font-size: 24px;
    font-weight: 500 !important;
    letter-spacing: 3.5px;
    color: #9dded4;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 88vh;
    min-height: 600px;
    color: white;
    display: flex;
    align-items: end;
    padding-bottom: 160px;
    justify-content: end;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

/* Hero Content */
.hero-content {
    z-index: 2;
    text-align: left;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Client Logos Slider */
.slider {
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 20s linear infinite;
}

.slide-track img {
    width: 10%;
    margin: 0 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.slide-track img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Why Choose Us Section */
.feature-card {
    background: #f8f9fa;
    transition: all 0.3s ease;
    border-radius: 0.75rem;
}

.feature-card:hover {
    background: #100A55 !important;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.feature-card:hover i,
.feature-card:hover h5,
.feature-card:hover p {
    color: #fff !important;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Stats Section */
.counter-section {
    background-color: #F5F4FB;
    color: rgb(0, 0, 0);
    padding: 80px 0;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Property Cards */
.property-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    z-index: 10;
}

.property-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.property-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.property-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c757d;
}

/* Testimonials */
.testimonial-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: color 0.4s ease-in-out;
    z-index: 1;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 1px;
    box-shadow: 1px 0px 2px 0px #00000000;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #140E58;
    transition: bottom 0.4s ease-in-out;
    z-index: -1;
}

.testimonial-card:hover::before {
    bottom: 0;
}

.testimonial-card:hover {
    color: #fff;
}

.testimonial-card:hover .testimonial-text,
.testimonial-card:hover .testimonial-role,
.testimonial-card:hover .testimonial-name {
    color: #fff !important;
}

.testimonial-text {
    font-size: 14px;
    line-height: 24px;
    transition: color 0.3s ease;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #100A55;
    border-radius: 0px;
    padding-top: 75px !important;
    padding-bottom: 80px !important;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .property-meta {
        flex-direction: column;
        gap: 10px;
    }

}

/* Hidden elements */
.row.g-3 {
    display: none;
}
p.wp-para {
    display: none;
}
div#bf-revz-widget-1234568071 {
    display: none;
}

h6.text-uppercase.mb-3, h1, p {
    color: white !important;
}

footer .container {
    position: relative;
    z-index: 9999 !important;
}
footer.footer-section.container-fluid.position-relative {
    height: 27em !important;
}
ul#menu-main-menu a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-size: 14px;
}

ul#menu-main-menu {
    margin: 0;
}
.navbar {
    background: #fff;
    border-radius: 0 !important;
    padding: 20px 30px;
    /* box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1); */
    margin: 0 !important;
    max-width: initial;
}
ul#menu-portal-buttons {
    display: flex;
    gap: 20px !important;
    list-style: none;
    justify-content: flex-end;

}
ul#menu-portal-buttons a {
    background-color: #5c4eff;
    border: 1px solid #5c4eff;
    border-radius: 8px;
    font-weight: 400;
    padding: 10px 20px;
    display:inline-block;
    color:white;
    text-decoration:none;
    font-size:12px;
	text-transform: uppercase;
}
/* Base style */
  .feature-card {
    background: #f8f9fa;
    transition: all 0.3s ease;
    border-radius: 0.75rem;
  }

  /* Hover effect */
  .feature-card:hover {
    background: #100A55 !important;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }

  .feature-card:hover i,
  .feature-card:hover h5,
  .feature-card:hover p {
    color: #fff !important;
  }
  .hero-section {
    margin-top: 0;
    z-index: 1;
}
.counter-section {
    background-color: #F5F4FB;
    color: rgb(0, 0, 0);
    padding: 80px 0;
}
.stats .row.align-items-center * {
    color: black !important;
}



.footer-section {
    background: #005daa;
}
.navbar .btn-primary {
    background-color: #005da9;
    border: 1px solid #005da9;
}
.navbar .btn-outline-primary {
    border: 1px solid #005da9;
    color: #005da9;
    
}
.navbar .btn-outline-primary:hover {
    background-color: #005da9;
    color: #fff;
}
.navbar .btn-primary:hover {
    background-color: #005da900;
    border-color: #005da9;
    color: #005da9;
}
ul#menu-portal-buttons a {
    background-color: #005da9;
    border: 1px solid #005da9;
   
}

.main p {
    color: black !important;
}

.main {
    padding: 80px 0px;
}

section.history-section {
    padding: 0;
}

h1.commitment-title {color: black !important;}


.header {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),                      url("https://initialmockdesign.site/wp/wp-content/uploads/2025/12/Parkview.jpg");
    height: 25vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topheader-heading {
    text-align: center;
    padding-top: 0;
}
.history-title {
    color: #005da9;
   
}
.btn-view {
    background: #005da9;
    color: white;
    padding: 8px 25px;
    border-radius: 8px;
}
footer.footer-section.container-fluid.position-relative {
    height: 500 !important;
}